/* ============================================================
   TRIAD EVOLUTION — Design System v3
   style.css — Complete rewrite with full audit fixes applied
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════
   DESIGN TOKENS — edit brand here only
══════════════════════════════════════════ */
:root {
  /* Brand colours */
  --navy-deep:    #0D1F33;
  --navy-brand:   #1B3A5C;
  --navy-mid:     #2E6DA4;
  --navy-light:   #3A7BBF;
  --gold:         #C8A951;
  --gold-light:   #E8D49A;
  --gold-dim:     rgba(200,169,81,0.12);
  --gold-border:  rgba(200,169,81,0.3);
  --blue-light:   #D5E8F4;
  --off-white:    #F4F6F9;
  --white:        #FFFFFF;

  /* Text — FIX: all opacity values raised for readability */
  --text-primary:  rgba(255,255,255,0.95);
  --text-body:     rgba(255,255,255,0.88);
  --text-muted:    rgba(255,255,255,0.60);
  --text-subtle:   rgba(255,255,255,0.42);
  --text-dark:     #1A1A2E;
  --text-dark-mid: rgba(27,58,92,0.80);

  /* Surfaces */
  --surface-card:  rgba(27,58,92,0.55);
  --surface-deep:  rgba(13,31,51,0.70);
  --border-dark:   rgba(255,255,255,0.09);
  --border-light:  rgba(0,0,0,0.08);
  --border-gold:   rgba(200,169,81,0.28);

  /* Shadows */
  --shadow-card:   0 4px 28px rgba(0,0,0,0.28);
  --shadow-lift:   0 14px 48px rgba(0,0,0,0.38);
  --shadow-gold:   0 0 48px rgba(200,169,81,0.10);

  /* FIX: Typography scale — raised across the board */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-brand:   'Barlow Condensed', Arial, sans-serif;
  --font-body:    'Barlow', Arial, sans-serif;

  /* Type scale */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 16px;   /* FIX: was 14-15px, now 16px minimum */
  --text-md:   18px;
  --text-lg:   22px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  46px;
  --text-4xl:  58px;

  /* Spacing */
  --section-pad:  100px 0;
  --container:    1200px;
  --radius:       6px;
  --radius-lg:    12px;
  --radius-xl:    18px;

  /* FIX: Header height raised */
  --header-h: 84px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── NOISE TEXTURE OVERLAY (FIX: depth on dark sections) ── */
.noise-overlay { position: relative; }
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 0;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── TYPOGRAPHY UTILITIES ── */
/* FIX: Overline letter-spacing reduced for legibility */
.overline {
  font-family: var(--font-brand);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
/* FIX: Section titles — Cormorant only at H1/H2, weight 400 not 300 */
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-title.dark { color: var(--navy-deep); }
.section-title.dark span { color: var(--navy-mid); font-style: italic; }

/* FIX: Body sub — raised to 17px */
.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 580px;
}
.section-sub.dark { color: var(--text-dark-mid); }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.gold-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.section-header.centered .gold-rule { margin: 0 auto 28px; }

/* ── BUTTONS — FIX: larger, bolder, clearer ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;        /* FIX: was 12-13px */
  font-weight: 600;       /* FIX: was 500 */
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,81,0.32);
}
.btn-outline {
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn-dark {
  background: var(--navy-deep);
  color: var(--gold);
  border: 1.5px solid rgba(200,169,81,0.25);
}
.btn-dark:hover {
  background: var(--navy-brand);
  border-color: var(--gold-border);
  transform: translateY(-2px);
}
.btn-xl {
  font-size: 15px;
  padding: 18px 36px;
}
.btn svg { transition: transform 0.2s ease; flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-brand);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  background: var(--gold-dim);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   HEADER — FIX: 84px height, 54px logo
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.32s ease, box-shadow 0.32s ease, backdrop-filter 0.32s ease, border-color 0.32s ease;
  border-bottom: 1px solid transparent;
}
/* FIX: Always show header bg on light-section pages */
.site-header.scrolled,
.light-page .site-header {
  background: rgba(27,58,92,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.28);
  border-bottom-color: rgba(200,169,81,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}
/* FIX: Logo mark size raised to 54px */
.logo-mark svg { width: 54px; height: 54px; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--gold);
  line-height: 1;
}
.logo-desc {
  font-family: var(--font-brand);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
/* FIX: Nav link size raised to 14px */
.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.82);
  padding: 8px 15px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 15px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 30px); }
