/* ============================================================
   CRESTOVA ADVISORY — MAIN STYLESHEET
   Design System v1.0 | Production Ready
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Primary — Crestova Navy */
  --navy-900: #061A30;
  --navy-800: #0B2545;
  --navy-700: #10305A;
  --navy-600: #163D6F;
  --navy-500: #1C4A84;
  --navy-400: #3D6B9F;
  --navy-300: #6B93BC;
  --navy-200: #A5BED4;
  --navy-100: #D5E2EE;
  --navy-050: #EEF4F9;

  /* Accent — Signal Gold */
  --gold-900: #7A5C1E;
  --gold-800: #9C7526;
  --gold-700: #B5892E;
  --gold-600: #C6A15B;
  --gold-500: #D4B47A;
  --gold-400: #DEC799;
  --gold-300: #E8D9BB;
  --gold-200: #F1EAD6;
  --gold-100: #F8F4EA;

  /* Background — Warm Ivory */
  --ivory-100: #F7F5F0;
  --ivory-200: #EFECEA;
  --ivory-300: #E5E1DC;

  /* Emerald Confidence */
  --emerald-700: #145A40;
  --emerald-600: #1A7452;
  --emerald-500: #1F6F54;
  --emerald-100: #E8F4F0;

  /* Slate Ink */
  --slate-900: #1A2332;
  --slate-800: #1C2B3A;
  --slate-700: #2E3E52;
  --slate-600: #4A5C70;
  --slate-500: #6B7E94;
  --slate-400: #8A94A6;
  --slate-300: #B0B9C6;
  --slate-200: #D4D9E1;
  --slate-100: #ECEEF2;

  /* Semantic */
  --error: #B23A34;
  --error-bg: #FEF2F1;
  --warning: #C97B1A;
  --success: #1F6F54;
  --success-bg: #E8F4F0;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'General Sans', 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;
  --sp-32: 128px;

  /* Layout */
  --max-w: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(64px, 8vw, 96px);

  /* Radii */
  --r-sm: 2px; --r-md: 4px; --r-lg: 8px; --r-xl: 12px; --r-full: 9999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(6,26,48,.06);
  --sh-sm: 0 1px 4px rgba(6,26,48,.08);
  --sh-md: 0 4px 16px rgba(6,26,48,.10);
  --sh-lg: 0 8px 32px rgba(6,26,48,.12);
  --sh-xl: 0 16px 48px rgba(6,26,48,.16);
  --sh-gold: 0 4px 20px rgba(198,161,91,.32);

  /* Easing */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* Nav height */
  --nav-h: 80px;
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ivory-100);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.display-2xl {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.625rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-600);
  flex-shrink: 0;
}

.body-xl { font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.65; }
.body-lg { font-size: clamp(.9375rem, 1.2vw, 1.125rem); line-height: 1.65; }
.body-md { font-size: 1rem; line-height: 1.6; }
.body-sm { font-size: .875rem; line-height: 1.55; }
.body-xs { font-size: .75rem; font-weight: 500; line-height: 1.5; }

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow {
  max-width: 880px;
}

.section {
  padding: var(--section-y) 0;
}
.section--dark {
  background: var(--navy-800);
  color: var(--ivory-100);
}
.section--deeper {
  background: var(--navy-900);
  color: var(--ivory-100);
}
.section--gold-tint {
  background: var(--gold-100);
}

.grid {
  display: grid;
  gap: var(--sp-8);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  transition: background var(--ease) 150ms,
              transform var(--ease) 150ms,
              box-shadow var(--ease) 150ms,
              color var(--ease) 150ms,
              border-color var(--ease) 150ms;
  white-space: nowrap;
  cursor: pointer;
}

/* Sizes */
.btn--lg  { font-size: 1rem;     padding: 0 28px; height: 52px; }
.btn--md  { font-size: .9375rem; padding: 0 24px; height: 44px; }
.btn--sm  { font-size: .8125rem; padding: 0 18px; height: 36px; }

/* Primary — Gold fill */
.btn--primary {
  background: var(--gold-600);
  color: var(--navy-900);
  border: 2px solid transparent;
}
.btn--primary:hover {
  background: var(--gold-500);
  box-shadow: var(--sh-gold);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); box-shadow: none; }

/* Secondary — Outline gold */
.btn--secondary {
  background: transparent;
  color: var(--gold-600);
  border: 1.5px solid var(--gold-600);
}
.btn--secondary:hover {
  background: rgba(198,161,91,.08);
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: translateY(-1px);
}

