/* ============================================================
   NOVA MEDIA AI — Legal Services
   Brand: Stellar Gold
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-black);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle 700px at 10% 5%,  rgba(212,168,83,.08), transparent 60%),
    radial-gradient(circle 500px at 90% 95%, rgba(109,240,214,.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Custom Properties ---- */
:root {
  --color-gold:       #D4A853;
  --color-gold-dark:  #B8903F;
  --color-black:      #0B0B10;
  --color-black-deep: #16161D;
  --color-white:      #F5F1E8;
  --color-text:       #F5F1E8;
  --color-muted:      rgba(245,241,232,0.55);
  --color-surface:    rgba(22,22,29,0.7);
  --color-border:     rgba(245,241,232,0.12);
  --color-card:       rgba(22,22,29,0.8);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --container: 1200px;
  --nav-h:     72px;
  --radius:    6px;
  --radius-lg: 14px;
  --shadow-gold: 0 8px 32px rgba(212,168,83,0.25);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* ---- Animations ---- */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.is-visible { opacity: 1; transform: translateY(0); }
.animate:nth-child(2) { transition-delay: 0.08s; }
.animate:nth-child(3) { transition-delay: 0.16s; }
.animate:nth-child(4) { transition-delay: 0.24s; }
.animate:nth-child(5) { transition-delay: 0.32s; }
.animate:nth-child(6) { transition-delay: 0.40s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
  padding: 0.875rem 1.75rem;
}
.btn--gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-border);
  padding: 0.875rem 1.75rem;
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* ---- Section helpers ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 54ch;
  line-height: 1.7;
}

/* ============================================================
   DISCLAIMER BANNER (top of every page)
   ============================================================ */
.disclaimer-banner {
  background: rgba(212,168,83,0.1);
  border-bottom: 1px solid rgba(212,168,83,0.25);
  padding: 0.625rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(212,168,83,0.9);
  line-height: 1.5;
  position: relative;
  z-index: 1010;
}
.disclaimer-banner a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(11,11,16,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.nav__logo span { color: var(--color-gold); }
.nav__badge {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--color-gold);
  border: 1px solid rgba(212,168,83,0.4);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  cursor: pointer;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 4px 10px;
  transition: all 0.2s;
}
.lang-toggle:hover { color: var(--color-gold); border-color: rgba(212,168,83,0.4); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 1.75rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.hero__title .gold { color: var(--color-gold); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-muted);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}
.hero__trust-item .icon { color: var(--color-gold); font-size: 1rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services { padding: 6rem 0; position: relative; z-index: 1; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.service-card:hover {
  border-color: rgba(212,168,83,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(212,168,83,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.service-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-white);
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
  flex: 1;
}
.service-card__price {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-gold);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.service-card__price .loading { opacity: 0.5; font-style: italic; }
.service-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212,168,83,0.15);
  color: var(--color-gold);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 0.25rem;
}
.service-card__cta {
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 6rem 0; position: relative; z-index: 1; }
.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.how__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.how__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-gold);
}
.how__step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-white);
}
.how__step p { font-size: 0.9rem; color: var(--color-muted); line-height: 1.6; }

/* ============================================================
   WHY US
   ============================================================ */
.why { padding: 6rem 0; position: relative; z-index: 1; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why__item {
  padding: 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.why__item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.why__item p { font-size: 0.875rem; color: var(--color-muted); line-height: 1.5; }
.why__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 6rem 0; position: relative; z-index: 1; }
.faq__list { max-width: 720px; margin: 3rem auto 0; }
.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.faq__q {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq__q .chevron {
  color: var(--color-gold);
  font-size: 1.25rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq__item.open .chevron { transform: rotate(180deg); }
.faq__a {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq__item.open .faq__a { max-height: 400px; padding-top: 0.875rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-section__inner {
  background: var(--color-card);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-section__sub { font-size: 1rem; color: var(--color-muted); margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
}
.footer__brand span { color: var(--color-gold); }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--color-white); }
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(245,241,232,0.3);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.footer__disclaimer a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   ORDER WIZARD
   ============================================================ */
.wizard-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
}
.wizard-page main { flex: 1; padding-top: 3rem; }

.wizard {
  max-width: 640px;
  margin: 0 auto;
}
.wizard__progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.wizard__step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  flex: 1;
  position: relative;
}
.wizard__step-dot::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  z-index: 0;
}
.wizard__step-dot:last-child::after { display: none; }
.wizard__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-muted);
  background: var(--color-black);
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.wizard__step-dot.active .wizard__dot {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212,168,83,0.1);
}
.wizard__step-dot.done .wizard__dot {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-black);
}
.wizard__step-label {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-align: center;
}
.wizard__step-dot.active .wizard__step-label { color: var(--color-gold); }

