/* ===== RESET & VARIABLES ===== */
:root {
  --navy:               #1C2B45;
  --navy-deep:          #111D2E;
  --navy-mid:           #243352;
  --white:              #FFFFFF;
  --cream:              #F5F2ED;
  --cream-dk:           #EAE5DC;
  --amber:              #C8831A;
  --amber-lt:           #E8A83A;
  --body-gray:          #4A5568;
  --text-on-navy:       rgba(255,255,255,0.72);
  --text-on-navy-muted: rgba(255,255,255,0.38);
  --rule-navy:          rgba(255,255,255,0.09);
  --rule-light:         rgba(28,43,69,0.10);
  --max-w:              1080px;
  --section-pad:        80px;
  --gutter:             48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  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: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  overflow: hidden;
}

.nav-logo-svg {
  width: 88px;
  height: 88px;
  color: white;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
}

.footer-logo-svg {
  width: 48px;
  height: 48px;
  color: white;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
}

.nav-logo-text .nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  display: block;
}

.nav-logo-text .nav-subtitle {
  font-family: 'DM Sans', 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: 28px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-on-navy);
}

.nav-links a:hover {
  color: white;
  transition: color 0.15s;
}

.nav-links .btn-nav {
  background: white;
  color: var(--navy-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 5px;
  display: inline-block;
}

.nav-links .btn-nav:hover {
  background: var(--cream);
  transition: background 0.15s;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  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: 'DM Sans', sans-serif;
}

.hero-byline {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy-deep);
  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; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px 5px 5px;
  border: 1px solid var(--rule-navy);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eyebrow-dot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: block;
}

.eyebrow-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-on-navy-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber-lt);
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-on-navy);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
}

.btn-primary {
  background: var(--amber);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--amber-lt); }

.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  display: inline-block;
}

.hero-stats {
  display: flex;
  border-top: 1px solid var(--rule-navy);
  padding-top: 40px;
}

.stat-item { flex: 1; }

.stat-item:first-child {
  border-right: 1px solid var(--rule-navy);
  padding-right: 36px;
  margin-right: 36px;
  flex: 0 0 auto;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: white;
}

.stat-number sup {
  font-size: 18px;
  color: var(--amber);
  vertical-align: super;
}

.stat-number-prefix {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.stat-number-large {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--amber-lt);
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-on-navy-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(--amber);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--body-gray);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 40px;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--white);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding: var(--section-pad) var(--gutter);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  border-radius: 10px;
  overflow: hidden;
}

.problem-cell {
  background: white;
  padding: 28px 30px;
}

.problem-stat {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.problem-stat .accent { color: var(--amber); }

.problem-stat-sm {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.problem-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--body-gray);
  line-height: 1.65;
}

.source-citation {
  margin-top: 16px;
  border-top: 1px solid var(--rule-light);
  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(--amber);
  flex-shrink: 0;
  padding-top: 1px;
}

.source-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-style: italic;
  color: #8A97A8;
  line-height: 1.55;
}

/* ===== SERVICES ===== */
.services {
  background: var(--cream);
  padding: var(--section-pad) var(--gutter);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  border-radius: 10px;
  overflow: hidden;
}

.service-row {
  background: white;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  gap: 20px;
  align-items: start;
  transition: background 0.15s;
}

.service-row:hover { background: #FAFAF8; }

.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 7px;
}

.svc-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--body-gray);
  line-height: 1.65;
  margin-bottom: 12px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--rule-light);
  padding: 3px 10px;
  border-radius: 4px;
}

.svc-arrow {
  font-size: 16px;
  color: var(--navy-mid);
  opacity: 0.2;
  padding-top: 3px;
}

.svc-divider {
  background: var(--cream);
  padding: 10px 28px;
  border-top: 1px solid var(--rule-light);
}
.svc-divider span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--body-gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-row:hover .svc-arrow {
  opacity: 0.45;
  transition: opacity 0.15s;
}

/* ===== WHO I WORK WITH ===== */
.who {
  background: var(--navy-deep);
  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(200,131,26,0.12);
  border: 1px solid rgba(200,131,26,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.who-icon svg {
  width: 16px;
  height: 16px;
  stroke: rgba(200,131,26,0.85);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: white;
  margin-bottom: 7px;
}

.who-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-on-navy-muted);
  line-height: 1.65;
}

/* ===== APPROACH ===== */
.approach {
  background: var(--white);
  border-top: 1px solid var(--rule-light);
  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(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.principle-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.principle-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--body-gray);
  line-height: 1.65;
}

/* ===== TRACK RECORD ===== */
.track {
  background: var(--cream);
  border-top: 1px solid var(--rule-light);
  padding: var(--section-pad) var(--gutter);
}

.track-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.track-stat {
  background: white;
  padding: 28px 24px;
}

.track-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
}

.track-stat-number .accent { color: var(--amber); }
.track-stat-number .prefix { font-size: 30px; }
.track-stat-number .year { font-size: 40px; color: var(--amber); }

.track-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--body-gray);
  line-height: 1.5;
  margin-top: 6px;
}

.confidentiality-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border: 1px solid var(--rule-light);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 16px;
}

.confidentiality-note svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}

.confidentiality-note p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--body-gray);
  line-height: 1.65;
}

.confidentiality-note strong {
  color: var(--navy-deep);
  font-weight: 500;
}

