/* ============================================
   Chipp Site Base Styles (platform-injected)
   ============================================ */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* --- Mobile Navigation (hamburger) --- */

/* Hidden checkbox that powers the toggle */
.nav-toggle { display: none; }

/* Hamburger icon — hidden on desktop, visible on mobile */
.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-toggle-label .hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s ease;
}

.nav-toggle-label .hamburger::before,
.nav-toggle-label .hamburger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: absolute;
  transition: transform 0.3s ease, top 0.3s ease;
}

.nav-toggle-label .hamburger::before { top: -7px; }
.nav-toggle-label .hamburger::after { top: 7px; }

/* Animate to X when open */
.nav-toggle:checked + .nav-toggle-label .hamburger { background: transparent; }
.nav-toggle:checked + .nav-toggle-label .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-label .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile: show hamburger, collapse nav links */
@media (max-width: 768px) {
  .nav-toggle-label { display: flex; align-items: center; }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    /* Use the site's background color -- falls back to white/dark */
    background: var(--site-bg, var(--site-surface, #ffffff));
    border-bottom: 1px solid rgba(128, 128, 128, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  /* Dark mode: opaque dark background + stronger shadow */
  @media (prefers-color-scheme: dark) {
    .nav-links {
      background: var(--site-bg, var(--site-surface, #0f0f1a));
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
  }

  .nav-toggle:checked ~ .nav-links { display: flex !important; }

  /* Make nav links full-width tappable targets on mobile */
  .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
    text-align: left;
    width: 100%;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(128, 128, 128, 0.08);
  }

  /* CTA button in mobile nav — full width */
  .nav-links .cta-primary,
  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
}

/* --- Nav Logo Image --- */

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* --- CTA Button Safety --- */

/* Prevent nav link hover from overriding CTA text color.
   LLM-generated .nav-links a:hover can set color to --site-primary,
   making text invisible against the same-color CTA background. */
.nav-links .cta-primary:hover,
.nav-links .cta-primary:focus,
.cta-primary:hover,
.cta-primary:focus {
  color: white;
}

/* --- FAQ Accordion (<details>/<summary>) --- */

details {
  border: 1px solid rgba(128, 128, 128, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.2s ease;
}

details + details { margin-top: 8px; }

details[open] {
  background: rgba(128, 128, 128, 0.03);
}

summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker { display: none; }
summary::marker { display: none; }

/* Chevron indicator */
summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.5;
}

details[open] > summary::after {
  transform: rotate(-135deg);
}

details > div,
details > p {
  padding: 0 24px 18px;
  line-height: 1.7;
  opacity: 0.85;
}

/* --- Chat Container Responsive --- */

[data-chipp="chat"] {
  min-height: 500px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  [data-chipp="chat"] {
    min-height: 400px;
    border-radius: 12px;
  }
}

/* === Custom Site Styles === */
/* =============================================
   NEXUS CMC — DESIGN SYSTEM
   ============================================= */

:root {
  --site-primary: #1B3A5C;
  --site-primary-light: #2a5280;
  --site-primary-dark: #0f2238;
  --site-primary-glow: rgba(27, 58, 92, 0.18);
  --site-primary-surface: rgba(27, 58, 92, 0.06);

  --site-accent: #8BA8C4;
  --site-accent-light: #B8CEDD;
  --site-steel: #6B8CAE;
  --site-gold: #C8A96E;
  --site-gold-light: rgba(200, 169, 110, 0.15);

  --site-bg: #ffffff;
  --site-bg-alt: #F5F7FA;
  --site-bg-dark: #0D1F33;
  --site-surface: #ffffff;
  --site-surface-elevated: #FAFBFD;
  --site-text: #1a2a3a;
  --site-heading: #0D1F33;
  --site-muted: #5C7A96;
  --site-border: #D8E3EE;
  --site-border-light: #EBF1F7;

  --site-section-pad: clamp(4rem, 9vw, 7rem);
  --site-content-max: 1200px;

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

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 1px 3px rgba(13, 31, 51, 0.06), 0 4px 16px rgba(13, 31, 51, 0.05);
  --shadow-card-hover: 0 4px 20px rgba(13, 31, 51, 0.10), 0 12px 40px rgba(27, 58, 92, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */

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

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--site-text);
  background: var(--site-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--site-heading);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-steel);
  margin-bottom: 0.75rem;
}

.eyebrow--light {
  color: var(--site-accent-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-sub {
  margin-top: 1rem;
  color: var(--site-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-sub--light {
  color: var(--site-accent-light);
}

.section-header--light h2 {
  color: #ffffff;
}

/* =============================================
   CTA BUTTONS
   ============================================= */

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--site-primary);
  color: #ffffff;
  border: 2px solid var(--site-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 4px 16px var(--site-primary-glow);
}

.cta-primary:hover {
  background: var(--site-primary-light);
  border-color: var(--site-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--site-primary-glow);
}

.cta-primary--large {
  padding: 1.1rem 2.5rem;
  font-size: 1.0625rem;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--site-primary);
  border: 1.5px solid var(--site-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
}

.cta-secondary:hover {
  border-color: var(--site-primary);
  background: var(--site-primary-surface);
}

/* =============================================
   NAVIGATION
   ============================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 68px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--site-border-light);
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--site-muted);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
  }

  .nav-links a:hover {
    color: var(--site-primary);
    background: var(--site-primary-surface);
  }

  .nav-cta {
    margin-left: 0.5rem;
    padding: 0.55rem 1.25rem !important;
    font-size: 0.875rem !important;
    background: var(--site-primary) !important;
    color: #ffffff !important;
    border-radius: var(--radius-full) !important;
    border: none !important;
  }

  .nav-cta:hover {
    background: var(--site-primary-light) !important;
    color: #ffffff !important;
  }
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  padding-top: calc(68px + clamp(4rem, 8vw, 6rem));
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: linear-gradient(160deg, #F8FAFE 0%, #EEF4FB 40%, #F5F7FA 100%);
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-accent--1 {
  top: -15%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 58, 92, 0.07), transparent 65%);
}

.hero-bg-accent--2 {
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 140, 174, 0.08), transparent 65%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 58, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 58, 92, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text .eyebrow {
  color: var(--site-steel);
}

.hero-text h1 {
  margin-bottom: 1.25rem;
  color: var(--site-heading);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--site-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-immediacy {
  font-size: 0.875rem;
  color: var(--site-steel);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--site-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--site-primary);
  line-height: 1;
}

.proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--site-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--site-border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: none;
}

@media (min-width: 960px) {
  .hero-visual {
    display: block;
    height: 380px;
  }
}

.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(27, 58, 92, 0.12), rgba(107, 140, 174, 0.08) 50%, transparent 70%);
  border: 1px solid rgba(27, 58, 92, 0.1);
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--site-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--site-heading);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.hero-card--1 { top: 10%; left: 0; }
.hero-card--2 { top: 32%; right: 0; }
.hero-card--3 { bottom: 30%; left: 5%; }
.hero-card--4 { bottom: 10%; right: 5%; }

.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--site-border);
}

.hc-dot--active {
  background: #2ECC71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

/* =============================================
   TRUST BAR
   ============================================= */

.trust-bar {
  background: var(--site-primary);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.trust-item {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}

.trust-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
}

/* =============================================
   VALUE PROPOSITIONS
   ============================================= */

.value-props {
  padding: var(--site-section-pad) 0;
  background: var(--site-bg);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 2.25rem;
  background: var(--site-surface-elevated);
  border: 1px solid var(--site-border-light);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--site-primary), var(--site-steel));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--site-accent-light);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--site-primary-surface);
  border: 1px solid rgba(27, 58, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-primary);
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  margin-bottom: 0.75rem;
  color: var(--site-heading);
}

.pillar-card p {
  font-size: 0.9375rem;
  color: var(--site-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pillar-list li {
  font-size: 0.875rem;
  color: var(--site-muted);
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
  border-top: 1px solid var(--site-border-light);
}

.pillar-list li:last-child {
  border-bottom: 1px solid var(--site-border-light);
}

.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--site-steel);
}

/* =============================================
   SERVICES GRID
   ============================================= */

.services-section {
  padding: var(--site-section-pad) 0;
  background: var(--site-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card--wide {
    grid-column: span 2;
  }
}

.service-card {
  padding: 1.75rem;
  background: var(--site-surface);
  border: 1px solid var(--site-border-light);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(27, 58, 92, 0.2);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--site-primary-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-primary);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-card h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--site-heading);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--site-muted);
  line-height: 1.65;
}

/* =============================================
   WHO WE SERVE
   ============================================= */

.who-we-serve {
  padding: var(--site-section-pad) 0;
  background: var(--site-bg);
}

.serve-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 960px) {
  .serve-layout {
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
  }
}