.nav-link.active { color: var(--gold); }
.nav-cta { margin-left: 10px; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,24,42,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; }
.mobile-nav .nav-link {
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  padding: 14px 24px;
}
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .btn { margin-top: 24px; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy-deep);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 80px,
    rgba(200,169,81,0.022) 80px, rgba(200,169,81,0.022) 81px
  );
}
.page-hero-inner { position: relative; z-index: 1; }
/* FIX: Page hero H1 raised */
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text-primary);
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  max-width: 640px;
  line-height: 1.75;
}
.page-hero-rule { width: 60px; height: 2px; background: var(--gold); margin: 28px 0; }

/* ══════════════════════════════════════════
   HOMEPAGE HERO — FIX: Conversion-focused
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg-geo {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
/* FIX: Geometric illustration using logo polygon language */
.hero-bg-geo svg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 56%;
  opacity: 0.04;
}
.hero-bg-stripe {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 100px,
    rgba(200,169,81,0.022) 100px, rgba(200,169,81,0.022) 101px
  );
}
.hero-glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,109,164,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
  width: 100%;
}
/* FIX: Conversion-focused hero — primary action dominant */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
/* FIX: Value prop line — fast-read answer to "what do you do" */
.hero-value-prop {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 42px;
}
/* FIX: Primary CTA dominant, secondary visually subordinate */
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 42px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary { font-size: 15px; padding: 16px 32px; }
.hero-ctas .btn-outline { opacity: 0.80; }
.hero-ctas .btn-outline:hover { opacity: 1; }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.hero-mark-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px; height: 220px;
}
/* FIX: Micro-animation on logo hover */
.hero-mark-wrap svg {
  position: relative; z-index: 1;
  transition: filter 0.4s ease;
}
.hero-mark-wrap:hover svg { filter: drop-shadow(0 0 18px rgba(200,169,81,0.35)); }
.hero-mark-glow {
  position: absolute; inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.09) 0%, transparent 70%);
  transition: opacity 0.4s ease;
}
.hero-mark-wrap:hover .hero-mark-glow { opacity: 1.5; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.stat-card {
  background: var(--surface-card);
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,169,81,0.5);
  background: rgba(27,58,92,0.75);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
/* FIX: Stat label raised for readability */
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ══════════════════════════════════════════
   SOCIAL PROOF STRIP
══════════════════════════════════════════ */
.proof-strip {
  background: var(--navy-brand);
  border-top: 1px solid rgba(200,169,81,0.15);
  border-bottom: 1px solid rgba(200,169,81,0.15);
  padding: 18px 0;
  overflow: hidden;
}
.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 28px;
  border-right: 1px solid rgba(200,169,81,0.18);
  white-space: nowrap;
}
.proof-item:last-child { border-right: none; }
.proof-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
/* FIX: Proof strip text raised */
.proof-item span {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   SERVICES OVERVIEW CARDS
══════════════════════════════════════════ */
.services-overview {
  padding: var(--section-pad);
  background: var(--off-white);
}
.pillar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 3px solid var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(27,58,92,0.14);
  border-top-color: var(--gold);
}
.pillar-card.featured { border-top-color: var(--gold); }
.pillar-icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--navy-mid); }
.pillar-card.featured .pillar-icon { color: var(--gold); }
.pillar-num {
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--navy-mid);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pillar-card.featured .pillar-num { color: var(--gold); }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
/* FIX: Card body text raised */
.pillar-card p { font-size: 15px; color: rgba(27,58,92,0.72); line-height: 1.68; margin-bottom: 26px; }
.card-link {
  font-size: 13px; font-weight: 600;
  color: var(--navy-mid);
  letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.pillar-card.featured .card-link { color: var(--gold); }
.pillar-card:hover .card-link { gap: 10px; }

/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-section { padding: var(--section-pad); background: var(--navy-brand); }
.why-grid {
  display: flex; flex-direction: column; gap: 0;
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 0.5px solid var(--border-dark);
  transition: background 0.22s ease;
}
.why-row:last-child { border-bottom: none; }
.why-row:hover { background: rgba(255,255,255,0.03); }
.why-row:nth-child(even) { background: rgba(13,31,51,0.42); }
.why-row:nth-child(even):hover { background: rgba(13,31,51,0.62); }
.why-label {
  padding: 28px 32px;
  border-right: 0.5px solid var(--border-dark);
  display: flex; align-items: center; gap: 14px;
}
.why-label-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
/* FIX: Why label text raised */
.why-label span {
  font-family: var(--font-brand);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.8px; color: var(--gold);
  text-transform: uppercase;
}
/* FIX: Why desc raised */
.why-desc {
  padding: 28px 38px;
  font-size: 15px; font-weight: 400;
  color: var(--text-body);
  line-height: 1.72;
  display: flex; align-items: center;
}

/* ══════════════════════════════════════════
   OUTCOME METRICS (FIX: new section)
══════════════════════════════════════════ */
.metrics-section {
  padding: 80px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.metric-cell {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
  transition: background 0.22s ease;
}
.metric-cell:last-child { border-right: none; }
.metric-cell:hover { background: rgba(27,58,92,0.35); }
.metric-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}
.metric-desc {
  font-size: 11px;
  color: var(--text-subtle);
  margin-top: 4px;
  font-style: italic;
}

/* ══════════════════════════════════════════
   GLOBAL REACH SECTION
══════════════════════════════════════════ */
.global-section {
  padding: var(--section-pad);
  background: var(--navy-deep);
  position: relative; overflow: hidden;
}
/* FIX: Replace map with premium region cards */
.region-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.region-card {
  background: var(--surface-card);
  border: 0.5px solid var(--border-dark);
  border-left: 3px solid var(--navy-mid);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.25s ease, border-left-color 0.25s ease, background 0.25s ease;
}
.region-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--gold);
  background: rgba(27,58,92,0.75);
}
.region-name {
  font-family: var(--font-brand);
  font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 12px;
}
/* FIX: Region desc raised */
.region-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════ */
.industries-section { padding: var(--section-pad); background: var(--off-white); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.industry-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(27,58,92,0.11);
}
.industry-icon { width: 40px; height: 40px; color: var(--navy-mid); margin-bottom: 20px; }
.industry-card h4 {
  font-family: var(--font-brand);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; color: var(--navy-deep);
  text-transform: uppercase; margin-bottom: 12px;
}
/* FIX: Industry card text raised */
.industry-card p { font-size: 14px; color: rgba(27,58,92,0.68); line-height: 1.65; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: var(--gold);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%; background: rgba(27,58,92,0.1);
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%; background: rgba(27,58,92,0.08);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  color: var(--navy-deep); line-height: 1.2; margin-bottom: 12px;
}
.cta-text p { font-size: 16px; color: rgba(13,31,51,0.78); font-weight: 300; }