.wizard__panel { display: none; }
.wizard__panel.active { display: block; }

.wizard__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.wizard__sub {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

/* Form fields */
.field {
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 0.375rem;
  letter-spacing: 0.02em;
}
.field label .req { color: var(--color-gold); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(22,22,29,0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(212,168,83,0.5);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.08);
}
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 80px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field--row { grid-template-columns: 1fr; } }

/* Service picker */
.service-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) { .service-picker { grid-template-columns: 1fr; } }
.service-opt {
  padding: 1rem;
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.service-opt:hover { border-color: rgba(212,168,83,0.3); }
.service-opt.selected {
  border-color: var(--color-gold);
  background: rgba(212,168,83,0.08);
}
.service-opt__icon { font-size: 1.25rem; margin-bottom: 0.4rem; }
.service-opt__name { font-weight: 700; font-size: 0.875rem; color: var(--color-white); }
.service-opt__price { font-family: var(--font-mono); font-size: 0.75rem; color: var(--color-gold); margin-top: 0.25rem; }

/* Disclaimer checkbox */
.disclaimer-check {
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.disclaimer-check label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.disclaimer-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

/* Review card */
.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.review-card h4 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.review-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}
.review-row:last-child { border-bottom: none; }
.review-row .label { color: var(--color-muted); }
.review-row .value { color: var(--color-white); font-weight: 600; text-align: right; }

/* Wizard nav */
.wizard__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}
.wizard__nav--end { justify-content: flex-end; }

/* Error state */
.field-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.25rem;
}
input.invalid,
select.invalid { border-color: #ef4444 !important; }

/* Submit loading state */
.btn--loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn--loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */
.confirm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.confirm-card {
  background: var(--color-card);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  max-width: 540px;
  width: 100%;
}
.confirm-card__icon {
  width: 72px;
  height: 72px;
  background: rgba(212,168,83,0.12);
  border: 2px solid rgba(212,168,83,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.confirm-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.confirm-card__sub { font-size: 1rem; color: var(--color-muted); line-height: 1.6; margin-bottom: 2rem; }
.confirm-card__steps {
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.confirm-card__steps p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.confirm-card__steps strong { color: var(--color-gold); }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-page {
  position: relative;
  z-index: 1;
  padding: 5rem 0 6rem;
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.legal-page .updated {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
}
.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-gold);
  margin: 2.5rem 0 0.75rem;
}
.legal-content p { font-size: 0.9375rem; color: var(--color-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.9375rem; color: var(--color-muted); line-height: 1.8; margin-bottom: 0.5rem; list-style: disc; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .hero { padding: 4rem 0 3rem; }
  .services, .how, .why, .faq, .cta-section { padding: 4rem 0; }
  .services__grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 1rem; }
  .confirm-card { padding: 2rem 1.25rem; }
}

/* ============================================================
   ADDITIONS — class names used in HTML files
   ============================================================ */

/* Text utility */
.text-gold { color: var(--color-gold); }

/* Nav container alias */
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .nav__container { padding: 0 2.5rem; } }

.nav__logo-nova { color: var(--color-white); font-weight: 800; }
.nav__logo-ai   { color: var(--color-gold); font-weight: 800; }
.nav__logo-divider { color: var(--color-border); margin: 0 0.5rem; }
.nav__logo-legal {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  text-transform: uppercase;
}
.nav--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

/* btn--outline alias for btn--ghost */
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-border);
  padding: 0.875rem 1.75rem;
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

/* Hero aliases */
.hero__content { max-width: 760px; margin: 0 auto; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 1.75rem;
}
.hero__subtitle { /* alias for hero__sub */
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-muted);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__trust-icon { color: var(--color-gold); margin-right: 0.25rem; }
.hero__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(245,241,232,0.3);
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Section generic */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}
.section--dark {
  background: rgba(16,16,22,0.6);
}
.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services grid alias */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card__btn { margin-top: auto; width: 100%; text-align: center; }
.services-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
}
.loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* How it works — steps */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 260px;
  flex: 1 1 200px;
}
.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.step__content { padding: 0 1rem; }
.step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.step__desc { font-size: 0.9rem; color: var(--color-muted); line-height: 1.6; }
.step__connector {
  flex: 0 0 48px;
  height: 1px;
  background: var(--color-border);
  align-self: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) { .step__connector { display: none; } }