/* On dark backgrounds */
.section--dark .btn--secondary,
.section--deeper .btn--secondary {
  color: var(--gold-400);
  border-color: var(--gold-400);
}
.section--dark .btn--secondary:hover,
.section--deeper .btn--secondary:hover {
  background: rgba(198,161,91,.12);
  color: var(--gold-300);
  border-color: var(--gold-300);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--navy-700);
  border: 1.5px solid var(--navy-300);
}
.btn--ghost:hover {
  background: var(--navy-050);
  border-color: var(--navy-500);
  color: var(--navy-800);
}

/* CTA icon */
.btn svg, .btn .btn-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform 200ms var(--ease); }
.btn:hover .btn-icon--right { transform: translateX(3px); }

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--navy-800);
  border-bottom: 1px solid rgba(198,161,91,.12);
  transition: box-shadow 200ms var(--ease);
}
.nav.is-scrolled {
  box-shadow: 0 2px 20px rgba(6,26,48,.18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-8);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark span {
  font-family: var(--font-display);
  color: var(--gold-600);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.nav__logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav__logo-name {
  color: var(--ivory-100);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.nav__logo-sub {
  color: var(--gold-600);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Primary links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--navy-200);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color 200ms var(--ease), background 200ms var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--ivory-100); }
.nav__link.is-active {
  color: var(--gold-500);
}
.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: var(--sp-3);
  right: var(--sp-3);
  height: 2px;
  background: var(--gold-500);
  border-radius: var(--r-full);
}

/* Nav utilities */
.nav__utils {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.nav__portal {
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy-300);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 150ms var(--ease);
}
.nav__portal:hover { color: var(--ivory-100); }
.nav__portal svg { width: 14px; height: 14px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-md);
  transition: background 150ms var(--ease);
}
.nav__hamburger:hover { background: rgba(255,255,255,.08); }
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--ivory-100);
  border-radius: var(--r-full);
  transition: transform 300ms var(--ease), opacity 200ms var(--ease);
}

/* Hamburger open state */
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-900);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 300ms var(--ease-out);
}
.nav__drawer.is-open { transform: translateX(0); }

.nav__drawer-links {
  padding: var(--sp-6) 0;
}
.nav__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--pad-x);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ivory-100);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.nav__drawer-link:hover {
  background: rgba(255,255,255,.04);
  color: var(--gold-400);
}
.nav__drawer-link svg { width: 18px; height: 18px; color: var(--gold-500); }

.nav__drawer-cta {
  padding: var(--sp-6) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
}

/* Subtle geometric grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,161,91,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,161,91,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Abstract radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(198,161,91,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero__content { max-width: 640px; }

.hero__eyebrow {
  margin-bottom: var(--sp-6);
  color: var(--gold-500);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold-600);
  display: block;
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--ivory-100);
  margin-bottom: var(--sp-6);
}
.hero__headline em {
  font-style: normal;
  color: var(--gold-500);
}

.hero__subheadline {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  color: var(--navy-200);
  margin-bottom: var(--sp-10);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .75rem;
  font-weight: 500;
  color: var(--navy-300);
  letter-spacing: 0.02em;
}
.hero__trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-600);
  flex-shrink: 0;
}

/* Hero visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__card-stack {
  position: relative;
  width: 380px;
  max-width: 100%;
}

/* Floating stat cards */
.hero__stat-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198,161,91,.2);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
}
.hero__stat-card--primary {
  width: 100%;
  margin-bottom: var(--sp-4);
}
.hero__stat-card--accent {
  width: 80%;
  margin-left: auto;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.hero__stat-label {
  font-size: .8125rem;
  color: var(--navy-200);
  font-weight: 500;
}
.hero__stat-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-500);
  flex-shrink: 0;
}
.hero__stat-meta span {
  font-size: .75rem;
  color: var(--navy-300);
}

/* ============================================================
   8. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-900);
  border-top: 1px solid rgba(198,161,91,.1);
  border-bottom: 1px solid rgba(198,161,91,.1);
  padding: var(--sp-6) 0;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--navy-200);
  letter-spacing: 0.03em;
}
.trust-bar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-600);
  flex-shrink: 0;
}
.trust-bar__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* Platform badges row */
.trust-bar__platforms {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
  justify-content: center;
}
.trust-bar__platform {
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 150ms var(--ease);
}
.trust-bar__platform:hover { color: var(--navy-200); }

/* ============================================================
   9. SECTION HEADERS (REUSABLE)
   ============================================================ */