.serve-text .eyebrow { color: var(--site-steel); }

.serve-text h2 {
  margin-bottom: 1rem;
}

.serve-text p {
  color: var(--site-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.serve-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .serve-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.serve-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--site-bg-alt);
  border: 1px solid var(--site-border-light);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.serve-card:hover {
  border-color: rgba(27, 58, 92, 0.2);
  box-shadow: var(--shadow-card);
}

.serve-card-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(27, 58, 92, 0.15);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.serve-card-content h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--site-heading);
  margin-bottom: 0.4rem;
  letter-spacing: 0;
}

.serve-card-content p {
  font-size: 0.875rem;
  color: var(--site-muted);
  line-height: 1.65;
}

/* =============================================
   CHAT SECTION
   ============================================= */

.chat-section {
  padding: var(--site-section-pad) 0;
  background: var(--site-bg-dark);
  position: relative;
  overflow: hidden;
}

.chat-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(27, 58, 92, 0.6), transparent 65%);
  pointer-events: none;
}

.chat-section .section-header {
  position: relative;
}

.chat-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.chat-prompts {
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.prompts-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prompts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.suggested-question {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  text-align: left;
}

.suggested-question:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
}

.chat-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.chat-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.chat-trust-item svg {
  color: var(--site-steel);
}

/* =============================================
   FAQ
   ============================================= */

