/* =========================================================
   astro·karta — cosmic dark theme
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --bg:           #07070d;
  --bg-2:         #0c0d18;
  --surface:      rgba(20, 22, 38, 0.65);
  --surface-2:    rgba(28, 30, 52, 0.55);
  --border:       rgba(212, 175, 110, 0.18);
  --border-strong:rgba(212, 175, 110, 0.32);

  --text:         #ECE6D6;
  --text-muted:   #A6A1B5;
  --text-dim:     #756F86;

  --gold:         #D4AF6E;
  --gold-2:       #E8C988;
  --gold-soft:    rgba(212, 175, 110, 0.15);

  --violet:       #6B5BD2;
  --violet-soft:  rgba(107, 91, 210, 0.18);

  --danger:       #E07070;
  --success:      #6FCF97;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-1: 0 6px 24px rgba(0,0,0,0.35);
  --shadow-2: 0 18px 50px rgba(0,0,0,0.5);
  --glow:     0 0 40px rgba(212,175,110,0.15);

  --tr: 220ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- BASE ---------- */
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 70% -10%, rgba(107, 91, 210, 0.18), transparent 60%),
    radial-gradient(900px 600px at 10% 30%, rgba(212, 175, 110, 0.08), transparent 60%),
    linear-gradient(180deg, #07070d 0%, #0a0a14 50%, #07070d 100%);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--text);
  margin: 0;
}

p { margin: 0; }

/* ---------- STARFIELD ---------- */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 14%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 28% 78%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1.4px 1.4px at 47% 32%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 64% 64%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1.2px 1.2px at 82% 22%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1px 1px at 91% 88%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1.4px 1.4px at 8% 56%, rgba(232,201,136,0.55), transparent 50%),
    radial-gradient(1px 1px at 38% 8%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 72% 48%, rgba(255,255,255,0.55), transparent 50%);
  animation: twinkle 6s ease-in-out infinite alternate;
  opacity: 0.85;
}
.stars--slow {
  animation-duration: 14s;
  background-image:
    radial-gradient(1px 1px at 22% 36%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1.6px 1.6px at 56% 12%, rgba(232,201,136,0.6), transparent 50%),
    radial-gradient(1px 1px at 76% 70%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1.2px 1.2px at 88% 38%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 14% 82%, rgba(255,255,255,0.4), transparent 50%);
  opacity: 0.7;
}
@keyframes twinkle { from { opacity: 0.55; } to { opacity: 0.95; } }

/* ---------- LAYOUT WRAPPERS ---------- */
.site-header,
main,
.site-footer { position: relative; z-index: 1; }