.section-header {
  margin-bottom: var(--sp-12);
}
.section-header--center {
  text-align: center;
}
.section-header--center .eyebrow {
  justify-content: center;
}
.section-header--center .eyebrow::before {
  display: none;
}

.section-header .eyebrow { margin-bottom: var(--sp-3); }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p {
  font-size: clamp(.9375rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--slate-600);
  max-width: 640px;
}
.section--dark .section-header p,
.section--deeper .section-header p { color: var(--navy-200); }
.section--dark .section-header h2,
.section--deeper .section-header h2 { color: var(--ivory-100); }
.section-header--center p { margin: 0 auto; }

/* ============================================================
   10. POSITIONING SECTION
   ============================================================ */
.positioning__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.positioning__column h2 {
  margin-bottom: var(--sp-6);
}
.positioning__column p {
  font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: var(--sp-5);
}
.positioning__pullquote {
  border-left: 3px solid var(--gold-600);
  padding-left: var(--sp-6);
  margin: var(--sp-8) 0;
}
.positioning__pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-700) !important;
  line-height: 1.4;
}
.positioning__compare {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.positioning__compare-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--ivory-200);
  border-radius: var(--r-lg);
  border: 1px solid var(--ivory-300);
}
.positioning__compare-item--active {
  background: var(--navy-050);
  border-color: var(--gold-300);
}
.positioning__compare-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.positioning__compare-icon--good {
  background: var(--emerald-100);
  color: var(--emerald-600);
}
.positioning__compare-icon--bad {
  background: var(--error-bg);
  color: var(--error);
}
.positioning__compare-icon svg { width: 18px; height: 18px; }
.positioning__compare-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: var(--sp-1);
}
.positioning__compare-desc {
  font-size: .8125rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* ============================================================
   11. SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--ivory-100);
  border: 1px solid var(--ivory-300);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
  transition: box-shadow var(--ease) 250ms,
              transform var(--ease) 250ms,
              border-color var(--ease) 250ms;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-out);
}
.service-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: var(--gold-300);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--gold-100);
  border: 1.5px solid var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--gold-700);
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--gold-200);
  border-color: var(--gold-500);
}
.service-card__icon svg { width: 22px; height: 22px; }

.service-card__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--sp-2);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--navy-800);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.service-card__desc {
  font-size: .875rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: var(--sp-5);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.service-card__tag {
  background: var(--navy-050);
  color: var(--navy-600);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.service-card__link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy-600);
  transition: color 150ms var(--ease);
  margin-top: auto;
}
.service-card__link svg { width: 15px; height: 15px; color: var(--gold-600); transition: transform 200ms var(--ease); }
.service-card:hover .service-card__link { color: var(--navy-800); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ============================================================
   12. WHY CRESTOVA
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.why-item {
  padding: var(--sp-10) var(--sp-8);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.02);
  transition: background 250ms var(--ease), border-color 250ms var(--ease);
  position: relative;
}
.why-item:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(198,161,91,.2);
}
.why-item__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(198,161,91,.12);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  line-height: 1;
  user-select: none;
}
.why-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: rgba(198,161,91,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--gold-500);
  transition: background 250ms var(--ease);
}
.why-item:hover .why-item__icon { background: rgba(198,161,91,.2); }
.why-item__icon svg { width: 24px; height: 24px; }
.why-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 400;
  color: var(--ivory-100);
  margin-bottom: var(--sp-4);
}
.why-item__desc {
  font-size: .9375rem;
  color: var(--navy-200);
  line-height: 1.65;
}
.why-item__proof {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.02em;
}
.why-item__proof svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   13. INDUSTRIES
   ============================================================ */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: var(--sp-4);
}

.industry-tile {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--navy-700);
}
/* Make first tile span 2 columns for visual hierarchy */
.industry-tile:first-child {
  grid-column: span 1;
}

.industry-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 400ms var(--ease);
}
.industry-tile:hover .industry-tile__bg { transform: scale(1.05); }