.faq-section {
  padding: var(--site-section-pad) 0;
  background: var(--site-bg-alt);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-section details {
  border-bottom: 1px solid var(--site-border);
}

.faq-section details:first-child {
  border-top: 1px solid var(--site-border);
}

.faq-section summary {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--site-heading);
  padding: 1.25rem 0;
}

.faq-section details p {
  font-size: 0.9375rem;
  color: var(--site-muted);
  line-height: 1.75;
  padding-bottom: 1.25rem;
}

/* =============================================
   FINAL CTA
   ============================================= */

.final-cta {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
  text-align: center;
}

/* decorative accent element — hidden in clean layout */
.final-cta-bg-accent {
  display: none;
}

.final-cta-content {
  position: relative;
}

.final-cta-content .eyebrow {
  color: #4A6580 !important;
}

.final-cta-content h2 {
  color: #0D1F33 !important;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.final-cta-content p {
  color: #444444 !important;
}

.final-cta-content .final-cta-subtext {
  color: #555555 !important;
}

.final-cta-content .cta-primary {
  background: #1B3A5C !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
}

.final-cta-content .cta-primary:hover {
  background: #0D1F33 !important;
  color: #ffffff !important;
}

.final-cta-proof-row .proof-item .proof-number,
.final-cta-proof-row .proof-item .proof-label,
.final-cta-proof-row .proof-item {
  color: #666666 !important;
}

/* === NAVY BLUE THEME OVERRIDE === */

:root {
  --site-bg: #1B3A5C;
  --site-bg-alt: #0D1F33;
  --site-bg-dark: #0a1828;
  --site-surface: rgba(255,255,255,0.06);
  --site-surface-elevated: rgba(255,255,255,0.05);
  --site-heading: #ffffff;
  --site-text: rgba(255,255,255,0.88);
  --site-muted: rgba(255,255,255,0.6);
  --site-border: rgba(255,255,255,0.12);
  --site-border-light: rgba(255,255,255,0.08);
  --site-primary-surface: rgba(255,255,255,0.08);
  --site-steel: rgba(184,206,221,0.85);
  --site-accent-light: rgba(184,206,221,0.75);
}

body {
  background: #1B3A5C;
  color: rgba(255,255,255,0.88);
}

