/* ==========================================================================
   MUVEX — Premium International Financial Routing
   Design System v1.0
   ========================================================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, picture, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — matte black + ivory + champagne gold */
  --bg-base: #0A0A0A;
  --bg-surface: #121212;
  --bg-elevated: #1A1A1A;
  --bg-card: #161616;
  --border-subtle: rgba(245, 241, 232, 0.08);
  --border-default: rgba(245, 241, 232, 0.12);
  --border-strong: rgba(245, 241, 232, 0.24);

  --text-primary: #F5F1E8;
  --text-secondary: rgba(245, 241, 232, 0.72);
  --text-muted: rgba(245, 241, 232, 0.48);
  --text-faint: rgba(245, 241, 232, 0.32);

  --accent-gold: #C9A961;
  --accent-gold-hover: #D4B775;
  --accent-gold-soft: rgba(201, 169, 97, 0.12);
  --accent-blue: #1B2845;

  --success: #7FA67F;
  --danger: #C97A6A;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 920px;
  --container-text: 720px;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 24px 64px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- BASE ---------- */
body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

::selection { background: var(--accent-gold); color: var(--bg-base); }

/* Subtle vignette */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(27, 40, 69, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-secondary); }
.lead { font-size: clamp(1.125rem, 1.8vw, 1.375rem); line-height: 1.5; color: var(--text-secondary); font-weight: 300; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.text-gold { color: var(--accent-gold); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

/* ---------- CONTAINER & SECTIONS ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.container-text { max-width: var(--container-text); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
section + section { border-top: 1px solid var(--border-subtle); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto var(--space-3xl); }
.section-header.left { text-align: left; margin-left: 0; }
.section-header p { margin-top: var(--space-lg); }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border-subtle); padding: 14px 0; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}
.logo .dot { color: var(--accent-gold); }

.nav-links { display: flex; gap: var(--space-2xl); align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

.nav-toggle { display: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-premium);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-base);
  border: 1px solid var(--accent-gold);
}
.btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(245, 241, 232, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
  padding: 12px 20px;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-tg svg { width: 18px; height: 18px; }
.btn-large { padding: 20px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-size: 0.95rem;
  font-weight: 500;
  transition: gap 0.3s var(--ease);
}
.arrow-link:hover { gap: 14px; }
.arrow-link::after { content: '→'; transition: transform 0.3s var(--ease); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.hero-bg::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}
.hero-bg::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 40, 69, 0.6) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  animation: float 24s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero h1 {
  margin-bottom: var(--space-xl);
  animation: rise 1.2s var(--ease-premium) both;
}

.hero .lead {
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  animation: rise 1.2s var(--ease-premium) 0.15s both;
}

.hero .btn-group { justify-content: center; animation: rise 1.2s var(--ease-premium) 0.3s both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Decorative subtle line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border-strong), transparent);
}

/* Page hero (sub-page version, less tall) */
.page-hero {
  min-height: 70vh;
  padding: 180px 0 80px;
}
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }

/* ---------- TRUST METRICS ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trust-item {
  background: var(--bg-surface);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: background 0.3s var(--ease);
}
.trust-item:hover { background: var(--bg-elevated); }

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.trust-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ---------- CARDS GRID ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-default);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold-soft);
  margin-bottom: var(--space-lg);
  color: var(--accent-gold);
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}
.card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Case cards (use cases section) */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.case-card {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all 0.4s var(--ease-premium);
}
.case-card:hover { border-color: var(--accent-gold-soft); transform: translateY(-2px); }

.case-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent-gold);
  opacity: 0.4;
  line-height: 1;
}

.case-card h3 { font-size: 1.375rem; }

.case-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}
.case-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 4px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
}

/* ---------- HOW IT WORKS — STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  counter-reset: step;
}

.step {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.step h4 { margin-bottom: var(--space-sm); font-family: var(--font-display); font-size: 1.25rem; }
.step p { font-size: 0.9rem; }

/* ---------- TWO-COLUMN ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}
.split .col-text h2 { margin-bottom: var(--space-lg); }
.split .col-text .lead { margin-bottom: var(--space-xl); }

.split .col-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* List with checkmarks */
.feature-list { display: flex; flex-direction: column; gap: var(--space-md); }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: var(--text-secondary);
  font-size: 1rem;
}
.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 10px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  font-size: 1.125rem;
  font-family: var(--font-display);
  color: var(--text-primary);
  transition: color 0.2s var(--ease);
}
.faq-question:hover { color: var(--accent-gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--text-secondary);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-premium);
}
.faq-answer-inner {
  padding-bottom: var(--space-xl);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- CONFIDENTIALITY / QUOTE SECTION ---------- */
.confidence-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
  text-align: center;
}
.confidence-section .container-narrow {
  position: relative;
}
.confidence-section h2 {
  margin-bottom: var(--space-xl);
}
.confidence-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: var(--space-md);
}

/* ---------- INQUIRY FORM ---------- */
.form-section {
  background: var(--bg-surface);
}
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
}

.form-group { margin-bottom: var(--space-lg); }
.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { min-height: 120px; resize: vertical; font-family: inherit; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.form-consent {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  line-height: 1.5;
}
.form-consent a { color: var(--accent-gold); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-base) 0%, #1B2845 200%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: var(--space-xl); }
.final-cta .btn-group { justify-content: center; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-4xl) 0 var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-col p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  gap: var(--space-sm);
}
.sticky-cta .btn { flex: 1; padding: 14px 16px; font-size: 0.9rem; }

/* ---------- PILL / BADGE ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-gold-soft);
  border: 1px solid rgba(201, 169, 97, 0.24);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: var(--space-xl);
}
.pill .dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text-muted); transition: color 0.2s var(--ease); }
.breadcrumbs a:hover { color: var(--accent-gold); }
.breadcrumbs .sep { color: var(--text-faint); }

/* ---------- RELATED PAGES ---------- */
.related-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
.related-link {
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  display: block;
}
.related-link:hover {
  border-color: var(--accent-gold-soft);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}
.related-link h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}
.related-link span {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .split .col-visual { aspect-ratio: 16/10; max-width: 600px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-pill);
  }
  .nav-toggle svg { width: 20px; height: 20px; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: var(--space-lg);
    margin-top: 12px;
    gap: var(--space-md);
    align-items: flex-start;
  }
  .nav-links.open .nav-cta { align-self: stretch; justify-content: center; }

  section { padding: 80px 0; }
  .hero { padding-top: 120px; min-height: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .btn-large { padding: 16px 28px; }
}

@media (max-width: 480px) {
  .btn-group .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 100px; }
}

/* ---------- ANIMATIONS ON SCROLL ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.hidden { display: none; }