/* Gradient overlays for different industries */
.industry-tile:nth-child(1) .industry-tile__bg { background-color: #0D2F4A; }
.industry-tile:nth-child(2) .industry-tile__bg { background-color: #123040; }
.industry-tile:nth-child(3) .industry-tile__bg { background-color: #0F2D3A; }
.industry-tile:nth-child(4) .industry-tile__bg { background-color: #1A2F1E; }
.industry-tile:nth-child(5) .industry-tile__bg { background-color: #1E2B3C; }
.industry-tile:nth-child(6) .industry-tile__bg { background-color: #2A1F3A; }

.industry-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,26,48,0) 20%, rgba(6,26,48,.85) 100%);
}

.industry-tile__icon-wrap {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 44px;
  height: 44px;
  background: rgba(198,161,91,.15);
  border: 1px solid rgba(198,161,91,.3);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  backdrop-filter: blur(8px);
  transition: background 250ms var(--ease);
}
.industry-tile:hover .industry-tile__icon-wrap { background: rgba(198,161,91,.25); }
.industry-tile__icon-wrap svg { width: 22px; height: 22px; }

.industry-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-5) var(--sp-6);
  transform: translateY(0);
  transition: transform 300ms var(--ease);
}
.industry-tile__name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 400;
  color: var(--ivory-100);
  margin-bottom: var(--sp-1);
}
.industry-tile__hook {
  font-size: .8125rem;
  color: var(--navy-200);
  line-height: 1.4;
  margin-bottom: var(--sp-3);
}
.industry-tile__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: color 150ms var(--ease);
}
.industry-tile__cta svg { width: 14px; height: 14px; transition: transform 200ms var(--ease); }
.industry-tile:hover .industry-tile__cta { color: var(--gold-300); }
.industry-tile:hover .industry-tile__cta svg { transform: translateX(3px); }

/* Bottom border accent */
.industry-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-out);
}
.industry-tile:hover::after { transform: scaleX(1); }

/* ============================================================
   14. MARKETS
   ============================================================ */
.markets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.market-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  background: rgba(255,255,255,.02);
  transition: background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-decoration: none;
}
.market-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(198,161,91,.25);
  transform: translateY(-2px);
}
.market-card__flag { font-size: 2rem; line-height: 1; }
.market-card__country {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory-100);
}
.market-card__framework {
  font-size: .75rem;
  color: var(--navy-300);
  line-height: 1.5;
}
.market-card__link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-500);
  margin-top: auto;
}
.market-card__link svg { width: 13px; height: 13px; transition: transform 200ms var(--ease); }
.market-card:hover .market-card__link svg { transform: translateX(3px); }

/* ============================================================
   15. STATS
   ============================================================ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: rgba(255,255,255,.02);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  transition: background 250ms var(--ease);
}
.stat:hover { background: rgba(255,255,255,.04); }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.03em;
}
.stat__label {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ivory-100);
  margin-bottom: var(--sp-2);
}
.stat__desc {
  font-size: .8125rem;
  color: var(--navy-300);
  line-height: 1.5;
}

/* ============================================================
   16. PROCESS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}
/* Connecting line */
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--gold-300);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step__number-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ivory-100);
  border: 2px solid var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-700);
  position: relative;
  z-index: 1;
  transition: background 250ms var(--ease), border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.process-step:hover .process-step__number {
  background: var(--navy-800);
  border-color: var(--gold-600);
  color: var(--gold-400);
  box-shadow: var(--sh-gold);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--navy-800);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.process-step__desc {
  font-size: .875rem;
  color: var(--slate-600);
  line-height: 1.6;
}
.process-step__reassurance {
  display: inline-block;
  margin-top: var(--sp-3);
  font-size: .75rem;
  font-weight: 600;
  color: var(--emerald-600);
  background: var(--emerald-100);
  padding: 2px 10px;
  border-radius: var(--r-full);
}

/* ============================================================
   17. TESTIMONIALS
   ============================================================ */
.testimonials__slider {
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  transition: transform 400ms var(--ease-out);
}
.testimonials__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: var(--ivory-100);
  border: 1px solid var(--ivory-300);
  border-left: 4px solid var(--gold-600);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: var(--sp-8);
  position: relative;
  transition: box-shadow 250ms var(--ease), transform 250ms var(--ease);
}
.testimonial-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-200);
  position: absolute;
  top: 8px;
  right: var(--sp-6);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.testimonial-card__stars {
  display: flex;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}
.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold-600);
  fill: var(--gold-600);
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
  font-style: italic;
  font-weight: 400;
  color: var(--slate-800);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}