/* ══════════════════════════════════════════
   TEAM SECTION (NEW V3)
══════════════════════════════════════════ */
.team-section { padding: var(--section-pad); background: var(--navy-deep); }
.founder-card {
  background: var(--surface-card);
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 60px;
}
.founder-avatar {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.avatar-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--navy-brand);
  border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.avatar-circle img {
  width: 100%; height: 100%; object-fit: cover;
}
.avatar-circle svg { width: 48px; height: 48px; color: var(--gold); opacity: 0.5; }
.avatar-name {
  font-family: var(--font-brand);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; color: var(--white);
  text-align: center;
  /* EDIT: Replace with founder name */
}
.founder-certs {
  display: flex; flex-direction: column; gap: 6px; width: 100%;
}
.cert-badge {
  font-size: 10px; font-weight: 600;
  font-family: var(--font-brand);
  letter-spacing: 0.8px;
  padding: 5px 10px; border-radius: 3px;
  background: var(--gold-dim);
  border: 0.5px solid var(--border-gold);
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
}
.founder-title {
  font-family: var(--font-brand);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
}
.founder-card h3 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 400;
  color: var(--text-primary); margin-bottom: 20px;
}
.founder-card > div > p {
  font-size: 16px; font-weight: 300;
  color: var(--text-body); line-height: 1.8;
  margin-bottom: 16px;
}
.founder-card > div > p:last-of-type { margin-bottom: 24px; }
.founder-skills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.skill-tag {
  font-size: 12px; padding: 5px 12px;
  border-radius: 3px;
  background: rgba(27,58,92,0.6);
  border: 0.5px solid var(--border-dark);
  color: var(--text-muted);
}

