/* ─── Переменные ──────────────────────────────────────────────────────────── */
:root {
  --navy:      #1a2744;
  --navy-mid:  #253356;
  --gold:      #8b6914;
  --gold-lt:   #c9a84c;
  --cream:     #faf8f5;
  --white:     #ffffff;
  --border:    #e5ddd5;
  --muted:     #6b7280;
  --soft:      #f0ece6;
  --text:      #1a2744;
  --text-sec:  #4b5563;

  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --r:       4px;
  --shadow:  0 2px 12px rgba(26,39,68,.08);
  --shadow-lg: 0 8px 32px rgba(26,39,68,.12);

  --max-w: 1080px;
}

/* ─── Сброс и базовые стили ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ─── Утилиты ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 40px;
  text-align: center;
}

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

/* ─── Кнопки ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, transform .1s, opacity .15s;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-mid); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover { background: var(--soft); }

.btn-lg  { padding: 14px 32px; font-size: 16px; }
.btn-xl  { padding: 16px 40px; font-size: 17px; width: 100%; max-width: 360px; }

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo-mark.small { width: 28px; height: 28px; font-size: 10px; }

.logo-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-size: 14px;
  color: var(--text-sec);
  text-decoration: none;
  transition: color .15s;
}
.nav a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--r);
  font-weight: 500;
}
.nav-cta:hover { background: var(--navy-mid) !important; }

/* ─── Герой ──────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-facts {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-facts li {
  font-size: 15px;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-facts li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-lt);
  flex-shrink: 0;
}

.fact-num {
  font-weight: 600;
  color: var(--navy);
}

/* Визуальный плейсхолдер карты */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-preview-placeholder {
  position: relative;
  width: 280px;
  height: 280px;
}

.cp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,39,68,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cp-ring-1 { width: 100%; height: 100%; border-color: rgba(26,39,68,0.22); }
.cp-ring-2 { width: 66%; height: 66%; border-color: rgba(26,39,68,0.14); }

.cp-cross::before, .cp-cross::after {
  content: '';
  position: absolute;
  background: rgba(26,39,68,0.1);
  top: 50%; left: 50%;
}
.cp-cross::before { width: 100%; height: 1px; transform: translate(-50%, -50%); }
.cp-cross::after  { width: 1px; height: 100%; transform: translate(-50%, -50%); }

.cp-label {
  position: absolute;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  background: var(--cream);
  padding: 2px 8px 2px 6px;
  border-radius: 2px;
  border: 1px solid rgba(26,39,68,0.15);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cp-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: cp-pulse 2.4s ease-in-out infinite;
}
.cp-label-1::before { animation-delay: 0s; }
.cp-label-2::before { animation-delay: 0.8s; }
.cp-label-3::before { animation-delay: 1.6s; }

@keyframes cp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.5); }
}

.cp-label-1 { top: 10%;  left: 55%; }
.cp-label-2 { top: 40%;  left: 75%; }
.cp-label-3 { top: 50%;  left: 2%; transform: translateY(-50%); }

/* ─── Как это работает ───────────────────────────────────────────────────── */
.how-it-works {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ─── Что внутри ─────────────────────────────────────────────────────────── */
.whats-inside {
  padding: 72px 0;
  background: var(--cream);
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.inside-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.inside-icon {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--gold);
}

.inside-item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.inside-item p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ─── Форма ──────────────────────────────────────────────────────────────── */
.order-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}

.form-sub {
  text-align: center;
  color: var(--text-sec);
  margin-bottom: 40px;
}

.natal-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.field-hint,
.field-optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px;
}

.field-required {
  color: var(--gold);
  margin-left: 2px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="date"],
.field input[type="time"] {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  width: 100%;
}

.field input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,.08);
}

.field input::placeholder { color: var(--muted); }

.gender-row {
  display: flex;
  gap: 12px;
}

.gender-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sec);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  user-select: none;
}

.gender-option:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.gender-option:has(input:checked) {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(26, 35, 80, 0.05);
}

.gender-option input[type="radio"] {
  display: none;
}

.time-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.time-row input[type="time"] { flex: 1; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-sec);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--navy);
}

.field-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.field-error {
  font-size: 12px;
  color: #dc2626;
}
.field-error:empty { display: none; }

/* Автодополнение городов */
.city-wrap { position: relative; }

.city-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: var(--r);
  list-style: none;
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: none;
}

.city-suggestions.open { display: block; }

.city-suggestions li {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background .1s;
}

.city-suggestions li:hover,
.city-suggestions li.active {
  background: var(--soft);
}

/* Превью карты */
.chart-preview {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
}

.preview-header {
  margin-bottom: 16px;
}

.preview-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.preview-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
}

.preview-item-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.preview-item-value {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
}

.preview-item-sub {
  font-size: 12px;
  color: var(--text-sec);
  margin-top: 2px;
}

/* Кнопка сабмита */
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.submit-wrap {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}


.form-micro {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.01em;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sec);
  cursor: pointer;
  align-self: flex-start;
}
.consent-label input[type="checkbox"] {
  margin-top: 2px;
}
.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-label a {
  color: var(--gold);
  text-decoration: underline;
}

/* ─── Блок доверия ───────────────────────────────────────────────────────── */
.trust-section {
  padding: 64px 0;
  background: var(--soft);
  border-top: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  color: var(--text-sec);
  font-size: 15px;
  line-height: 1.6;
}

