/* ===== TOKENS (dual theme) ===== */
:root {
  --bg:                #FFFFFF;
  --surface:            #FAFAFA;
  --ink:                #111F2C;
  --muted:              #64748B;
  --navy:               #1C3347;
  --accent:             #B5622A;
  --border:             #EAEAEA;
  --navy-mid:           #2A4259;
  --text-on-navy:       rgba(255,255,255,0.78);
  --text-on-navy-muted: rgba(255,255,255,0.40);
  --rule-navy:          rgba(255,255,255,0.09);
  --max-w:              1080px;
  --section-pad:        80px;
  --gutter:             48px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:      #16222E;
    --surface: #1C3347;
    --ink:     #F0ECE3;
    --muted:   #9CA9B5;
    --accent:  #C97A41;
    --border:  #2B3F52;
  }
}

[data-theme="dark"] {
  --bg:      #16222E;
  --surface: #1C3347;
  --ink:     #F0ECE3;
  --muted:   #9CA9B5;
  --accent:  #C97A41;
  --border:  #2B3F52;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.2s, color 0.2s;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== NAV (structural — always navy) ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--rule-navy);
  height: 80px;
  transition: box-shadow 0.2s;
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ci-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

.ci-icon-sm { width: 51px; height: 51px; }

.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.nav-links .btn-nav-disabled { background: var(--navy-mid); }

.nav-logo-text .nav-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  display: block;
}

.nav-logo-text .nav-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-on-navy-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-on-navy);
}

.nav-links a:hover, .nav-links a.active { color: white; transition: color 0.15s; }

.nav-links .btn-nav {
  background: var(--accent);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 5px;
  display: inline-block;
}

.nav-links .btn-nav:hover { opacity: 0.9; transition: opacity 0.15s; }

.theme-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule-navy);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-on-navy);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

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

.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid var(--rule-navy);
  z-index: 99;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 16px 24px;
  color: var(--text-on-navy);
  font-size: 15px;
  border-bottom: 1px solid var(--rule-navy);
  font-family: 'Inter', sans-serif;
}

.mobile-menu > span {
  display: block;
  padding: 16px 24px;
  color: var(--text-on-navy-muted);
  font-size: 15px;
  border-bottom: 1px solid var(--rule-navy);
  font-family: 'Inter', sans-serif;
}

.theme-toggle-mobile {
  display: flex !important;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px 24px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--rule-navy);
  background: none;
  cursor: pointer;
}

.theme-toggle-mobile svg { width: 17px; height: 17px; stroke: var(--text-on-navy); }

.theme-toggle-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-on-navy);
}

/* ===== HERO (flippable: stone in light, navy field in dark) ===== */
.hero {
  background: var(--bg);
  padding: 88px var(--gutter) 80px;
  overflow: hidden;
  position: relative;
}

.hero-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }


.hero-content { max-width: 720px; }

.hero-byline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.72;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 16px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 5px;
  display: inline-block;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.9; }

.btn-ghost {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  background: none;
  border: none;
  display: inline-block;
}

.hero-stats { display: flex; border-top: 1px solid var(--border); padding-top: 32px; }
.stat-item { flex: 1; }
.stat-item:first-child {
  border-right: 1px solid var(--border);
  padding-right: 32px;
  margin-right: 32px;
  flex: 0 0 auto;
}

.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 700; color: var(--ink); }
.stat-number sup { font-size: 17px; color: var(--accent); vertical-align: super; }
.stat-number-prefix { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: var(--ink); }
.stat-number-large { font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 700; color: var(--accent); }
.stat-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); line-height: 1.55; margin-top: 6px; }

/* ===== SECTION COMMON ===== */
.section-wrap { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 40px;
}