/* Team grid for supporting members */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.team-card {
  background: var(--surface-card);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}
.team-card.part-time {
  border-style: dashed;
  opacity: 0.88;
}
.team-avatar-sm {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy-brand);
  border: 1.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
}
.team-avatar-sm svg { width: 26px; height: 26px; color: var(--gold); opacity: 0.45; }
.team-avatar-sm img { width: 100%; height: 100%; object-fit: cover; }
.team-member-title {
  font-family: var(--font-brand);
  font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 6px;
}
.team-member-name {
  font-size: 14px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 10px;
  /* EDIT: Replace with team member names */
}
.team-member-bio {
  font-size: 12.5px; color: var(--text-muted);
  line-height: 1.55;
}
.part-time-label {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  font-family: var(--font-brand);
  letter-spacing: 1px;
  color: var(--text-subtle);
  border: 0.5px solid var(--border-dark);
  padding: 3px 8px; border-radius: 3px;
  margin-top: 8px; text-transform: uppercase;
}
.team-note {
  margin-top: 40px;
  padding: 22px 28px;
  background: rgba(200,169,81,0.06);
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius);
  font-size: 14px; color: var(--text-muted);
  font-style: italic; line-height: 1.65;
  text-align: center;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-overview { padding: var(--section-pad); background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-body p { font-size: 16px; color: rgba(27,58,92,0.78); line-height: 1.82; margin-bottom: 22px; }
.about-aside { display: flex; flex-direction: column; gap: 20px; }
.about-stat {
  background: var(--navy-brand);
  border-radius: var(--radius-lg); padding: 30px 32px;
  display: flex; align-items: center; gap: 22px;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 600;
  color: var(--gold); line-height: 1; flex-shrink: 0;
}
.about-stat-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.about-stat-text span { font-size: 13px; color: var(--text-muted); }

.vm-section { padding: var(--section-pad); background: var(--navy-brand); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vm-card {
  background: rgba(13,31,51,0.5);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 44px 40px;
  position: relative;
}
.vm-card::before {
  content: '"'; position: absolute;
  top: 24px; left: 32px;
  font-family: var(--font-display);
  font-size: 90px; color: var(--gold); opacity: 0.12;
  line-height: 1;
}
.vm-label {
  font-family: var(--font-brand);
  font-size: 9px; font-weight: 600;
  letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 22px;
}
/* FIX: VM card text raised — was 19px italic hairline on dark */
.vm-card p {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  font-style: italic; color: var(--text-primary);
  line-height: 1.68;
}

.credentials-section { padding: var(--section-pad); background: var(--off-white); }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 20px; }
.cred-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg); padding: 26px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cred-card:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(27,58,92,0.1); }
.cred-icon {
  width: 38px; height: 38px;
  background: var(--navy-brand); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 15px;
}
.cred-icon svg { width: 18px; height: 18px; color: var(--gold); }
.cred-card h4 {
  font-family: var(--font-brand);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.8px; color: var(--navy-deep);
  text-transform: uppercase; margin-bottom: 6px;
}
.cred-card p { font-size: 13px; color: rgba(27,58,92,0.62); line-height: 1.55; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-page { padding-top: var(--header-h); }
.services-nav-sticky {
  position: sticky; top: var(--header-h); z-index: 100;
  background: rgba(27,58,92,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.services-nav-inner { display: flex; gap: 0; overflow-x: auto; }
/* FIX: Service nav links raised */
.svc-nav-link {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); padding: 17px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.svc-nav-link:hover, .svc-nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.service-section { padding: 96px 0; border-bottom: 1px solid var(--border-dark); }
.service-section:nth-child(even) { background: rgba(13,31,51,0.42); }
.service-layout { display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: start; }
.service-num {
  font-family: var(--font-brand);
  font-size: 9px; font-weight: 600;
  letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
}
.service-main h2 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 400;
  color: var(--text-primary); line-height: 1.12; margin-bottom: 26px;
}
.service-main h2 em { color: var(--gold); font-style: italic; }
/* FIX: Service body text raised */
.service-main > p { font-size: 16px; font-weight: 300; color: var(--text-body); line-height: 1.78; margin-bottom: 18px; }
.capabilities-label {
  font-family: var(--font-brand);
  font-size: 9px; font-weight: 600; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase; margin: 34px 0 16px;
}
.capabilities-list { display: flex; flex-direction: column; gap: 11px; }
.cap-item {
  display: flex; align-items: flex-start; gap: 13px;
  font-size: 15px; color: var(--text-body); line-height: 1.5;
}
.cap-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}
.outcome-box {
  margin-top: 38px;
  background: var(--gold-dim);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px 26px;
}
.outcome-label {
  font-family: var(--font-brand);
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 9px;
}
.outcome-box p { font-size: 15px; font-style: italic; color: var(--text-body); line-height: 1.65; }
.service-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--surface-card);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 30px 28px;
}
.sidebar-card h4 {
  font-family: var(--font-brand);
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.consult-pricing {
  background: var(--surface-card);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 28px;
}
.consult-pricing h4 {
  font-family: var(--font-brand);
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 15px;
}
.consult-pricing p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }
.consult-pricing ul { display: flex; flex-direction: column; gap: 9px; }
.consult-pricing li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.45;
}
.consult-pricing li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}
.consult-price-note {
  margin-top: 16px; padding-top: 14px;
  border-top: 0.5px solid var(--border-dark);
  font-size: 12.5px; color: var(--text-muted);
  font-style: italic; line-height: 1.65;
}
.services-intro-note {
  background: var(--gold-dim);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 26px;
  font-size: 15px; color: var(--text-body);
  font-style: italic; line-height: 1.68;
}
.local-rep-highlight {
  background: var(--gold-dim);
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 34px 32px; margin-top: 34px;
}
.local-rep-highlight h4 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600; color: var(--white); margin-bottom: 20px;
}
.check-list { display: flex; flex-direction: column; gap: 13px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-body); line-height: 1.5; }
.check-icon {
  width: 18px; height: 18px; border-radius: 3px;
  background: var(--gold-dim); border: 0.5px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-icon svg { width: 10px; height: 10px; color: var(--gold); }

/* ══════════════════════════════════════════
   INDUSTRIES PAGE
══════════════════════════════════════════ */
.industries-page-section { padding: var(--section-pad); background: var(--navy-brand); }
.industry-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.industry-full-card {
  background: rgba(13,31,51,0.5);
  border: 0.5px solid var(--border-dark);
  border-left: 3px solid var(--navy-mid);
  border-radius: var(--radius-lg); padding: 38px 34px;
  transition: border-left-color 0.25s ease, transform 0.25s ease;
}
.industry-full-card:hover { border-left-color: var(--gold); transform: translateX(4px); }
.industry-full-card h3 {
  font-family: var(--font-brand);
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 15px;
}
.industry-full-card > p { font-size: 15px; color: var(--text-body); line-height: 1.72; margin-bottom: 20px; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.industry-tag {
  font-size: 11px; padding: 4px 11px; border-radius: 3px;
  background: var(--gold-dim); border: 0.5px solid var(--border-gold);
  color: rgba(200,169,81,0.9);
}

/* ══════════════════════════════════════════
   GLOBAL REACH PAGE
══════════════════════════════════════════ */
.global-page { background: var(--navy-brand); padding: var(--section-pad); }
.global-regions-full { display: flex; flex-direction: column; gap: 24px; }
.region-full-card {
  background: rgba(13,31,51,0.5);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 44px 48px;
  display: grid; grid-template-columns: 200px 1fr;
  gap: 52px; align-items: start;
  transition: border-color 0.25s ease;
}
.region-full-card:hover { border-color: rgba(200,169,81,0.22); }
.region-full-name {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 400; color: var(--white); margin-bottom: 8px;
}
.region-full-label {
  font-family: var(--font-brand);
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
}
.region-full-divider { width: 40px; height: 1px; background: var(--gold); margin: 16px 0; }
.region-full-desc { font-size: 15px; color: var(--text-body); line-height: 1.78; margin-bottom: 22px; }
.region-categories { display: flex; flex-wrap: wrap; gap: 8px; }
.region-cat {
  font-size: 12px; padding: 5px 13px; border-radius: 3px;
  background: var(--gold-dim); border: 0.5px solid var(--border-gold);
  color: rgba(200,169,81,0.88);
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-section {
  padding: 138px 0 100px;
  background: var(--navy-brand); min-height: 100vh;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: start; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 400; color: var(--white); line-height: 1.18; margin-bottom: 22px;
}
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info > p { font-size: 16px; font-weight: 300; color: var(--text-body); line-height: 1.75; margin-bottom: 42px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 50px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--gold-dim);
  border: 0.5px solid var(--border-gold); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-detail-text strong {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px;
}
.contact-detail-text span { font-size: 15px; color: var(--text-body); }
.scoping-steps {
  display: flex; flex-direction: column; gap: 0;
  border: 0.5px solid var(--border-dark); border-radius: var(--radius-lg); overflow: hidden;
}
.scoping-step {
  display: grid; grid-template-columns: 58px 1fr;
  align-items: center; border-bottom: 0.5px solid var(--border-dark);
}
.scoping-step:last-child { border-bottom: none; }
.step-num {
  background: var(--navy-deep); height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--gold);
}
.step-content { padding: 20px 22px; }
.step-content strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.step-content span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Contact form */
.contact-form-wrap {
  background: rgba(13,31,51,0.62);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-xl); padding: 48px 46px;
  backdrop-filter: blur(10px);
}
.form-title {
  font-family: var(--font-brand);
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 8px;
}
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-size: 12px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.3px; }
.form-input, .form-select, .form-textarea {
  background: rgba(27,58,92,0.5); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 13px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--white);
  outline: none; transition: border-color 0.2s ease, background 0.2s ease; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: rgba(27,58,92,0.72);
}
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--navy-brand); color: var(--white); }
.form-textarea { resize: vertical; min-height: 115px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: ''; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.4); pointer-events: none;
}
.form-select-wrap .form-select { padding-right: 36px; }
.confidential-toggle {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; background: rgba(200,169,81,0.06);
  border: 0.5px solid rgba(200,169,81,0.2); border-radius: var(--radius);
  cursor: pointer; transition: background 0.2s ease; margin-bottom: 18px;
}
.confidential-toggle:hover { background: rgba(200,169,81,0.1); }
.conf-checkbox {
  width: 18px; height: 18px; border: 1px solid var(--border-gold);
  border-radius: 3px; background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; transition: all 0.2s;
}
.conf-checkbox.checked { background: var(--gold); border-color: var(--gold); }
.conf-checkbox svg { width: 11px; height: 11px; color: var(--navy-deep); }
.conf-label { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.5; }
.conf-label strong { color: var(--gold); display: block; margin-bottom: 2px; font-size: 13px; }
.conf-message {
  display: none; background: rgba(200,169,81,0.08);
  border: 0.5px solid var(--border-gold); border-radius: var(--radius);
  padding: 14px 18px; font-size: 14px; color: var(--text-body);
  line-height: 1.65; margin-bottom: 18px; font-style: italic;
}
.conf-message.show { display: block; }
.guidance-note {
  display: none; background: rgba(46,109,164,0.15);
  border: 0.5px solid rgba(46,109,164,0.3); border-radius: var(--radius);
  padding: 12px 16px; font-size: 13.5px; color: var(--text-muted);
  font-style: italic; margin-top: 6px; line-height: 1.65;
}
.guidance-note.show { display: block; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 15px; padding: 16px; }
.form-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 15px; font-size: 13px; color: var(--text-muted);
}
.form-trust svg { width: 13px; height: 13px; color: var(--gold); }
#form-success {
  display: none; background: rgba(58,140,110,0.15);
  border: 1px solid rgba(58,140,110,0.4); border-radius: var(--radius);
  padding: 18px 22px; text-align: center;
  color: #8DD4B5; font-size: 15px; margin-top: 18px; line-height: 1.65;
}

