:root {
  --bg: #fff6fb;
  --surface: #ffffff;
  --text: #2d1238;
  --muted: #6b4f73;
  --brand: #f03895;
  --brand-strong: #6d28d9;
  --accent: #c026d3;
  --line: #f3d5ea;
  --success: #0f9f6b;
  --danger: #dc2626;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(100, 35, 108, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  background: linear-gradient(135deg, #ef3f97 0%, #7a35d6 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 16px rgba(91, 32, 108, 0.32);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav a {
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(120deg, #ef3f97, #7a35d6);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(120deg, #dd2f87, #6b28c5);
  text-decoration: none;
}

.btn-secondary {
  background: #fff0f8;
  color: var(--brand-strong);
  border: 1px solid #f2c3e3;
}

.btn-secondary:hover {
  background: #ffe2f2;
  text-decoration: none;
}

.btn-dark {
  background: #1f2937;
  color: #fff;
}

.btn-dark:hover {
  background: #111827;
  text-decoration: none;
}

.hero {
  padding: 64px 0 40px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.hero h1 {
  margin: 0 0 14px;
  line-height: 1.25;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 760px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section {
  padding: 24px 0 44px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
}

.section p.section-intro {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.list li + li {
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #ffe8f6;
  color: var(--brand-strong);
  border: 1px solid #f5c9e6;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.muted {
  color: var(--muted);
}

form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #e5bfd8;
  border-radius: 10px;
  font: inherit;
  padding: 10px 12px;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.status {
  margin-top: 10px;
  font-size: 0.9rem;
}

.status.ok {
  color: var(--success);
}

.status.err {
  color: var(--danger);
}

.map-frame {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 12px;
}

.footer {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  background: #fff0f8;
}

.footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e6edf0;
  font-size: 0.93rem;
}

th {
  background: #fff1f9;
}

.highlight {
  border-left: 4px solid var(--accent);
  padding: 12px 14px;
  background: #fff4fb;
  border-radius: 8px;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .card,
  form {
    padding: 16px;
  }
}
