/* ===================================================
   MANGROVE ADVANCE — Design System & Styles
   SVZ Design — Earthy / Sand / Cream Palette
   =================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — Earthy palette */
  --teal-900: #1a3c2a;
  --teal-800: #224d36;
  --teal-700: #2a6145;
  --teal-600: #347a56;
  --teal-500: #3f9468;

  --gold-600: #a17a2f;
  --gold-500: #c5973e;
  --gold-400: #d4a94f;
  --gold-300: #e3c272;

  /* Earthy neutrals — sands and creams */
  --cream-50: #faf8f4;
  --cream-100: #f5f0e8;
  --cream-200: #ede5d8;
  --cream-300: #ddd2c0;
  --sand-400: #c4b69e;
  --sand-500: #a89a80;
  --sand-600: #8a7d66;
  --sand-700: #6b604d;
  --sand-800: #4a4236;
  --sand-900: #2e2922;

  /* Semantic */
  --white: #ffffff;
  --bg-primary: var(--cream-50);
  --bg-alt: var(--cream-100);
  --bg-dark: var(--teal-900);
  --text-primary: var(--sand-900);
  --text-secondary: var(--sand-600);
  --text-on-dark: var(--cream-100);
  --accent: var(--gold-500);
  --accent-hover: var(--gold-400);
  --brand: var(--teal-700);
  --brand-dark: var(--teal-900);

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

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows — warmer */
  --shadow-sm: 0 1px 3px rgba(46, 41, 34, 0.06);
  --shadow-md: 0 4px 12px rgba(46, 41, 34, 0.08);
  --shadow-lg: 0 8px 30px rgba(46, 41, 34, 0.1);
  --shadow-xl: 0 16px 50px rgba(46, 41, 34, 0.12);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.text-gold { color: var(--accent); }
.required { color: #c0392b; }

.content-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}
.btn--primary:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--nav {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.btn--nav:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.btn--lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.btn--full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 60, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--duration) var(--ease);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nav__wordmark-accent {
  color: var(--gold-400);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--duration);
}

.nav__links a:hover,
.nav__link--active {
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--teal-900) 0%, var(--teal-800) 40%, var(--teal-700) 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(197, 151, 62, 0.06) 0%, transparent 60%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 72px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

/* Hero logo showcase */
.hero__logo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-img {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 24px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 20px 60px rgba(0,0,0,0.2),
    0 0 120px rgba(197, 151, 62, 0.08);
  transition: transform 0.5s var(--ease);
}

.hero__logo-img:hover {
  transform: scale(1.03);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--teal-900) 0%, var(--teal-800) 60%, var(--teal-700) 100%);
  z-index: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-200);
  padding: var(--space-2xl) 0;
}

.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-bar__item { text-align: center; }

.trust-bar__number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-800);
}

.trust-bar__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--cream-300);
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background: var(--cream-100);
}

.section--dark {
  background: var(--teal-900);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section__footer {
  text-align: center;
  margin-top: var(--space-3xl);
}

/* ---------- Steps (How It Works) ---------- */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  max-width: 220px;
  position: relative;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal-700);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  color: var(--teal-700);
}

.step__icon svg { width: 100%; height: 100%; }

.step__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.step__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step__connector {
  width: 60px;
  height: 2px;
  background: var(--cream-300);
  margin-top: 44px;
  flex-shrink: 0;
}

/* ---------- Key Facts ---------- */
.key-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--cream-200);
}

.key-fact {
  text-align: center;
}

.key-fact strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.key-fact span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: var(--space-xs);
}

.key-fact p {
  font-size: 0.85rem;
  color: var(--sand-500);
}

/* ---------- Split Layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-4xl);
}

.split--reverse .split__visual {
  order: -1;
}

/* ---------- Benefits List ---------- */
.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.benefits-list__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--teal-700);
  margin-top: 2px;
}

.benefits-list__icon svg { width: 100%; height: 100%; }

.benefits-list--spaced {
  margin-top: var(--space-2xl);
}

.benefits-list__item strong { color: var(--text-primary); }

.benefits-list__item div:last-child {
  font-size: 0.95rem;
  color: var(--sand-700);
  line-height: 1.6;
}

/* ---------- PMC Card ---------- */
.pmc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--cream-200);
}