/* ══════════════════════════════════════════
   CORPORATE PROFILE CTA
══════════════════════════════════════════ */
.profile-cta-section { background: var(--navy-brand); padding: 72px 0; border-top: 1px solid var(--border-dark); }
.profile-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  background: rgba(13,31,51,0.5); border: 0.5px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 48px 56px;
}
.profile-cta-icon {
  width: 68px; height: 68px; background: var(--gold-dim);
  border: 0.5px solid var(--border-gold); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.profile-cta-icon svg { width: 30px; height: 30px; color: var(--gold); }
.profile-cta-text h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.profile-cta-text p { font-size: 15px; color: var(--text-body); line-height: 1.65; max-width: 520px; }
.profile-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   ESTIMATOR
══════════════════════════════════════════ */
.estimator-section { padding: var(--section-pad); background: var(--navy-deep); position: relative; overflow: hidden; }
.estimator-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(200,169,81,0.018) 80px, rgba(200,169,81,0.018) 81px);
}
.estimator-wrap { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.estimator-card { background: var(--surface-card); border: 0.5px solid var(--border-gold); border-radius: var(--radius-lg); overflow: hidden; }
.estimator-header { background: var(--navy-brand); padding: 34px 42px; border-bottom: 1px solid var(--border-dark); }
.estimator-header h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.estimator-header p { font-size: 15px; color: var(--text-muted); font-weight: 300; }
.estimator-body { padding: 38px 42px; }
.estimator-step { display: none; }
.estimator-step.active { display: block; }
.estimator-step-label { font-family: var(--font-brand); font-size: 9px; font-weight: 600; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.estimator-question { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 30px; line-height: 1.3; }
.estimator-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.estimator-options.three-col { grid-template-columns: repeat(3, 1fr); }
.est-option {
  background: rgba(27,58,92,0.4); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 20px 22px;
  cursor: pointer; transition: all 0.2s ease; text-align: left;
}
.est-option:hover { border-color: var(--border-gold); background: rgba(27,58,92,0.7); transform: translateY(-2px); }
.est-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.est-option-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 5px; }
.est-option-sub { font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }
.estimator-progress { display: flex; gap: 6px; margin-bottom: 30px; }
.est-prog-dot { height: 3px; flex: 1; border-radius: 2px; background: var(--border-dark); transition: background 0.3s ease; }
.est-prog-dot.done { background: var(--gold); }
.est-prog-dot.active { background: rgba(200,169,81,0.5); }
.estimator-result { display: none; text-align: center; padding: 20px 0; }
.estimator-result.show { display: block; }
.est-result-service {
  display: inline-block; background: var(--gold-dim); border: 0.5px solid var(--border-gold);
  color: var(--gold); font-family: var(--font-brand); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; padding: 8px 18px; border-radius: 3px; text-transform: uppercase; margin-bottom: 22px;
}
.est-result-desc { font-size: 15px; color: var(--text-body); line-height: 1.72; max-width: 540px; margin: 0 auto 30px; }
.est-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.est-restart { font-size: 13px; color: var(--text-muted); cursor: pointer; margin-top: 18px; display: block; transition: color 0.2s; }
.est-restart:hover { color: var(--gold); }
.estimator-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border-dark); }
.est-back { font-size: 13px; color: var(--text-muted); cursor: pointer; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.est-back:hover { color: var(--white); }
.est-step-counter { font-size: 12px; color: var(--text-muted); font-family: var(--font-brand); letter-spacing: 1px; }

/* ══════════════════════════════════════════
   QUICK FILTER
══════════════════════════════════════════ */
.quick-filter { background: var(--navy-brand); padding: 48px 0; border-bottom: 1px solid var(--border-dark); }
.quick-filter-label { font-family: var(--font-brand); font-size: 9px; font-weight: 600; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; text-align: center; }
.quick-filter-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-tag {
  font-size: 13.5px; font-weight: 400; color: rgba(255,255,255,0.72);
  padding: 11px 20px; border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 3px; cursor: pointer; transition: all 0.2s ease; background: transparent;
}
.filter-tag:hover { color: var(--gold); border-color: var(--border-gold); background: var(--gold-dim); }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,24,42,0.92);
  backdrop-filter: blur(12px); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--navy-brand); border: 0.5px solid var(--border-gold);
  border-radius: var(--radius-lg); max-width: 640px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  transform: translateY(22px); transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header {
  padding: 34px 38px 26px; border-bottom: 1px solid var(--border-dark);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-header h3 { font-family: var(--font-display); font-size: 30px; font-weight: 400; color: var(--white); }
.modal-header p { font-size: 14px; color: var(--text-muted); margin-top: 5px; }
.modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  border: 0.5px solid var(--border-dark); display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: var(--text-muted);
  flex-shrink: 0; transition: all 0.2s; background: transparent;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-close svg { width: 16px; height: 16px; }
.modal-body { padding: 34px 38px 38px; }
.modal-steps { display: flex; flex-direction: column; gap: 0; }
.modal-step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding-bottom: 34px; position: relative; }
.modal-step:not(:last-child)::after {
  content: ''; position: absolute; left: 27px; top: 56px; bottom: 0;
  width: 1px; background: var(--border-dark);
}
.modal-step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--gold); flex-shrink: 0; position: relative; z-index: 1;
}
.modal-step-content strong { display: block; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 9px; padding-top: 13px; }
.modal-step-content p { font-size: 14px; color: var(--text-body); line-height: 1.72; }
.modal-footer { padding: 24px 38px; border-top: 1px solid var(--border-dark); display: flex; gap: 14px; align-items: center; }
.modal-note { font-size: 12px; color: var(--text-muted); font-style: italic; flex: 1; }