/* ---------- HEADER ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color var(--tr);
}
.brand:hover { color: var(--gold-2); }
.brand__mark {
  color: var(--gold);
  font-size: 22px;
  text-shadow: 0 0 12px rgba(212,175,110,0.55);
}
.brand__dot { color: var(--gold); margin: 0 1px; }

.site-nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: 14px;
  color: var(--text-muted);
}
.site-nav a {
  position: relative;
  padding: 6px 2px;
  transition: color var(--tr);
}
.site-nav a:hover { color: var(--gold-2); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.site-nav a:hover::after { transform: scaleX(1); }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--tr), background var(--tr), color var(--tr), border-color var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #1a1408;
  box-shadow: 0 8px 28px rgba(212,175,110,0.28), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(212,175,110,0.42), inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-2);
}

.btn--link {
  background: transparent;
  color: var(--text-muted);
  height: auto;
  padding: 6px 10px;
}
.btn--link:hover { color: var(--gold-2); }

.btn--lg { height: 54px; padding: 0 30px; font-size: 15px; }
.btn--sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---------- HERO ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero {
  min-height: calc(100dvh - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(20px, 5vw, 56px) 80px;
  position: relative;
}
.hero__inner {
  max-width: 820px;
  text-align: center;
}
.hero__title {
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #ffffff 0%, #d8d2c0 60%, #b29a6d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 22px;
  text-shadow: 0 8px 60px rgba(212,175,110,0.15);
}
.hero__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--gold-2);
  border-left: 1px solid var(--gold);
  padding: 6px 22px;
  margin: 30px auto;
  max-width: 540px;
  text-align: left;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,110,0.7);
}
.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero__disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.hero__disclaimer svg { color: var(--gold); flex-shrink: 0; }

.plan__sub {
  margin-top: -10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.plan--featured .plan__sub { color: var(--gold-2); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color var(--tr);
}
.scroll-cue:hover { color: var(--gold); }
.scroll-cue__dot { animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 56px);
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, transparent 0%, rgba(107,91,210,0.04) 50%, transparent 100%);
}
.section--cta { padding-bottom: clamp(80px, 12vw, 140px); }
.section__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.section__inner--narrow { max-width: 780px; }
.section__inner.center { text-align: center; }

.section__title {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section__lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.center .section__lead { margin-left: auto; margin-right: auto; }

/* ---------- CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--tr), border-color var(--tr), background var(--tr);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-2);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- STEPS ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  counter-reset: steps;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.how__cta {
  text-align: center;
  margin-top: 40px;
}

/* ---------- PRICING ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform var(--tr), border-color var(--tr);
}
.plan:hover { transform: translateY(-3px); }
.plan--featured {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(212,175,110,0.06), rgba(20,22,38,0.7));
  box-shadow: var(--glow);
}
.plan__badge {
  position: absolute;
  top: -12px; right: 22px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1408;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.plan__name {
  font-size: 24px;
  margin: 0;
}
.plan__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan__price small {
  font-size: 16px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 22px;
}
.plan__list li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
}
.pricing__note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}
.pricing__note a { color: var(--gold-2); border-bottom: 1px dashed var(--border-strong); }
.pricing__note a:hover { color: var(--gold); }

/* ---------- FAQ ---------- */
.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq[open] { border-color: var(--border-strong); }
.faq summary {
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--tr);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform var(--tr);
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-2); }
.faq p {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq a { color: var(--gold-2); border-bottom: 1px dashed var(--border-strong); }

/* ---------- FORM PAGE ---------- */
.page-form .site-header,
.page-success .site-header {
  border-bottom: 1px solid var(--border);
}
.form-main {
  display: flex;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px) 80px;
}
.form-shell {
  width: 100%;
  max-width: 620px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-2);
}
.form-progress {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}
.step-pip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 64px;
}
.step-pip__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.form-progress .dot {
  width: 9px; height: 9px;
  background: var(--text-dim);
  box-shadow: none;
}
.form-progress .dot--active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212,175,110,0.6);
}
.step-pip:has(.dot--active) .step-pip__label { color: var(--gold-2); }
.form-progress .line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 4px;
}
.form-title {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.form-lead {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
}
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 500;
}
.field .req { color: var(--gold); }
.field input[type="text"],
.field input[type="email"],
.field input[type="date"],
.field input[type="time"] {
  height: 52px;
  padding: 0 16px;
  background: rgba(7,7,13,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
  width: 100%;
  color-scheme: dark;
}
.field input::placeholder { color: var(--text-dim); }
.field input:hover { border-color: var(--border-strong); }
.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(7,7,13,0.85);
  box-shadow: 0 0 0 3px rgba(212,175,110,0.15);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(224,112,112,0.4);
}
.field .hint {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

.field--check { margin-top: 6px; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  background: rgba(7,7,13,0.6);
  position: relative;
  margin-top: 2px;
  transition: background var(--tr), border-color var(--tr);
}
.check input:checked + .check__box {
  background: var(--gold);
  border-color: var(--gold);
}
.check input:checked + .check__box::after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: solid #1a1408;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check input:focus-visible + .check__box {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.check__text a {
  color: var(--gold-2);
  border-bottom: 1px dashed var(--border-strong);
}

.form-actions { margin-top: 12px; }
.form-foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

.btn__spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(26,20,8,0.3);
  border-top-color: #1a1408;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn.is-loading .btn__label { opacity: 0.6; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- SUCCESS PAGE ---------- */
.success-main {
  display: flex;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px) 80px;
}
.success-shell {
  width: 100%;
  max-width: 640px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-2);
}
.success-icon {
  display: inline-grid;
  place-items: center;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  border: 1px solid var(--border-strong);
  margin: 0 auto 20px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,110,0.35); }
  50%      { box-shadow: 0 0 0 14px rgba(212,175,110,0); }
}
.success-title {
  font-size: clamp(32px, 4.4vw, 46px);
  margin-bottom: 14px;
}
.success-lead {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.success-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(7,7,13,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: left;
}
.success-info a { color: var(--gold-2); border-bottom: 1px dashed var(--border-strong); }
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.success-contact {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.success-contact h2 {
  font-size: 22px;
  margin-bottom: 14px;
}
.success-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.success-contact li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.success-contact .ic {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-2);
  border: 1px solid var(--border);
}
.success-contact a { color: var(--gold-2); }
.success-contact a:hover { color: var(--gold); }

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 56px) 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col p { font-size: 13.5px; line-height: 1.7; }
.footer-col a:hover { color: var(--gold-2); }
.footer-tag { color: var(--text-dim); font-size: 13px; margin-top: 10px; }
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
}
.footer-list a { color: var(--text-muted); transition: color var(--tr); }

.payments {
  max-width: 1180px;
  margin: 32px auto 0;
  padding: 22px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payments__row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.payments__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.payments__icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 500;
}

.copyright {
  max-width: 1180px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}
.copyright a { color: var(--text-muted); }
.copyright a:hover { color: var(--gold-2); }
.legal-links { margin-top: 6px; }

.site-footer--slim {
  margin-top: 0;
  padding-top: 28px;
  padding-bottom: 28px;
}
.site-footer--slim .copyright { margin: 0 auto; }

/* ---------- COOKIE BANNER ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(12,13,24,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  box-shadow: var(--shadow-2);
}
.cookie p { margin: 0; flex: 1; min-width: 240px; }
.cookie a { color: var(--gold-2); border-bottom: 1px dashed var(--border-strong); }