.testimonial-card__divider {
  height: 1px;
  background: var(--ivory-300);
  margin-bottom: var(--sp-5);
}
.testimonial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-card__author {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 2px;
}
.testimonial-card__role {
  font-size: .8125rem;
  color: var(--slate-500);
}
.testimonial-card__badge {
  font-size: 9px;
  font-weight: 600;
  color: var(--gold-700);
  background: var(--navy-800);
  padding: 3px 8px;
  border-radius: var(--r-sm);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Slider controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.testimonials__prev,
.testimonials__next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-300);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: border-color 150ms var(--ease), background 150ms var(--ease), color 150ms var(--ease);
}
.testimonials__prev:hover,
.testimonials__next:hover {
  border-color: var(--gold-600);
  background: var(--gold-100);
  color: var(--gold-700);
}
.testimonials__prev svg,
.testimonials__next svg { width: 18px; height: 18px; }

.testimonials__dots {
  display: flex;
  gap: var(--sp-2);
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-300);
  border: none;
  transition: background 150ms var(--ease), transform 150ms var(--ease);
}
.testimonials__dot.is-active {
  background: var(--gold-600);
  transform: scale(1.25);
}

/* ============================================================
   18. INSIGHTS
   ============================================================ */
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.insight-card {
  border: 1px solid var(--ivory-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ivory-100);
  transition: box-shadow 250ms var(--ease), transform 250ms var(--ease);
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}

.insight-card__image {
  height: 180px;
  background: var(--navy-700);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-card:nth-child(1) .insight-card__image { background: var(--navy-800); }
.insight-card:nth-child(2) .insight-card__image { background: #145A40; }
.insight-card:nth-child(3) .insight-card__image { background: var(--navy-700); }

.insight-card__image-icon {
  opacity: .25;
  color: var(--gold-400);
}
.insight-card__image-icon svg { width: 64px; height: 64px; }

.insight-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.insight-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-4);
  width: fit-content;
}
.insight-card__tag--compliance { background: var(--navy-800); color: var(--ivory-100); }
.insight-card__tag--industry   { background: var(--gold-600); color: var(--navy-900); }
.insight-card__tag--founder    { background: var(--emerald-600); color: var(--ivory-100); }

.insight-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 400;
  color: var(--navy-800);
  margin-bottom: var(--sp-3);
  line-height: 1.35;
  flex: 1;
}
.insight-card:hover .insight-card__title { color: var(--navy-600); }

.insight-card__excerpt {
  font-size: .875rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: var(--sp-5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--ivory-300);
}
.insight-card__author {
  font-size: .75rem;
  color: var(--slate-500);
}
.insight-card__read {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy-600);
  transition: color 150ms var(--ease);
}
.insight-card__read svg { width: 13px; height: 13px; color: var(--gold-600); transition: transform 200ms var(--ease); }
.insight-card:hover .insight-card__read { color: var(--navy-800); }
.insight-card:hover .insight-card__read svg { transform: translateX(3px); }

/* ============================================================
   19. FAQ
   ============================================================ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--ivory-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ivory-100);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.faq-item.is-open {
  border-color: var(--gold-300);
  box-shadow: var(--sh-sm);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8);
  background: transparent;
  text-align: left;
  gap: var(--sp-4);
  transition: background 150ms var(--ease);
}
.faq-item__trigger:hover { background: var(--ivory-200); }
.faq-item.is-open .faq-item__trigger { background: var(--ivory-200); }

.faq-item__question {
  font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.4;
}
.faq-item.is-open .faq-item__question { color: var(--navy-600); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  flex-shrink: 0;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), transform 300ms var(--ease);
}
.faq-item.is-open .faq-item__icon {
  background: var(--gold-100);
  border-color: var(--gold-400);
  color: var(--gold-700);
  transform: rotate(45deg);
}
.faq-item__icon svg { width: 16px; height: 16px; }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out);
}
.faq-item.is-open .faq-item__answer { max-height: 500px; }

.faq-item__answer-inner {
  padding: 0 var(--sp-8) var(--sp-6);
  font-size: .9375rem;
  color: var(--slate-600);
  line-height: 1.7;
  border-top: 1px solid var(--ivory-300);
  padding-top: var(--sp-5);
  margin-top: 0;
}

/* ============================================================
   20. CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,161,91,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,161,91,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.cta-section__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--ivory-100);
  margin-bottom: var(--sp-4);
}
.cta-section__content p {
  font-size: 1rem;
  color: var(--navy-200);
  line-height: 1.65;
  margin-bottom: var(--sp-8);
}
.cta-section__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .75rem;
  color: var(--navy-300);
}
.cta-section__trust svg { width: 14px; height: 14px; color: var(--gold-600); flex-shrink: 0; }

/* Contact form */
.cta-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(8px);
}
.cta-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy-200);
}
.form-label .required { color: var(--error); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  height: 48px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  color: var(--ivory-100);
  font-family: var(--font-body);
  font-size: .9375rem;
  padding: 0 var(--sp-4);
  transition: border-color 150ms var(--ease), background 150ms var(--ease), box-shadow 150ms var(--ease);
}
.form-textarea {
  height: 110px;
  padding: var(--sp-3) var(--sp-4);
  resize: vertical;
  line-height: 1.6;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(198,161,91,.15);
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A94A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: var(--navy-800); color: var(--ivory-100); }
.cta-form__submit {
  width: 100%;
  margin-top: var(--sp-2);
}
.cta-form__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: .75rem;
  color: var(--navy-400);
  text-align: center;
  justify-content: center;
}
.cta-form__footer svg { width: 13px; height: 13px; color: var(--gold-600); flex-shrink: 0; }

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  padding: var(--sp-20) 0 0;
  border-top: 1px solid rgba(198,161,91,.1);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1.5fr 1.5fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-16);
}

