/* ============================================================
   WESTMERE CAPITAL PARTNERS — Global Stylesheet
   Design Direction: Clean Professional Authority
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Core Palette */
  --navy:       #0B1F3A;
  --navy-deep:  #07152B;
  --navy-mid:   #122540;
  --gold:       #C8A96E;
  --gold-light: #DFC08A;
  --gold-dark:  #A8884A;
  --cream:      #F4F1EA;
  --cream-dark: #EAE6DC;
  --white:      #FFFFFF;
  --black:      #05080D;

  /* Text */
  --text-primary:   #0B1F3A;
  --text-body:      #2E3E54;
  --text-muted:     #6B7A94;
  --text-on-dark:   #D6DCE8;
  --text-on-dark-h: #FFFFFF;

  /* Borders & Surfaces */
  --border:       #DDD8CE;
  --border-dark:  #1E3254;
  --surface:      #FFFFFF;
  --surface-tint: #F8F6F1;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container:   1200px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

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

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ── Typography Scale ─────────────────────────────────────── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.body-lg  { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.7; }
.body-md  { font-size: 1rem; line-height: 1.7; }
.body-sm  { font-size: 0.875rem; line-height: 1.6; }
.label    {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: var(--section-pad) 0; }
.section--sm { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.section--dark {
  background: var(--navy-deep);
  color: var(--text-on-dark);
}
.section--navy {
  background: var(--navy);
  color: var(--text-on-dark);
}
.section--cream {
  background: var(--cream);
  color: var(--text-primary);
}
.section--tint {
  background: var(--surface-tint);
  color: var(--text-primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

/* ── Gold Accent Divider ──────────────────────────────────── */
.gold-line {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.gold-line--center { margin-left: auto; margin-right: auto; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ── Logo SVG ─────────────────────────────────────────────── */
.logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--navy-deep);
  padding: 0.85rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
  transform-origin: left;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active { color: var(--white); }
.nav__link--active::after { transform: scaleX(1); }

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem var(--gutter) 2rem;
  background: var(--navy-deep);
  border-top: 1px solid var(--border-dark);
  gap: 0;
}
.nav__mobile-menu.is-open { display: flex; }
.nav__mobile-link {
  padding: 0.9rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--dur) var(--ease);
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--gold); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.3);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 0.85rem; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--dur) var(--ease);
}
.btn-arrow:hover { gap: 0.8rem; }
.btn-arrow svg { width: 16px; height: 16px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(18,37,64,0.8) 0%, transparent 60%);
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, transparent);
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero__eyebrow-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.hero__eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(214,220,232,0.85);
  max-width: 540px;
  margin-bottom: 2.75rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── Trust Strip ──────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 2rem 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-item__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.trust-item__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(214,220,232,0.7);
  line-height: 1.3;
}
.trust-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border-dark);
}

/* ── Section Header ───────────────────────────────────────── */
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--center { text-align: center; }
.section-header--center .gold-line { margin-left: auto; margin-right: auto; }

/* ── Audience Split ───────────────────────────────────────── */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.audience-panel {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: flex var(--dur) var(--ease);
}
.audience-panel--sellers {
  background: var(--cream);
}
.audience-panel--investors {
  background: var(--navy);
}
.audience-panel__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.audience-panel__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.audience-panel--sellers .audience-panel__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.audience-panel--investors .audience-panel__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.audience-panel--sellers .audience-panel__body {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}
.audience-panel--investors .audience-panel__body {
  color: var(--text-on-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}
.audience-panel__list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.audience-panel__list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.audience-panel--sellers .audience-panel__list-item { color: var(--text-body); }
.audience-panel--investors .audience-panel__list-item { color: var(--text-on-dark); }
.check-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Feature Cards ────────────────────────────────────────── */
.feature-card {
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(200,169,110,0.12);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.feature-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.feature-card__body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Dark variant */
.feature-card--dark {
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
}
.feature-card--dark .feature-card__title { color: var(--white); }
.feature-card--dark .feature-card__body { color: rgba(214,220,232,0.7); }
.feature-card--dark:hover { border-color: var(--gold); }

/* ── Process Steps ────────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.1rem;
}
.process-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.process-step__body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Dark process steps */
.process-step--dark { border-color: var(--border-dark); }
.process-step--dark .process-step__title { color: var(--white); }
.process-step--dark .process-step__body { color: rgba(214,220,232,0.7); }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  max-width: 560px;
}
.cta-banner__headline em { font-style: italic; color: var(--gold); }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(214,220,232,0.8);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Stat Block ───────────────────────────────────────────── */
.stat-block {
  text-align: center;
  padding: 2rem 1.5rem;
}
.stat-block__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-block__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Team Card ────────────────────────────────────────────── */
.team-card {
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.team-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
}
.team-card__initials {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.team-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.team-card__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-card__bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--dur) var(--ease);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--dur) var(--ease);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.2s var(--ease);
}
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer__inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Contact Form ─────────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-tint);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--navy);
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(214,220,232,0.7);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo-wrap { margin-bottom: 1rem; }
.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(214,220,232,0.55);
  max-width: 280px;
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(214,220,232,0.65);
  transition: color var(--dur) var(--ease);
}
.footer__link:hover { color: var(--gold); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(214,220,232,0.65);
  margin-bottom: 0.75rem;
}
.footer__contact-icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(214,220,232,0.35);
  letter-spacing: 0.04em;
}
.footer__disclaimer {
  font-size: 0.72rem;
  color: rgba(214,220,232,0.28);
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

/* ── Scroll-reveal animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Divider ornament ─────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  justify-content: center;
}
.ornament__line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.ornament__diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── Utilities ────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.max-640 { max-width: 640px; }
.max-760 { max-width: 760px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .audience-split {
    grid-template-columns: 1fr;
  }
  .audience-panel {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  }

  .trust-strip__inner {
    justify-content: center;
    gap: 1.5rem;
  }
  .trust-divider { display: none; }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__actions { justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__disclaimer { text-align: left; }

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

  .process-step { grid-template-columns: 2.5rem 1fr; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