/* ══════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════ */
.floating-actions {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 800; opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none;
}
.floating-actions.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-btn {
  display: flex; align-items: center; gap: 10px; padding: 13px 20px;
  border-radius: 40px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.22s ease; white-space: nowrap;
  box-shadow: 0 4px 22px rgba(0,0,0,0.35); border: none; text-decoration: none;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.float-btn-consult { background: var(--gold); color: var(--navy-deep); }
.float-btn-consult:hover { background: var(--gold-light); }
.float-btn-wa { background: #25D366; color: #fff; }
.float-btn-wa:hover { background: #20BD5A; }
.float-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   COOKIE CONSENT BANNER (NEW V3)
══════════════════════════════════════════ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
  background: rgba(13,31,51,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 18px 0; transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-text { font-size: 13.5px; color: var(--text-body); line-height: 1.6; flex: 1; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  font-size: 13px; font-weight: 600; padding: 9px 20px;
  border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
}
.cookie-accept { background: var(--gold); color: var(--navy-deep); border: none; }
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline { background: transparent; color: var(--text-muted); border: 0.5px solid var(--border-dark); }
.cookie-decline:hover { border-color: var(--text-muted); color: var(--white); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: var(--navy-deep); border-top: 2px solid var(--gold); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 60px; border-bottom: 1px solid var(--border-dark); }
.footer-tagline { font-family: var(--font-display); font-size: 16px; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.65; margin: 18px 0 22px; max-width: 270px; }
.footer-location { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.footer-col h4 { font-family: var(--font-brand); font-size: 9px; font-weight: 600; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.52); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-creds { display: flex; flex-direction: column; gap: 10px; }
.footer-cred { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.48); }
.footer-cred-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0.7; }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.32); }
.footer-copy span { color: rgba(200,169,81,0.6); }

/* ══════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════ */
.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--navy-deep); padding: 40px; }
.not-found-num { font-family: var(--font-display); font-size: 160px; font-weight: 300; color: var(--navy-brand); line-height: 1; margin-bottom: -20px; }
.not-found-num span { color: var(--gold); opacity: 0.4; }
.not-found h2 { font-family: var(--font-display); font-size: 34px; font-weight: 300; color: var(--white); margin-bottom: 16px; }
.not-found p { font-size: 16px; color: var(--text-body); margin-bottom: 38px; }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-muted-u { color: var(--text-muted); }
.section-dark { background: var(--navy-deep); }
.section-brand { background: var(--navy-brand); }
.section-light { background: var(--off-white); }