.footer__brand .nav__logo { margin-bottom: var(--sp-4); }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-400);
  margin-bottom: var(--sp-5);
  line-height: 1.4;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.footer__badge {
  font-size: .6875rem;
  font-weight: 600;
  color: var(--navy-400);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.footer__social {
  display: flex;
  gap: var(--sp-3);
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-300);
  transition: border-color 150ms var(--ease), color 150ms var(--ease), background 150ms var(--ease);
}
.footer__social-link:hover {
  border-color: var(--gold-600);
  color: var(--gold-500);
  background: rgba(198,161,91,.08);
}
.footer__social-link svg { width: 16px; height: 16px; }

.footer__col-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(198,161,91,.2);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer__link {
  font-size: .875rem;
  color: var(--navy-300);
  transition: color 150ms var(--ease), padding-left 150ms var(--ease);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 2px 0;
}
.footer__link:hover {
  color: var(--ivory-100);
  padding-left: 4px;
}

.footer__newsletter { margin-top: var(--sp-6); }
.footer__newsletter p {
  font-size: .8125rem;
  color: var(--navy-300);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
}
.footer__newsletter-form {
  display: flex;
  gap: var(--sp-2);
}
.footer__newsletter-input {
  flex: 1;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  color: var(--ivory-100);
  font-family: var(--font-body);
  font-size: .8125rem;
  padding: 0 var(--sp-3);
  transition: border-color 150ms var(--ease);
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,.25); }
.footer__newsletter-input:focus { outline: none; border-color: var(--gold-600); }
.footer__newsletter-btn {
  height: 40px;
  padding: 0 var(--sp-5);
  background: var(--gold-600);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background 150ms var(--ease), transform 150ms var(--ease);
  white-space: nowrap;
}
.footer__newsletter-btn:hover {
  background: var(--gold-500);
  transform: translateY(-1px);
}

.footer__base {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer__copyright {
  font-size: .8125rem;
  color: var(--slate-500);
}
.footer__legal {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: .8125rem;
  color: var(--slate-500);
  transition: color 150ms var(--ease);
}
.footer__legal a:hover { color: var(--navy-200); }

/* ============================================================
   22. MOBILE STICKY CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: var(--sp-3) var(--pad-x);
  background: rgba(11,37,69,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(198,161,91,.2);
  transform: translateY(100%);
  transition: transform 300ms var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ============================================================
   23. UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.text-gold { color: var(--gold-600); }
.text-ivory { color: var(--ivory-100); }
.text-muted { color: var(--slate-500); }

/* ============================================================
   24. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .markets__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-rows: repeat(3, 220px); }
  .nav__links { display: none; }
  .nav__portal { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   25. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: var(--sp-16) 0;
    text-align: center;
  }
  .hero__visual { display: none; }
  .hero__content { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__eyebrow::before { display: none; }

  .trust-bar__platforms { display: none; }

  .positioning__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .services__grid { grid-template-columns: 1fr; }
  .industries__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
  .markets__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .testimonials__slide { grid-template-columns: 1fr; }
  .insights__grid { grid-template-columns: 1fr; }
  .cta-section__inner { grid-template-columns: 1fr; }
  .cta-form__grid { grid-template-columns: 1fr; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__base { flex-direction: column; align-items: flex-start; }

  .sticky-cta { display: block; }

  .trust-bar__inner { gap: var(--sp-5); }
  .trust-bar__divider { display: none; }

  .section-header h2 { font-size: 1.625rem; }
}

@media (max-width: 480px) {
  .markets__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .btn--lg { width: 100%; }
}