/* Nav */
.site-nav {
  background: rgba(10, 24, 40, 0.96) !important;
  border-bottom-color: rgba(255,255,255,0.08) !important;
}
.nav-links a { color: rgba(255,255,255,0.7) !important; }
.nav-links a:hover { color: #ffffff !important; background: rgba(255,255,255,0.08) !important; }
.nav-cta { background: #ffffff !important; color: #1B3A5C !important; }
.nav-cta:hover { background: rgba(255,255,255,0.9) !important; color: #1B3A5C !important; }

/* Hero */
.hero {
  background: linear-gradient(160deg, #1B3A5C 0%, #0D1F33 60%, #0a1828 100%) !important;
}
.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) !important;
}
.hero-sub { color: rgba(255,255,255,0.65) !important; }
.hero-immediacy { color: rgba(255,255,255,0.45) !important; }
.hero-proof {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.proof-num { color: #ffffff !important; }
.proof-label { color: rgba(255,255,255,0.55) !important; }
.proof-divider { background: rgba(255,255,255,0.15) !important; }
.hero-card {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
}

/* Trust bar */
.trust-bar { background: #0a1828 !important; }
.trust-label { color: rgba(255,255,255,0.35) !important; }
.trust-item { color: rgba(255,255,255,0.8) !important; }
.trust-sep { color: rgba(255,255,255,0.25) !important; }

/* Value props */
.value-props { background: #1B3A5C !important; }
.pillar-card {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.09) !important;
}
.pillar-card:hover { border-color: rgba(255,255,255,0.2) !important; }
.pillar-card h3 { color: #ffffff !important; }
.pillar-card p { color: rgba(255,255,255,0.62) !important; }
.pillar-list li { color: rgba(255,255,255,0.6) !important; border-top-color: rgba(255,255,255,0.07) !important; }
.pillar-list li:last-child { border-bottom-color: rgba(255,255,255,0.07) !important; }
.pillar-list li::before { background: rgba(255,255,255,0.4) !important; }
.pillar-icon { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.1) !important; color: rgba(184,206,221,1) !important; }

/* Services */
.services-section { background: #0D1F33 !important; }
.service-card {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.service-card:hover { border-color: rgba(255,255,255,0.2) !important; }
.service-card h4 { color: #ffffff !important; }
.service-card p { color: rgba(255,255,255,0.6) !important; }
.service-icon { background: rgba(255,255,255,0.08) !important; color: rgba(184,206,221,1) !important; }

/* Who we serve */
.who-we-serve { background: #1B3A5C !important; }
.serve-text p { color: rgba(255,255,255,0.65) !important; }
.serve-card {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.serve-card:hover { border-color: rgba(255,255,255,0.2) !important; }
.serve-card-num { color: rgba(255,255,255,0.12) !important; }
.serve-card-content h4 { color: #ffffff !important; }
.serve-card-content p { color: rgba(255,255,255,0.6) !important; }

/* FAQ */
.faq-section { background: #0D1F33 !important; }
.faq-section details { border-bottom-color: rgba(255,255,255,0.1) !important; }
.faq-section details:first-child { border-top-color: rgba(255,255,255,0.1) !important; }
.faq-section summary { color: #ffffff !important; }
.faq-section details p { color: rgba(255,255,255,0.62) !important; }

/* Final CTA — white / dark text; overrides the navy theme */
.final-cta {
  background: #ffffff !important;
}
.final-cta-content .eyebrow { color: #4A6580 !important; }
.final-cta-content h2 { color: #0D1F33 !important; }
.final-cta-content p { color: #444444 !important; }
.final-cta-content .final-cta-subtext { color: #555555 !important; }
.final-proof { color: #666666 !important; }
.final-proof span { color: #666666 !important; }
.proof-sep { color: #999999 !important; }
.final-cta-proof-row .proof-item,
.final-cta-proof-row .proof-number,
.final-cta-proof-row .proof-label { color: #666666 !important; }
/* Immediacy / sub-CTA line */
.final-cta .final-cta-immediacy { color: #555555 !important; }
/* Scoped CTA button: navy bg + white text inside this section */
.final-cta .cta-primary {
  background: #1B3A5C !important;
  color: #ffffff !important;
  border-color: #1B3A5C !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(27,58,92,0.22) !important;
}
.final-cta .cta-primary:hover {
  background: #0D1F33 !important;
  color: #ffffff !important;
  border-color: #0D1F33 !important;
  box-shadow: 0 6px 24px rgba(13,31,51,0.28) !important;
}

/* Chat section */
.chat-section { background: #0a1828 !important; }

/* Footer */
.site-footer { background: #060f1a !important; }
.footer-tagline { color: rgba(255,255,255,0.5) !important; }
.footer-links a { color: rgba(255,255,255,0.55) !important; }
.footer-links a:hover { color: #ffffff !important; }
.footer-legal a { color: rgba(255,255,255,0.4) !important; }
.footer-legal a:hover { color: rgba(255,255,255,0.7) !important; }
.footer-credit { color: rgba(255,255,255,0.3) !important; }

/* CTA buttons on dark background */
.cta-primary {
  background: #ffffff !important;
  color: #1B3A5C !important;
  border-color: #ffffff !important;
}
.cta-primary:hover {
  background: rgba(255,255,255,0.9) !important;
  color: #0D1F33 !important;
  border-color: rgba(255,255,255,0.9) !important;
}
.cta-secondary {
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #ffffff !important;
}

/* Section headers on dark */
.section-sub { color: rgba(255,255,255,0.6) !important; }
.eyebrow { color: rgba(184,206,221,0.85) !important; }