/* ===== PROBLEM (flippable) ===== */
.problem { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--section-pad) var(--gutter); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.problem-cell { background: var(--surface); padding: 28px 30px; }
.problem-stat { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.problem-stat .accent { color: var(--accent); }
.problem-stat-sm { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.problem-text { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.65; }
.source-citation { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.source-mark { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; color: var(--accent); flex-shrink: 0; padding-top: 1px; }
.source-text { font-family: 'Inter', sans-serif; font-size: 11px; font-style: italic; color: var(--muted); opacity: 0.85; line-height: 1.55; }

/* ===== SERVICES (flippable) ===== */
.services { background: var(--bg); padding: var(--section-pad) var(--gutter); }
.service-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.service-row { background: var(--surface); padding: 26px 28px; display: grid; grid-template-columns: 40px 1fr 20px; gap: 20px; align-items: start; transition: background 0.15s; }
.svc-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; color: var(--accent); letter-spacing: 0.08em; padding-top: 3px; }
.svc-name { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 7px; }
.svc-desc { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; color: var(--ink); background: var(--bg); border: 1px solid var(--border); padding: 3px 10px; border-radius: 4px; }
.svc-arrow { font-size: 16px; color: var(--muted); opacity: 0.3; padding-top: 3px; }
.svc-divider { background: var(--bg); padding: 10px 28px; border-top: 1px solid var(--border); }
.svc-divider span { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.service-row:hover .svc-arrow { opacity: 0.6; transition: opacity 0.15s; }

/* ===== BENCH PARAGRAPH ===== */
.bench {
  max-width: var(--max-w);
  margin: 32px auto 0;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 10px 10px 0;
  padding: 22px 28px;
}
.bench p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 700px;
}

/* ===== PROBLEM FRAMING (qualifying questions) ===== */
.problem-framing { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.framing-chip {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ===== SERVICES: LIFECYCLE STAGES ===== */
.stage-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.stage-block { background: var(--surface); padding: 30px 32px; }
.stage-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.stage-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; color: var(--accent); letter-spacing: 0.1em; }
.stage-name { font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 700; color: var(--ink); }
.stage-tagline { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.6; margin-bottom: 16px; }
.stage-offerings { display: flex; flex-wrap: wrap; gap: 8px; }

/* ===== PLATFORM (flippable) ===== */
.platform { background: var(--surface); border-top: 1px solid var(--border); padding: var(--section-pad) var(--gutter); }
.platform-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 36px 40px; }
.platform-card p { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 720px; }
.platform-card p + p { margin-top: 14px; }

/* ===== WHO WE HELP (structural — always navy) ===== */
.who { background: var(--navy); padding: var(--section-pad) var(--gutter); }
.who .section-heading { color: white; }
.who .section-lead { color: var(--text-on-navy); margin-bottom: 36px; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.who-card { background: rgba(255,255,255,0.04); border: 1px solid var(--rule-navy); border-radius: 10px; padding: 24px 26px; }
.who-icon { width: 34px; height: 34px; border-radius: 7px; background: rgba(181,98,42,0.14); border: 1px solid rgba(181,98,42,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.who-icon svg { width: 16px; height: 16px; stroke: rgba(196,90,90,0.9); stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.who-card-title { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: white; margin-bottom: 7px; }
.who-card-body { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-on-navy-muted); line-height: 1.65; }

/* ===== APPROACH (flippable) ===== */
.approach { background: var(--surface); border-top: 1px solid var(--border); padding: var(--section-pad) var(--gutter); }
.principles { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.principle { border-top: 2px solid var(--navy); padding-top: 20px; }
.principle-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.principle-title { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.principle-body { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted); line-height: 1.65; }

.software-whisper {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.software-whisper p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
  font-style: italic;
}

/* ===== INSIGHTS TEASER (flippable) ===== */
.insights { background: var(--bg); padding: var(--section-pad) var(--gutter); }
.insights .section-label { margin-bottom: 20px; }
.insights-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 40px 44px; align-items: center; }
.insights-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em; background: rgba(181,98,42,0.10); border: 1px solid rgba(181,98,42,0.25); padding: 4px 12px; border-radius: 4px; display: inline-block; margin-bottom: 16px; }
.insights-title { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 14px; }
.insights-desc { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.72; margin-bottom: 28px; }
.insights-cta { display: inline-block; }
.insights-card-right { display: flex; flex-direction: column; gap: 24px; border-left: 1px solid var(--border); padding-left: 48px; }
.insights-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.insights-stat-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ===== PEOPLE WE'VE HELPED (flippable) ===== */
.clients { background: var(--bg); padding: var(--section-pad) var(--gutter); }
.clients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.client-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 26px 28px; }
.client-card-photo { height: 40px; max-width: 140px; width: auto; object-fit: contain; background: var(--bg); border-radius: 6px; padding: 4px; margin-bottom: 14px; display: block; }
.client-card-badge { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; background: rgba(181,98,42,0.10); border: 1px solid rgba(181,98,42,0.25); padding: 2px 8px; border-radius: 4px; margin-bottom: 10px; }
.client-card-name { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.client-card-summary { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.client-card-quote { font-family: 'Inter', sans-serif; font-size: 13px; font-style: italic; color: var(--ink); line-height: 1.6; border-left: 2px solid var(--accent); padding-left: 14px; margin-bottom: 8px; }
.client-card-attribution { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
@media (max-width: 768px) { .clients-grid { grid-template-columns: 1fr; } }

/* ===== TRACK RECORD (flippable) ===== */
.track { background: var(--surface); border-top: 1px solid var(--border); padding: var(--section-pad) var(--gutter); }
.track-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.track-stat { background: var(--surface); padding: 28px 24px; }
.track-stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; color: var(--ink); }
.track-stat-number .accent { color: var(--accent); }
.track-stat-number .prefix { font-size: 30px; }
.track-stat-number .year { font-size: 40px; color: var(--accent); }
.track-stat-label { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 6px; }
.confidentiality-note { display: flex; align-items: flex-start; gap: 12px; background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 8px; padding: 18px 22px; margin-top: 16px; }
.confidentiality-note svg { width: 18px; height: 18px; stroke: var(--accent); stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }
.confidentiality-note p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted); line-height: 1.65; }
.confidentiality-note strong { color: var(--ink); font-weight: 500; }

/* ===== CTA (structural — always navy) ===== */
.cta { background: var(--navy); padding: 96px var(--gutter); text-align: center; position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; }
.cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 700; color: white; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.cta-sub { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-on-navy); max-width: 460px; margin: 0 auto 36px; line-height: 1.7; }
.btn-cta { display: inline-block; background: var(--accent); color: white; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; padding: 15px 42px; border-radius: 6px; transition: opacity 0.15s; }
.btn-cta:hover { opacity: 0.9; }
.cta-note { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-on-navy-muted); margin-top: 14px; }

/* ===== FOOTER (structural — always navy) ===== */
footer { background: var(--navy); border-top: 1px solid var(--rule-navy); padding: 0 var(--gutter); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-left span { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: white; }
.footer-right { text-align: right; font-family: 'Inter', sans-serif; font-size: 11px; color: var(--text-on-navy-muted); line-height: 1.6; }

/* ===== TABLET ===== */
@media (max-width: 900px) {
  :root { --gutter: 32px; --section-pad: 64px; }
  .hero h1 { font-size: 42px; }
  .section-heading { font-size: 30px; }
  .principles { gap: 28px; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  :root { --gutter: 20px; --section-pad: 52px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }

  .hero { padding: 56px 20px 48px; }
  .hero h1 { font-size: 34px; }
  .hero-content { max-width: 100%; }
  .btn-ghost { display: none; }
  .hero-buttons { margin-bottom: 36px; }
  .hero-stats { flex-direction: column; gap: 28px; }
  .stat-item:first-child { border-right: none; padding-right: 0; margin-right: 0; flex: 1; border-bottom: 1px solid var(--border); padding-bottom: 28px; }

  .section-heading { font-size: 26px; }
  .section-lead { font-size: 15px; margin-bottom: 32px; }
  .problem-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 0; padding: 20px; }
  .svc-num, .svc-arrow { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; gap: 28px; }
  .track-stats { grid-template-columns: 1fr; }

  .insights-card { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; }
  .insights-card-right { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 28px; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .insights-stat { flex: 1; min-width: 100px; }
  .insights-title { font-size: 22px; }

  .cta { padding: 64px 20px; }
  .cta h2 { font-size: 30px; }

  footer { padding: 0 20px; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; padding: 20px 0; }
  .footer-right { text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; line-height: 1.12; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .btn-primary { font-size: 13px; padding: 12px 24px; }
  .section-heading { font-size: 22px; }
  .problem-stat { font-size: 36px; }
  .svc-name { font-size: 16px; }
  .cta h2 { font-size: 24px; }
}