/* Features grid (Why us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  padding: 1.75rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(212,168,83,0.3); transform: translateY(-3px); }
.feature-card__icon { font-size: 1.75rem; margin-bottom: 1rem; }
.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.feature-card__desc { font-size: 0.875rem; color: var(--color-muted); line-height: 1.6; }

/* FAQ aliases */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  text-align: left;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-item__question:hover { color: var(--color-gold); }
.faq-item__arrow {
  color: var(--color-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-item__arrow { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.faq-item.open .faq-item__answer { max-height: 400px; padding-bottom: 1.25rem; }

/* CTA Box */
.cta-box {
  background: var(--color-card);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-box__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-box__subtitle { font-size: 1rem; color: var(--color-muted); margin-bottom: 2rem; }
.cta-box__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(245,241,232,0.3);
  line-height: 1.6;
}
.cta-box__disclaimer a { color: var(--color-gold); text-decoration: underline; }

/* Footer extras */
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 768px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }
.footer__logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; margin-bottom: 0.75rem; }
.footer__tagline { font-size: 0.875rem; color: var(--color-muted); line-height: 1.6; max-width: 28ch; }
.footer__links-title {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links ul a { font-size: 0.875rem; color: var(--color-muted); transition: color 0.2s; }
.footer__links ul a:hover { color: var(--color-white); }
.footer__bottom { padding-top: 1.5rem; text-align: center; }
.footer--minimal { padding: 1.5rem 0; }
.footer--minimal .footer__disclaimer { border-top: none; padding-top: 0; }

/* Disclaimer banner extras */
.disclaimer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.disclaimer-banner__icon { flex-shrink: 0; }
.disclaimer-banner__text { flex: 1; min-width: 0; }
.disclaimer-banner__close {
  font-size: 1.25rem;
  color: var(--color-gold);
  line-height: 1;
  margin-left: 0.5rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.disclaimer-banner__close:hover { opacity: 1; }

/* Wizard page layout */
.wizard-page { padding-top: 3rem; padding-bottom: 5rem; position: relative; z-index: 1; }

/* Progress bar */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 400px;
  margin: 0 auto 3rem;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.progress-step__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-muted);
  background: var(--color-black);
  transition: all 0.2s;
}
.progress-step.active .progress-step__circle {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212,168,83,0.1);
}
.progress-step.done .progress-step__circle {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-black);
}
.progress-step__label {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--color-muted);
}
.progress-step.active .progress-step__label { color: var(--color-gold); }
.progress-step__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
  align-self: flex-start;
  margin-top: 16px;
  max-width: 80px;
}

/* Wizard steps */
.wizard { max-width: 640px; margin: 0 auto; }
.wizard-step { display: none; }
.wizard-step--active { display: block; }
.wizard-step__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.wizard-step__subtitle {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}
.wizard-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: #ef4444;
  margin-bottom: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.wizard-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.wizard-actions--split {
  justify-content: space-between;
}