.pmc-card__header {
  background: var(--teal-800);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  font-weight: 600;
  font-size: 1rem;
}

.pmc-card__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--cream-100);
}

.pmc-card__row--highlight {
  background: linear-gradient(90deg, rgba(197, 151, 62, 0.08), rgba(197, 151, 62, 0.04));
  font-weight: 700;
  color: var(--gold-600);
  border-bottom: none;
}

.pmc-card__footer {
  padding: var(--space-md) var(--space-xl);
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  background: var(--cream-50);
}

/* ---------- Vendor Card ---------- */
.vendor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--cream-200);
}

.vendor-card__header {
  background: var(--teal-800);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  font-weight: 600;
  font-size: 1rem;
}

.vendor-card__timeline {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.vendor-card__timeline-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sand-700);
  margin-bottom: var(--space-sm);
}

.vendor-card__timeline-bar {
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  font-weight: 600;
  font-size: 0.9rem;
}

.vendor-card__timeline-bar--old {
  background: var(--cream-200);
  color: var(--sand-600);
  width: 100%;
}

.vendor-card__timeline-bar--new {
  background: linear-gradient(90deg, var(--teal-600), var(--teal-700));
  color: var(--white);
  width: 35%;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--teal-900);
  padding: var(--space-4xl) 0;
}

.cta-banner__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.cta-banner__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* ---------- Contact Layout ---------- */
.contact-section {
  background: var(--cream-50);
}

.contact-layout {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

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

.contact-form__field {
  margin-bottom: var(--space-md);
}

.contact-form__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sand-700);
  margin-bottom: var(--space-xs);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--duration);
  outline: none;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(42, 97, 69, 0.1);
}

.contact-form__field textarea { resize: vertical; }

/* ---------- Contact Info Card ---------- */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.contact-info-card--note h3 {
  margin-bottom: var(--space-xs);
}

.contact-info-card--note p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-info-card__note {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--cream-200);
  font-style: italic;
}

.contact-info-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-card__item:last-child {
  margin-bottom: 0;
}

.contact-info-card__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--teal-700);
  margin-top: 2px;
}

.contact-info-card__icon svg { width: 100%; height: 100%; }

.contact-info-card__item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.contact-info-card__item a,
.contact-info-card__item span {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-info-card__item a:hover {
  color: var(--teal-600);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-3xl);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand { max-width: 300px; }

.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  background: var(--white);
  padding: 4px;
}

.footer__wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  gap: var(--space-4xl);
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  transition: color var(--duration);
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- Splash Screen ---------- */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.splash.splash--fade {
  opacity: 0;
  pointer-events: none;
}

.splash__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.splash__img {
  width: 180px;
  height: 180px;
  min-width: 180px;
  min-height: 180px;
  max-width: 180px;
  max-height: 180px;
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 16px;
  box-shadow:
    0 0 0 1px rgba(42, 97, 69, 0.06),
    0 16px 48px rgba(46, 41, 34, 0.1),
    0 0 80px rgba(197, 151, 62, 0.06);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash__wordmark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  animation: splashWordFadeIn 0.5s ease forwards 0.3s;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.splash__wordmark-accent {
  color: var(--gold-500);
}

/* Splash shrink state */
.splash.splash--shrink .splash__img {
  transform: scale(0.22);
  opacity: 0;
}

.splash.splash--shrink .splash__wordmark {
  opacity: 0;
  transform: translateY(-10px);
}

@keyframes splashWordFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide body scroll during splash */
body.splash-active {
  overflow: hidden;
}

/* Hide nav during splash */
body.splash-active .nav {
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:not(.splash-active) .nav {
  opacity: 1;
  transition: opacity 0.4s ease 0.2s;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .split--reverse .split__visual { order: 0; }

  .contact-layout {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .key-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 60, 42, 0.98);
    padding: var(--space-xl);
    gap: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav__links.active { display: flex; }
  .nav__toggle { display: flex; }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step__connector {
    width: 2px;
    height: 30px;
    margin-top: 0;
  }

  .trust-bar__divider { display: none; }

  .trust-bar__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .key-facts {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .footer__inner { flex-direction: column; }
  .footer__links { gap: var(--space-2xl); }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .hero__title { font-size: 2rem; }
  .trust-bar__number { font-size: 1.35rem; }
  .page-hero { padding: 8rem 0 3rem; }
}