.trust-icon {
  font-size: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--border);
}

/* ─── Повторный заказ ───────────────────────────────────────────────────── */
.repeat-box {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
}

.repeat-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.repeat-text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.repeat-text:last-child {
  margin-bottom: 0;
}

/* ─── Страница оплаты ────────────────────────────────────────────────────── */
.checkout-section {
  padding: 64px 0 80px;
}

.checkout-wrapper {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.checkout-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child { border-bottom: none; }

.summary-label { font-size: 13px; color: var(--muted); }
.summary-value { font-size: 14px; font-weight: 500; text-align: right; }

.summary-divider { height: 1px; background: var(--border); margin: 8px 0; }

.summary-total {
  padding-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.price-tag {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
}

.checkout-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
}

.checkout-pay {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.pay-header h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
}

.pay-badges { display: flex; gap: 6px; }

.badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-sec);
}

.pay-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  color: var(--text-sec);
  font-size: 14px;
}

.pay-security,
.pay-refund {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Страница результата ────────────────────────────────────────────────── */
.result-section {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.result-wrapper {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 8px;
}

.result-icon--success { background: #d1fae5; color: #059669; font-size: 28px; }
.result-icon--wait    { background: var(--soft); color: var(--navy); }
.result-icon--error   { background: #fee2e2; color: #dc2626; }

.result-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--navy);
}

.result-sub {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
}

.result-email-note {
  font-size: 13px;
  color: var(--muted);
}

.result-details {
  width: 100%;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }

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

.result-expiry {
  font-size: 12px;
  color: var(--muted);
}

.result-note { font-size: 14px; color: var(--text-sec); }

/* ─── Страницы О нас / FAQ ────────────────────────────────────────────────── */
.page-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.page-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 44px);
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}

.about-content {
  padding: 20px 0;
}

.about-content:first-of-type {
  padding-top: 48px;
}

.about-content:last-of-type {
  padding-bottom: 64px;
}

.prose {
  max-width: 680px;
  margin: 0 auto;
}

.prose h1,
.prose h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 40px 0 16px;
}

.prose h1:first-child,
.prose h2:first-child { margin-top: 0; }

.prose p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-sec);
  margin-bottom: 16px;
}

.prose ul, .prose ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sec);
  margin-bottom: 6px;
}

.prose strong { color: var(--navy); font-weight: 600; }

.about-cta {
  margin-top: 48px;
  text-align: center;
}

/* Карточки точности расчётов */
.accuracy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 28px;
}

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

.accuracy-card {
  background: var(--cream, #faf8f5);
  border: 1px solid var(--border, #e2ddd8);
  border-radius: 12px;
  padding: 24px 20px;
}

.accuracy-icon {
  font-size: 22px;
  color: var(--gold, #8b6914);
  margin-bottom: 10px;
}

.accuracy-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}

.accuracy-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-sec);
  margin: 0;
}

/* FAQ */
.faq-content { padding: 64px 0 32px; }

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary h2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  font-family: var(--font-sans, sans-serif);
  margin: 0;
  line-height: normal;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.75;
}

.faq-cta-section { padding-bottom: 64px; }

.faq-cta {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.faq-cta p { width: 100%; font-size: 16px; color: var(--text-sec); }
.faq-or { font-size: 14px; color: var(--muted); }

/* ─── Spinner ────────────────────────────────────────────────────────────── */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.spinner-lg {
  width: 40px;
  height: 40px;
  border-width: 3px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 40px 0 32px;
  margin-top: auto;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin: 0 0 4px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }

.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
}

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  text-align: center;
  margin-top: 6px;
}

.footer-legal a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
}

.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ─── Адаптив ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-visual { display: none; }

  .hero-facts { align-items: center; }

  .steps { grid-template-columns: 1fr; gap: 32px; }

  .inside-grid { grid-template-columns: 1fr 1fr; }

  .trust-grid { grid-template-columns: 1fr; gap: 24px; }

  .checkout-wrapper { grid-template-columns: 1fr; }

  .nav a:not(.nav-cta) { display: none; }

  .preview-grid { grid-template-columns: 1fr 1fr; }

  .footer-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-nav { gap: 32px; }
}

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

  .btn-xl { max-width: 100%; }

  .time-row { flex-direction: column; align-items: flex-start; }

  .faq-cta { flex-direction: column; }
}

/* --- Промокод на странице оплаты --- */
.promo-block {
  margin-bottom: 20px;
}
.promo-row {
  display: flex;
  gap: 8px;
}
.promo-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.promo-row input:focus {
  border-color: #7c5cbf;
}
.promo-row button {
  padding: 10px 16px;
  background: #f0ebfa;
  color: #7c5cbf;
  border: 1px solid #7c5cbf;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.promo-row button:hover:not(:disabled) {
  background: #e0d5f5;
}
.promo-row button:disabled {
  opacity: 0.5;
  cursor: default;
}
.promo-msg {
  margin-top: 6px;
  font-size: 13px;
}

/* Sitemap */
.sitemap-section { padding: 48px 0 80px; }
.sitemap-inner { max-width: 640px; }
.sitemap-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.sitemap-list li a { font-size: 1.05rem; color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.sitemap-list li a:hover { border-bottom-color: var(--accent); }