/* ===== ASSESSMENT ===== */
.assessment {
  background: var(--navy-deep);
  padding: var(--section-pad) var(--gutter);
}

.assessment .section-heading { color: white; }
.assessment .section-lead { color: var(--text-on-navy); }

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.assessment-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.assessment-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule-navy);
  border-radius: 10px;
  padding: 24px 28px;
}

.assessment-block h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.assessment-block p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-navy);
  line-height: 1.7;
}

.assessment-block ul {
  list-style: none;
  padding: 0;
}

.assessment-block ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-navy);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}

.assessment-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.assessment-sidebar {
  position: sticky;
  top: 112px;
}

.assessment-why {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule-navy);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 20px;
}

.assessment-why h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.assessment-why p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-navy);
  line-height: 1.7;
  margin-bottom: 12px;
}

.assessment-why p:last-child { margin-bottom: 0; }

.assessment-cta {
  width: 100%;
  text-align: center;
  padding: 15px 28px;
}

.assessment-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-on-navy-muted);
  text-align: center;
  margin-top: 10px;
}

/* ===== HOW WE WORK ===== */
.how-we-work {
  background: var(--white);
  border-top: 1px solid var(--rule-light);
  padding: var(--section-pad) var(--gutter);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  border-top: 2px solid var(--navy);
  padding-top: 20px;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.step-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--body-gray);
  line-height: 1.65;
}

/* ===== WHY TDK ===== */
.why-tdk {
  background: var(--white);
  border-top: 1px solid var(--rule-light);
  padding: var(--section-pad) var(--gutter);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-item {
  background: var(--cream);
  border: 1px solid var(--rule-light);
  border-radius: 10px;
  padding: 24px 28px;
}

.why-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.why-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--body-gray);
  line-height: 1.65;
}

/* ===== SYSTEMS TAGS ===== */
.systems-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.sys-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  background: white;
  border: 1px solid var(--rule-light);
  padding: 5px 12px;
  border-radius: 4px;
}

/* ===== CTA ===== */
.cta {
  background: var(--navy-deep);
  padding: 96px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner { position: relative; z-index: 2; }

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-sub {
  font-family: 'DM Sans', 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(--amber);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 42px;
  border-radius: 6px;
  transition: opacity 0.15s;
}

.btn-cta:hover { opacity: 0.92; }

.cta-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-on-navy-muted);
  margin-top: 14px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  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: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.footer-right {
  text-align: right;
  font-family: 'DM Sans', 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: 46px; }
  .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; }
  .nav-logo-svg { width: 56px; height: 56px; }

  .hero { padding: 60px 20px 52px; }
  .hero h1 { font-size: 36px; }
  .hero-content { max-width: 100%; }
  .btn-ghost { display: none; }
  .hero-buttons { margin-bottom: 40px; }
  .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(--rule-navy);
    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; }

  .assessment-grid { grid-template-columns: 1fr; }
  .assessment-sidebar { position: static; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }

  .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; }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .nav-logo-text .nav-title { font-size: 13px; }
  .nav-logo-svg { width: 44px; height: 44px; }

  .hero { padding: 44px 16px 40px; }
  .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; }
  .stat-number { font-size: 34px; }
  .stat-number-prefix { font-size: 22px; }
  .stat-number-large { font-size: 30px; }
  .stat-label { font-size: 10px; }

  .section-heading { font-size: 22px; }
  .section-lead { font-size: 14px; margin-bottom: 28px; }
  .problem-stat { font-size: 36px; }
  .problem-cell { padding: 18px; }
  .problem-text { font-size: 13px; }

  .svc-name { font-size: 16px; }
  .svc-desc { font-size: 13px; }
  .svc-tag { font-size: 10px; padding: 2px 8px; }

  .who-card { padding: 18px; }
  .who-card-body { font-size: 12px; }
  .principle-body { font-size: 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-body { font-size: 12px; }
  .why-item { padding: 18px; }
  .why-body { font-size: 12px; }
  .assessment-block { padding: 18px; }
  .assessment-why { padding: 18px; }

  .track-stat { padding: 18px; }
  .track-stat-number { font-size: 36px; }
  .track-stat-label { font-size: 12px; }

  .cta { padding: 48px 16px; }
  .cta h2 { font-size: 24px; }
  .cta-sub { font-size: 14px; }
  .btn-cta { font-size: 14px; padding: 13px 32px; }

  .confidentiality-note { padding: 14px 16px; }
  .confidentiality-note p { font-size: 12px; }

  footer { padding: 0 16px; }
  .footer-inner { padding: 18px 0; }
  .footer-left span { font-size: 12px; }
  .footer-logo-svg { width: 30px; height: 30px; }
}

/* ===== INSIGHTS TEASER ===== */
.insights {
  background: var(--navy-deep);
  padding: var(--section-pad) var(--gutter);
}

.insights .section-label {
  color: var(--amber);
  margin-bottom: 20px;
}

.insights-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 40px 44px;
  align-items: center;
}

.insights-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(200,131,26,0.12);
  border: 1px solid rgba(200,131,26,0.25);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.insights-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.insights-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  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 rgba(255,255,255,0.09);
  padding-left: 48px;
}

.insights-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber-lt);
  line-height: 1;
  margin-bottom: 4px;
}

.insights-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .insights-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }
  .insights-card-right {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.09);
    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; }
}
