/* ============================================================
   GEO Consulting Website — style.css
   Color palette:
     Navy:       #0F1F3D
     Blue:       #2D6EF7
     Light gray: #F5F7FA
     White:      #FFFFFF
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2b4a;
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: #2D6EF7;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1a55d4;
}

ul {
  list-style: none;
}

/* ---- Typography Scale ---- */
h1 {
  /* Hero headline: 60–72px on desktop, never below 40px */
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
}

h2 {
  /* Section headlines: 36–44px on desktop */
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #0F1F3D;
}

h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #0F1F3D;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

p {
  color: #4a5568;
  font-size: 1.0625rem; /* 17px — above 16px floor */
  line-height: 1.75;
}

/* ---- Layout ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-gray {
  background: #F5F7FA;
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D6EF7;
  background: rgba(45, 110, 247, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label--light {
  color: #7ba4fb;
  background: rgba(255, 255, 255, 0.1);
}

.section-intro {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 680px;
  margin-top: 16px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #2D6EF7;
  color: #ffffff;
  border-color: #2D6EF7;
}

.btn-primary:hover {
  background: #1a55d4;
  border-color: #1a55d4;
  color: #ffffff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 28px rgba(45, 110, 247, 0.35);
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  background: transparent;
  color: #2D6EF7;
  border-color: #2D6EF7;
}

.btn-outline:hover {
  background: #2D6EF7;
  color: #ffffff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 28px rgba(45, 110, 247, 0.28);
}

.btn-ghost {
  background: transparent;
  color: #4a5568;
  border-color: #d1d9e6;
}

.btn-ghost:hover {
  background: #F5F7FA;
  color: #0F1F3D;
  border-color: #b0bdd4;
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 18px 32px;
  font-size: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

#site-header.scrolled {
  /* Frosted glass — slightly translucent, not fully solid */
  background: rgba(15, 31, 61, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 4px 24px rgba(0,0,0,0.18);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Nav brand group: wordmark + tagline stacked */
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.nav-logo {
  font-size: 1.125rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.nav-logo:hover {
  color: #7ba4fb;
}

.logo-cake {
  font-weight: 400; /* regular weight */
}

.logo-search {
  font-weight: 800; /* bold */
}

/* Nav tagline: muted, below wordmark */
.nav-tagline {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  background: #2D6EF7;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: #1a55d4;
  color: #ffffff;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: #0F1F3D;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* ---- Animated gradient layer ---- */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 120% 90% at 60% 40%, #0d2a5e 0%, #0F1F3D 45%, #070e1f 100%);
  animation: heroGradientShift 12s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
  0%   { background: radial-gradient(ellipse 120% 90% at 60% 40%, #0d2a5e 0%, #0F1F3D 50%, #070e1f 100%); }
  33%  { background: radial-gradient(ellipse 120% 90% at 30% 60%, #0a1e4a 0%, #0F1F3D 50%, #08101f 100%); }
  66%  { background: radial-gradient(ellipse 120% 90% at 70% 30%, #0e2860 0%, #0F1F3D 45%, #060c1a 100%); }
  100% { background: radial-gradient(ellipse 120% 90% at 50% 70%, #0b2350 0%, #0F1F3D 50%, #070e1f 100%); }
}

/* ---- Canvas particle layer ---- */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ---- Static grid fallback (print / no-JS) ---- */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(45, 110, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* ---- Content ---- */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding-top: 72px; /* offset for fixed nav */
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7ba4fb;
  background: rgba(45, 110, 247, 0.15);
  border: 1px solid rgba(45, 110, 247, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* ---- H1: largest element, max contrast, 2-line max ---- */
.section-hero h1 {
  /* 60–72px desktop, 40–48px mobile */
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 28px;
  max-width: 900px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.68);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ---- CTAs ---- */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

/* Hero primary: vivid electric blue, high contrast */
.btn-hero-primary {
  background: #2D6EF7;
  color: #ffffff;
  border: 2px solid #2D6EF7;
  padding: 15px 30px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 0 rgba(45, 110, 247, 0);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
  background: #1a55d4;
  border-color: #1a55d4;
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(45, 110, 247, 0.5);
}

/* Hero ghost: white outline, no fill */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

/* ---- Social proof line ---- */
.hero-social-proof {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  line-height: 1;
}

/* ---- Platform tags ---- */
.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.platform-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}

.platform-divider {
  color: rgba(255, 255, 255, 0.18);
  font-size: 1rem;
}

/* ---- Scroll indicator ---- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero-scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-indicator-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(5px); opacity: 0.65; }
}

/* ---- Legacy vis-node (kept for graceful degradation, hidden) ---- */
.hero-visual { display: none; }

/* ============================================================
   PROBLEM
   ============================================================ */
.section-problem {
  padding: 120px 0;
}

/* ---- Two-column grid ---- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 56px;
}

/* ---- Left: copy ---- */
.problem-copy .section-label {
  margin-bottom: 20px;
}

.problem-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.18;
}

.problem-copy p {
  margin-bottom: 18px;
  font-size: 1.0625rem;
  color: #4a5568;
  max-width: 480px;
}

.problem-copy p:last-of-type {
  margin-bottom: 32px;
}

.problem-cta {
  margin-top: 4px;
}

/* ---- Right: AI mockup ---- */
.problem-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.ai-mockup {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow:
    0 4px 6px rgba(15, 31, 61, 0.04),
    0 12px 40px rgba(15, 31, 61, 0.1),
    0 0 0 1px rgba(15, 31, 61, 0.06);
  overflow: hidden;
  font-size: 0.875rem;
}

/* Chrome bar */
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #f8f9fb;
  border-bottom: 1px solid #e8ecf2;
}

.mockup-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red    { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green  { background: #28c840; }

.mockup-url {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eef0f5;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #6b7a99;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mockup body */
.mockup-body {
  padding: 18px 20px 16px;
}

.mockup-query {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.8125rem;
  color: #1a2b4a;
  font-weight: 500;
  margin-bottom: 16px;
}

.mockup-query-icon {
  display: flex;
  flex-shrink: 0;
}

.mockup-ai-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f4f8;
}

.mockup-ai-icon {
  display: flex;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Result list */
.mockup-results {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.mockup-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.15s ease;
}

.mockup-result--visible {
  background: #f8faff;
  border-color: #e4ecff;
}

.mockup-result--absent {
  background: rgba(248, 249, 251, 0.5);
  border: 1.5px dashed #d1d9e6;
  opacity: 0.65;
  position: relative;
}

.result-rank {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2D6EF7;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.result-rank--absent {
  background: #d1d9e6;
  color: #8a9ab8;
}

.result-body {
  flex: 1;
  min-width: 0;
}

.result-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0F1F3D;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-name--absent {
  color: #8a9ab8;
}

.result-desc {
  font-size: 0.75rem;
  color: #6b7a99;
  line-height: 1.45;
}

.result-desc--absent {
  color: #b0bdd4;
}

.result-badge {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(45, 110, 247, 0.1);
  color: #2D6EF7;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}

.result-badge--absent {
  background: rgba(176, 189, 212, 0.2);
  color: #8a9ab8;
}

.mockup-footnote {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  color: #b0bdd4;
  padding-top: 10px;
  border-top: 1px solid #f0f4f8;
}

/* ---- Stat callout ---- */
.problem-stat-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #0F1F3D;
  border-radius: 16px;
  padding: 28px 36px;
  flex-wrap: wrap;
}

.stat-callout-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(45, 110, 247, 0.12);
  border: 1px solid rgba(45, 110, 247, 0.25);
  border-radius: 12px;
}

.stat-callout-body {
  flex: 1;
  min-width: 240px;
}

.stat-callout-source {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7ba4fb;
  margin-bottom: 6px;
}

.stat-callout-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin: 0;
}

.stat-callout-text strong {
  color: #ffffff;
  font-weight: 700;
}

.stat-callout-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-services {
  padding: 120px 0;
  background: #ffffff;
}

.section-services h2 {
  margin-bottom: 8px;
}

.section-services .section-intro {
  font-size: 1.0625rem;
  color: #6b7a99;
  margin-bottom: 56px;
}

/* Three equal columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Base card */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(15, 31, 61, 0.1);
  transform: translateY(-3px);
}

/* Featured card: elevated with blue border + shadow */
.service-card--featured {
  border-color: #2D6EF7;
  box-shadow:
    0 0 0 1px rgba(45, 110, 247, 0.15),
    0 8px 32px rgba(45, 110, 247, 0.14);
}

.service-card--featured:hover {
  box-shadow:
    0 0 0 1px rgba(45, 110, 247, 0.25),
    0 20px 56px rgba(45, 110, 247, 0.2);
}

/* "Most Popular" floating badge */
.service-popular-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: #2D6EF7;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(45, 110, 247, 0.35);
}

/* Icon */
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(45, 110, 247, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

/* Title */
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F1F3D;
  margin-bottom: 6px;
  line-height: 1.25;
}

/* Price */
.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F1F3D;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #8a9ab8;
  letter-spacing: 0;
}

/* Description */
.service-desc {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

/* Deliverable tag pills */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.service-tag-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2D6EF7;
  background: rgba(45, 110, 247, 0.08);
  border: 1px solid rgba(45, 110, 247, 0.18);
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Featured card: slightly warmer pill tint */
.service-card--featured .service-tag-pill {
  background: rgba(45, 110, 247, 0.12);
  border-color: rgba(45, 110, 247, 0.28);
}

/* CTA pushed to bottom */
.svc-cta {
  margin-top: auto;
}

.services-footer-note {
  text-align: center;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 24px;
  margin-bottom: 0;
  font-style: italic;
}

/* ============================================================
   FREE AI VISIBILITY CHECK — Lead Magnet Strip
   ============================================================ */

.free-check-strip {
  background: linear-gradient(135deg, #0F1F3D 0%, #1a3260 100%);
  border-radius: 16px;
  padding: 56px 48px;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}

.free-check-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(45,110,247,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.free-check-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.free-check-eyebrow {
  display: inline-block;
  background: rgba(45,110,247,0.2);
  color: #7aaeff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.free-check-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.free-check-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 12px;
}

.free-check-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 28px;
}

.free-check-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
}

.free-check-micro {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Mock UI panel */
.fcheck-ui {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.fcheck-bar {
  background: #f0f2f5;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e5e7eb;
}

.fcheck-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.fcheck-dot--r { background: #ff5f57; }
.fcheck-dot--y { background: #febc2e; }
.fcheck-dot--g { background: #28c840; }

.fcheck-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-left: 6px;
}

.fcheck-body {
  padding: 18px 20px;
}

.fcheck-query {
  font-size: 0.8125rem;
  color: #374151;
  background: #F5F7FA;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 14px;
  font-style: italic;
  line-height: 1.4;
}

.fcheck-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}

.fcheck-row:last-of-type {
  border-bottom: none;
}

.fcheck-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.fcheck-icon--miss {
  background: #fee2e2;
  color: #dc2626;
}

.fcheck-icon--hit {
  background: #dcfce7;
  color: #16a34a;
}

.fcheck-label {
  flex: 1;
  color: #374151;
  font-weight: 500;
}

.fcheck-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.fcheck-status--miss {
  background: #fee2e2;
  color: #dc2626;
}

.fcheck-status--hit {
  background: #dcfce7;
  color: #16a34a;
}

.fcheck-cta-row {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: #2D6EF7;
  font-weight: 600;
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #f3f4f6;
}

/* ============================================================
   HOW IT WORKS — Vertical Step Flow
   ============================================================ */

.hiw-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7BAEF9;
  background: rgba(45, 110, 247, 0.2);
  border: 1px solid rgba(45, 110, 247, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.hiw-headline {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.hiw-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 48px;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}

.hiw-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0;
}

.hiw-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}

.hiw-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2D6EF7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.hiw-line {
  width: 2px;
  background: rgba(45, 110, 247, 0.3);
  flex: 1;
  margin: 8px 0;
  min-height: 32px;
}

.hiw-step--last .hiw-line {
  display: none;
}

.hiw-step-right {
  padding-bottom: 40px;
  padding-left: 8px;
}

.hiw-step--last .hiw-step-right {
  padding-bottom: 0;
}

.hiw-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.hiw-badge {
  font-size: 11px;
  font-weight: 700;
  color: #7BAEF9;
  background: rgba(45, 110, 247, 0.15);
  border-radius: 4px;
  padding: 3px 9px;
  letter-spacing: 0.02em;
}

.hiw-price {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.hiw-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hiw-step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.6;
  margin-bottom: 14px;
}

.hiw-checklist {
  list-style: none;
  padding: 4px 16px;
  margin: 0 0 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.hiw-checklist li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.5;
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hiw-checklist li:last-child {
  border-bottom: none;
}

.hiw-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D6EF7;
  font-weight: 700;
  font-size: 12px;
  top: 10px;
}

.hiw-deliverable {
  font-size: 12px;
  font-weight: 500;
  color: #7BAEF9 !important;
  letter-spacing: 0.01em;
}

.hiw-deliverable strong {
  font-weight: 700;
}

.hiw-note {
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(45, 110, 247, 0.07);
  border: 1px solid rgba(45, 110, 247, 0.18);
  border-radius: 8px;
  padding: 14px 18px;
  max-width: 520px;
}

.hiw-note strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

@media (max-width: 600px) {
  .hiw-step {
    grid-template-columns: 44px 1fr;
  }

  .hiw-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.section-industries {
  padding: 120px 0;
  background: #F5F7FA;
}

.section-industries h2 {
  margin-bottom: 8px;
}

.section-industries .section-intro {
  font-size: 1.0625rem;
  color: #6b7a99;
  margin-bottom: 56px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.industry-card:hover {
  box-shadow: 0 12px 40px rgba(15, 31, 61, 0.09);
  transform: translateY(-3px);
}

/* Icon box — same style as service cards */
.industry-icon {
  width: 52px;
  height: 52px;
  background: rgba(45, 110, 247, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.industry-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F1F3D;
  margin-bottom: 12px;
  line-height: 1.25;
}

.industry-desc {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   WHY NOW
   ============================================================ */
.section-why-now {
  background: #0F1F3D;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.section-why-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(45, 110, 247, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Header block */
.why-now-header {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.why-now-header h2 {
  color: #ffffff;
  margin-bottom: 0;
  max-width: 640px;
}

/* Three-stat row */
.why-now-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}

/* Vertical separator lines */
.why-stat-sep {
  background: rgba(255,255,255,0.1);
  width: 1px;
  align-self: stretch;
}

/* Individual stat block */
.why-stat {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s ease;
}

.why-stat:hover {
  background: rgba(45, 110, 247, 0.07);
}

/* Large number */
.why-stat-num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #2D6EF7;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}

/* Short accent line under number */
.why-stat-divider {
  width: 32px;
  height: 2px;
  background: rgba(45, 110, 247, 0.4);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* Label text */
.why-stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0 0 10px;
  flex: 1;
}

/* Source attribution */
.why-stat-source {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Closing line */
.why-now-closer {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  line-height: 1.6;
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid rgba(45, 110, 247, 0.5);
}

.why-now-cta {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 48px;
}

.about-monogram {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #0F1F3D 0%, #1a3a6e 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.04em;
  box-shadow: 0 20px 60px rgba(15, 31, 61, 0.2);
}

.about-accent-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, #2D6EF7, transparent);
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F1F3D;
}

.credential span {
  font-size: 0.85rem;
  color: #8a9ab8;
}

.about-cta {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  background: #0F1F3D;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 110, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-content > p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
  font-size: 1.0625rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7ba4fb;
}

.contact-detail span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Form */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-cta-header {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 2px solid #e5e7eb;
}
.form-cta-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F1F3D;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.form-cta-header p {
  font-size: 0.9375rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0F1F3D;
}

.required {
  color: #e53e3e;
}

.form-optional {
  color: #8a9ab8;
  font-size: 0.8125rem;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d9e6;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #0F1F3D;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  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='%238a9ab8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0bdd4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2D6EF7;
  box-shadow: 0 0 0 3px rgba(45, 110, 247, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.8rem;
  color: #8a9ab8;
  text-align: center;
  margin-top: -8px;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  /* Seamless continuation of the contact section dark navy */
  background: #080f1e;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* One-row layout on desktop */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 24px;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Footer brand group: wordmark + tagline stacked */
.footer-brand-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

/* Wordmark — same style as nav logo */
.footer-logo {
  font-size: 1.0625rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.footer-logo:hover {
  color: #7ba4fb;
}

/* Footer tagline: muted, below wordmark */
.footer-tagline-text {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

/* Nav links row */
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  list-style: none;
  align-items: center;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255,255,255,0.05);
}

/* Right side: copyright + outbound micro-line */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.footer-outbound {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}

.footer-outbound a {
  color: rgba(45, 110, 247, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-outbound a:hover {
  color: #2D6EF7;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem-copy h2 {
    max-width: 100%;
  }

  .problem-copy p {
    max-width: 100%;
  }

  .problem-stat-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
  }

  .stat-callout-cta {
    width: 100%;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    flex-direction: row;
    padding-top: 0;
    justify-content: flex-start;
  }

  .about-accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #2D6EF7, transparent);
  }

  .hero-visual {
    opacity: 0.15;
  }

  /* Services: collapse to 1 column on tablet */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Free check strip: stack on tablet */
  .free-check-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .free-check-strip {
    padding: 40px 32px;
  }

  /* How It Works vertical step flow — no tablet overrides needed (already vertical) */
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 31, 61, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  /* Hero */
  .section-hero {
    height: auto;
    min-height: 100svh;
    padding: 0 0 80px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-visual {
    display: none;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn,
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Sections — generous breathing room on mobile too */
  .section-problem,
  .section-services,
  .section-how,
  .section-industries,
  .section-why-now,
  .section-about,
  .section-contact {
    padding: 80px 0;
  }

  /* Hero headline: 40–48px on mobile, never awkward */
  .section-hero h1 {
    font-size: clamp(2.5rem, 10vw, 3rem);
    letter-spacing: -0.03em;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Free check strip */
  .free-check-strip {
    padding: 32px 24px;
  }

  .free-check-headline {
    font-size: 1.5rem;
  }

  /* Phase track — already handled at tablet breakpoint */

  /* Industries */
  .industries-grid {
    grid-template-columns: 1fr;
  }

  /* Why Now */
  .why-now-stats {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .why-stat-sep {
    width: auto;
    height: 1px;
    background: rgba(255,255,255,0.1);
  }

  .why-stat {
    padding: 32px 24px;
  }

  .why-now-closer {
    font-size: 1rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  /* Footer — stack on mobile */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 20px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-copy,
  .footer-outbound {
    white-space: normal;
  }

  /* Problem stats */
  .problem-stats {
    flex-direction: column;
  }
}

/* ============================================================
   ACCESSIBILITY — Focus styles
   ============================================================ */
:focus-visible {
  outline: 2px solid #2D6EF7;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #site-header,
  .hero-gradient,
  .hero-canvas,
  .hero-bg-grid,
  .hero-visual,
  .hero-scroll-indicator,
  .section-why-now::before,
  .section-contact::before {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1, h2, h3 {
    color: #000000 !important;
  }

  p {
    color: #333333 !important;
  }
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.section-before-after {
  padding: 120px 0 30px;
  background: #ffffff;
}

.ba-header {
  text-align: center;
  margin-bottom: 64px;
}

.ba-header h2 {
  max-width: 680px;
  margin: 0 auto 0;
}

.ba-header .section-intro {
  text-align: center;
  margin: 16px auto 0;
}

/* ---- Two-panel grid ---- */
.ba-panels {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 0;
}

/* ---- Arrow divider ---- */
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Panel shell ---- */
.ba-panel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(15, 31, 61, 0.10);
  position: relative;
  border: 1px solid #e2e8f0;
}

/* Before: slightly desaturated */
.ba-panel--before {
  opacity: 0.88;
  filter: saturate(0.7);
}

/* After: full color, subtle blue glow */
.ba-panel--after {
  box-shadow:
    0 4px 32px rgba(15, 31, 61, 0.10),
    0 0 0 1.5px rgba(45, 110, 247, 0.25),
    0 8px 48px rgba(45, 110, 247, 0.08);
}

/* ---- Before/After pill label ---- */
.ba-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-bottom: 1px solid #f0f4f8;
}

.ba-panel-label--before {
  background: #fff5f5;
  color: #c53030;
}

.ba-panel-label--after {
  background: #f0fff4;
  color: #276749;
}

/* ---- Browser chrome bar ---- */
.ba-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #f8faff;
  border-bottom: 1px solid #edf2f7;
}

.ba-chrome-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.ba-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ba-dot--red    { background: #fc615d; }
.ba-dot--yellow { background: #fdbc40; }
.ba-dot--green  { background: #34c749; }

.ba-chrome-url {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #edf2f7;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #6b7a99;
  flex: 1;
  max-width: 220px;
}

/* ---- Panel title bar ---- */
.ba-panel-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4a5568;
  padding: 12px 20px;
  background: #ffffff;
  border-bottom: 1px solid #f0f4f8;
  line-height: 1.4;
}

/* ---- AI answer box ---- */
.ba-answer {
  padding: 20px 20px 20px;
  background: #ffffff;
}

.ba-answer-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8a9ab8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ba-answer-text {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ---- Result list ---- */
.ba-result-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.ba-result-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.ba-result-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b0bdd4;
  flex-shrink: 0;
  margin-top: 6px;
}

.ba-result-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F1F3D;
}

.ba-result-note {
  font-size: 0.8125rem;
  color: #8a9ab8;
}

/* Highlighted row in After panel */
.ba-result-item--highlight {
  background: rgba(45, 110, 247, 0.05);
  border: 1px solid rgba(45, 110, 247, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
  margin: 0 -12px;
  box-shadow: 0 0 0 3px rgba(45, 110, 247, 0.06), 0 2px 12px rgba(45, 110, 247, 0.10);
}

.ba-result-bullet--highlight {
  background: #2D6EF7;
}

.ba-result-name--highlight {
  color: #2D6EF7;
  font-weight: 700;
}

.ba-result-note--highlight {
  color: #4a6fa5;
}

/* Green "Cited" badge */
.ba-check-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #276749;
  background: #f0fff4;
  border: 1px solid rgba(56, 161, 105, 0.3);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 4px;
  flex-shrink: 0;
}

/* ---- Absent company (Before panel) ---- */
.ba-absent {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px dashed #d1d9e6;
  border-radius: 8px;
  background: #f8faff;
  margin-top: 4px;
}

.ba-absent span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #b0bdd4;
}

.ba-absent-label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #b0bdd4;
  font-style: italic;
}

/* ---- Closing line ---- */
.ba-closer {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #4a5568;
  margin-top: 52px;
  line-height: 1.6;
}

.ba-closer strong {
  color: #0F1F3D;
}

/* ---- Responsive: tablet ---- */
@media (max-width: 1024px) {
  .ba-panels {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ba-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

/* ---- Responsive: mobile ---- */
@media (max-width: 768px) {
  .section-before-after {
    padding: 80px 0;
  }

  .ba-header {
    margin-bottom: 40px;
  }

  .ba-result-item--highlight {
    margin: 0 -4px;
  }

  .ba-closer {
    margin-top: 36px;
    font-size: 1rem;
  }
}

/* ============================================================
   ABOUT — REDESIGNED (3-part)
   ============================================================ */

/* ---- Part 1: Origin block ---- */
.about-origin {
  background: #F5F7FA;
  padding: 120px 0 60px;
  text-align: center;
}

.about-origin .section-label {
  justify-content: center;
}

.about-origin h2 {
  margin-bottom: 28px;
}

.about-origin-copy {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.0625rem;
  color: #4a5568;
  line-height: 1.75;
}

.about-origin-copy--bold {
  font-weight: 600;
  color: #0F1F3D;
  font-size: 1.125rem;
}

/* Flatirons illustration container */
.about-flatirons {
  max-width: 860px;
  margin: 52px auto 0;
  /* transparent — SVG sits on the gray section background */
}

.about-flatirons svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Part 2: Team grid ---- */
.about-team {
  background: #F5F7FA;
  padding: 80px 0 80px;
}

.about-team-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F1F3D;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: -0.02em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(15, 31, 61, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(15, 31, 61, 0.10);
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.team-avatar svg {
  width: 100%;
  height: 100%;
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0F1F3D;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2D6EF7;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.875rem;
  color: #8a9ab8;
  line-height: 1.6;
  margin: 0;
}

/* ---- Part 3: Values strip ---- */
.about-values {
  background: #ffffff;
  padding: 64px 0;
  border-top: 1px solid #edf2f7;
}

.values-strip {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  padding: 0 40px;
}

.value-item:first-child {
  padding-left: 0;
}

.value-item:last-child {
  padding-right: 0;
}

.value-sep {
  width: 1px;
  background: #e2e8f0;
  align-self: stretch;
  flex-shrink: 0;
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #f0f4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.value-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.value-label {
  font-size: 1rem;
  font-weight: 700;
  color: #0F1F3D;
  display: block;
}

.value-desc {
  font-size: 0.875rem;
  color: #6b7a99;
  line-height: 1.6;
  margin: 0;
}

/* ---- Responsive: tablet ---- */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .values-strip {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .value-item {
    padding: 0;
  }

  .value-sep {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}

/* ---- Responsive: mobile ---- */
@media (max-width: 768px) {
  .about-origin {
    padding: 80px 0 48px;
  }

  .about-team {
    padding: 60px 0;
  }

  .about-values {
    padding: 48px 0;
  }

  .about-flatirons {
    margin-top: 36px;
  }
}

/* ===================== INLINE EMAIL CAPTURE CTA ===================== */
.inline-email-cta {
  margin-top: 3rem;
  padding: 2.25rem 2.5rem;
  background: #0F1F3D;
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.inline-email-cta--light {
  background: #f0f4ff;
  border: 1px solid rgba(45,110,247,0.15);
}

.inline-email-label {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.inline-email-cta--light .inline-email-label {
  color: #0F1F3D;
}

.inline-email-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 480px;
}

.inline-email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.inline-email-input::placeholder {
  color: rgba(255,255,255,0.38);
}

.inline-email-input:focus {
  border-color: #2D6EF7;
  background: rgba(45,110,247,0.08);
}

.inline-email-cta--light .inline-email-input {
  background: #fff;
  border-color: rgba(45,110,247,0.25);
  color: #0F1F3D;
}

.inline-email-cta--light .inline-email-input::placeholder {
  color: #9aa5b4;
}

.inline-email-cta--light .inline-email-input:focus {
  border-color: #2D6EF7;
  background: #fff;
}

.inline-email-btn {
  padding: 0.75rem 1.375rem;
  background: #2D6EF7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.inline-email-btn:hover {
  background: #1a5de8;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,110,247,0.35);
}

.inline-email-btn:active {
  transform: translateY(0);
}

.inline-email-fine {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.inline-email-cta--light .inline-email-fine {
  color: #718096;
}

/* Success state */
.inline-email-form.is-submitted {
  display: none;
}

.inline-email-success {
  display: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #68d391;
  gap: 0.5rem;
  align-items: center;
}

.inline-email-cta--light .inline-email-success {
  color: #276749;
}

.inline-email-success.is-visible {
  display: flex;
}

/* Mobile */
@media (max-width: 600px) {
  .inline-email-cta {
    padding: 1.75rem 1.25rem;
  }

  .inline-email-form {
    flex-direction: column;
  }

  .inline-email-btn {
    width: 100%;
  }
}


/* Hero — platform logo strip */
.hero-platforms {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-platforms-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.hero-platforms-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-platform-item {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.hero-platform-item:hover {
  opacity: 0.75;
}

.hero-platform-item svg {
  display: block;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-platform-item span {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .hero-platforms {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-platforms-logos {
    gap: 16px;
  }
}

/* ============================================================
   COMMON GAPS
   ============================================================ */

.section-common-gaps {
  padding: 100px 0;
  background: #F5F7FA;
}

.gaps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-top: 40px;
}

.gaps-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.55;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.gaps-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   SAMPLE PROMPTS
   ============================================================ */

.section-sample-prompts {
  padding: 100px 0;
  background: #ffffff;
}

.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.prompt-card {
  background: #F5F7FA;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #374151;
  font-style: italic;
  line-height: 1.5;
}

.prompts-cta-block {
  margin-top: 48px;
  text-align: center;
}

.prompts-cta-label {
  font-size: 1.0625rem;
  color: #374151;
  margin-bottom: 16px;
  font-weight: 500;
}

/* ============================================================
   SAMPLE CHECK PREVIEW TABLE
   ============================================================ */

.sample-check-preview {
  margin-top: 0;
  padding-top: 0;
}

.sample-check-headline {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: #0F1F3D;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.sample-check-sub {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 640px;
}

.sample-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(15,31,61,0.06);
}

.sample-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.sample-table thead {
  background: #F5F7FA;
}

.sample-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

.sample-table td {
  padding: 12px 16px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  line-height: 1.4;
}

.sample-table tbody tr:last-child td {
  border-bottom: none;
}

.sample-table tbody tr:hover {
  background: #fafbfc;
}

.st-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.st-badge--hit {
  background: #dcfce7;
  color: #16a34a;
}

.st-badge--miss {
  background: #fee2e2;
  color: #dc2626;
}

.st-badge--neutral {
  background: #f3f4f6;
  color: #6b7280;
}

.sample-table-note {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: #9ca3af;
  font-style: italic;
}

/* ============================================================
   METHODOLOGY + WHERE WE CHECK
   ============================================================ */

.section-methodology {
  padding: 100px 0;
  background: #ffffff;
}

.method-steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.method-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #F5F7FA;
  border-radius: 10px;
  padding: 20px 22px;
  border: 1px solid #e5e7eb;
}

.method-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #2D6EF7;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
}

.method-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F1F3D;
  margin-bottom: 6px;
}

.method-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.55;
}

/* Where We Check */
.where-we-check {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #e5e7eb;
}

.wwc-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F1F3D;
  margin-bottom: 8px;
}

.wwc-sub {
  font-size: 0.9375rem;
  color: #4b5563;
  margin-bottom: 24px;
}

.wwc-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.wwc-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F5F7FA;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.wwc-icon {
  flex-shrink: 0;
}

.wwc-note {
  font-size: 0.8125rem;
  color: #9ca3af;
  font-style: italic;
}

.wwc-logo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.wwc-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* SVG logos — dark monochrome on light background */
.wwc-svg-logo {
  width: 34px;
  height: 34px;
  color: #1f2937;
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.wwc-logo-item:hover .wwc-svg-logo {
  opacity: 1;
}

/* Legacy img logos (unused but kept for safety) */
.wwc-logo {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.wwc-logo:hover {
  opacity: 1;
}

.wwc-logo-label {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   WHAT WE DO / DON'T
   ============================================================ */

.section-what-we-do {
  padding: 100px 0;
  background: #F5F7FA;
}

.wwd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.wwd-col {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid #e5e7eb;
}

.wwd-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F1F3D;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.wwd-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wwd-list li {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.wwd-col--do .wwd-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.8rem;
}

.wwd-col--dont .wwd-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 0.8rem;
}

/* ============================================================
   BEST FIT
   ============================================================ */

.section-best-fit {
  padding: 100px 0;
  background: #ffffff;
}

.bestfit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.bestfit-col {
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid #e5e7eb;
}

.bestfit-col--yes {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.bestfit-col--no {
  background: #fef2f2;
  border-color: #fecaca;
}

.bestfit-col-header {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.bestfit-col--yes .bestfit-col-header { color: #16a34a; }
.bestfit-col--no .bestfit-col-header  { color: #dc2626; }

.bestfit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bestfit-list li {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.bestfit-col--yes .bestfit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.bestfit-col--no .bestfit-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

/* ============================================================
   FOUNDER NOTE (inside About)
   ============================================================ */

.founder-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(45,110,247,0.04);
  border: 1px solid rgba(45,110,247,0.15);
  border-radius: 12px;
}

.founder-avatar {
  flex-shrink: 0;
}

.founder-note-text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 14px;
}

.founder-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D6EF7;
  text-decoration: none;
}

.founder-link:hover {
  text-decoration: underline;
}

.founder-location {
  font-size: 0.8125rem;
  color: #9ca3af;
}

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

.section-faq {
  padding: 100px 0;
  background: #F5F7FA;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F1F3D;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: #2D6EF7;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-item[open] .faq-question {
  border-bottom: 1px solid #f3f4f6;
}

.faq-answer {
  padding: 16px 24px 20px;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.65;
}

/* ============================================================
   FOOTER CONTACT LINK
   ============================================================ */

.footer-copy a {
  color: #8a9ab8;
  text-decoration: none;
}

.footer-copy a:hover {
  color: #ffffff;
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */

@media (max-width: 900px) {
  .gaps-list {
    grid-template-columns: 1fr;
  }

  .wwd-grid,
  .bestfit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-common-gaps,
  .section-sample-prompts,
  .section-methodology,
  .section-what-we-do,
  .section-best-fit,
  .section-faq {
    padding: 72px 0;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .sample-table th,
  .sample-table td {
    padding: 10px 12px;
    font-size: 0.8125rem;
  }

  .founder-note {
    flex-direction: column;
    gap: 14px;
  }

  .wwc-platforms {
    gap: 8px;
  }
}

/* ===================== WE DO THE WORK ===================== */
.section-do-the-work {
  background: #ffffff;
  padding: 100px 0;
  border-top: 1px solid #e5e7eb;
}

.dtw-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.dtw-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0F1F3D;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 8px 0 16px;
}

.dtw-subhead {
  font-size: 1.0625rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

.dtw-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.dtw-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2D6EF7;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #EBF3FB;
}

.dtw-col-note {
  font-size: 0.875rem;
  color: #e05c00;
  font-weight: 600;
  background: #fff8f0;
  border: 1px solid #ffd4a8;
  border-radius: 6px;
  padding: 10px 14px;
  margin: 0 0 20px;
  line-height: 1.5;
}

.dtw-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dtw-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dtw-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #EBF3FB;
  color: #2D6EF7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

.dtw-list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dtw-list li strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F1F3D;
  line-height: 1.4;
}

.dtw-list li span {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
}

.dtw-callout {
  margin-top: 56px;
  background: #0F1F3D;
  border-radius: 12px;
  padding: 28px 36px;
  text-align: center;
}

.dtw-callout p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.6;
}

.dtw-callout strong {
  color: #ffffff;
}

@media (max-width: 900px) {
  .dtw-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .section-do-the-work {
    padding: 64px 0;
  }
  .dtw-callout {
    padding: 24px 20px;
  }
}

/* DTW tier badge and footnote */
.dtw-tier-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2D6EF7;
  background: rgba(45,110,247,0.08);
  border: 1px solid rgba(45,110,247,0.25);
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 8px;
}

.dtw-offsite-note {
  font-size: 0.8125rem;
  color: #888;
  margin-top: 20px;
  line-height: 1.5;
  font-style: italic;
}