/* Form fields aliases */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 0.375rem;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(22,22,29,0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212,168,83,0.5);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.08);
}
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-hint {
  display: block;
  font-size: 0.8rem;
  color: rgba(245,241,232,0.35);
  margin-top: 0.375rem;
}
/* Override select option dark bg */
.form-select option { background: #1a1a22; color: var(--color-white); }

/* Review box */
.review-box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.review-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}
.review-row:last-child { border-bottom: none; }
.review-label { color: var(--color-muted); }

/* Disclaimer checkbox */
.disclaimer-checkbox {
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.disclaimer-checkbox__label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.disclaimer-checkbox__label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-gold);
  cursor: pointer;
}
.disclaimer-checkbox__text a { color: var(--color-gold); text-decoration: underline; }

/* Confirmation page */
.confirmation-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
.confirmation-box {
  background: var(--color-card);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.confirmation-icon {
  width: 72px;
  height: 72px;
  background: rgba(212,168,83,0.12);
  border: 2px solid rgba(212,168,83,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-gold);
  margin: 0 auto 1.5rem;
}
.confirmation-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.confirmation-message { font-size: 1rem; color: var(--color-muted); line-height: 1.6; margin-bottom: 0.5rem; }
.confirmation-email {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
}
.confirmation-next {
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}
.confirmation-next h3 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.confirmation-next ul { padding-left: 1.25rem; list-style: disc; }
.confirmation-next ul li {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 0.25rem;
  list-style: disc;
}
.confirmation-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.confirmation-disclaimer {
  font-size: 0.75rem;
  color: rgba(245,241,232,0.3);
  line-height: 1.6;
}

/* Legal page extras */
.legal-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
}
.legal-disclaimer-box {
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: rgba(212,168,83,0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.legal-content a { color: var(--color-gold); text-decoration: underline; }

@media (max-width: 640px) {
  .wizard-page { padding-top: 2rem; }
  .confirmation-box { padding: 2rem 1.25rem; }
  .cta-box { padding: 2.5rem 1.25rem; }
  .section { padding: 4rem 0; }
}

/* ============================================================
   HERO STATE SELECTOR FUNNEL
   ============================================================ */
.hero__state-funnel {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero__state-select {
  flex: 1;
  min-width: 220px;
  background: rgba(22,22,29,0.95);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A853' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.hero__state-select:focus { border-color: rgba(212,168,83,0.5); }
.hero__state-select option { background: #1a1a22; color: var(--color-white); }
.btn--funnel-inactive {
  opacity: 0.45;
  cursor: not-allowed;
}
@media (max-width: 480px) {
  .hero__state-funnel { flex-direction: column; }
  .hero__state-select { min-width: 0; }
}

/* ============================================================
   SERVICE TABS
   ============================================================ */
.service-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.service-tab {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--color-border);
  color: var(--color-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.service-tab:hover { border-color: rgba(212,168,83,0.4); color: var(--color-white); }
.service-tab.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212,168,83,0.08);
}

/* ============================================================
   INTERNATIONAL BANNER
   ============================================================ */
.intl-banner { padding: 3rem 0; }
.intl-banner__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}
.intl-banner__icon { font-size: 2.5rem; flex-shrink: 0; }
.intl-banner__content { flex: 1; min-width: 200px; }
.intl-banner__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--color-white);
  margin-bottom: 0.375rem;
}
.intl-banner__sub { font-size: 0.9rem; color: var(--color-muted); line-height: 1.5; }
@media (max-width: 640px) {
  .intl-banner__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   STEPS 5-column layout
   ============================================================ */
.steps--5 { gap: 0; }
.steps--5 .step { flex: 1 1 160px; max-width: 200px; }
.steps--5 .step__connector { flex: 0 0 32px; }
.steps__cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   MID-PAGE CTA STRIP
   ============================================================ */
.section-mid-cta {
  padding: 2.5rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
