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

:root {
  --brand-blue: #0a8acb;
  --brand-teal: #14b8a6;
  --brand-purple: #7a6bb8;
  --brand-grey: #8b8f97;
  --brand-navy: #0c1929;
}

:root {
  --navy-900: #0c1929;
  --navy-800: #152238;
  --navy-700: #1e3a5f;
  --navy-600: #1e40af;

  --blue-500: #0a8acb;
  --blue-400: #2b9fdb;
  --blue-50: #e8f4fc;

  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-50: #f0fdfa;

  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --accent: var(--brand-blue);
  --accent-hover: #0976ad;
  --accent-light: rgba(10,138,203,.18);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --section-pad-y: 100px;
  --section-pad-x: 24px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s }
a:hover { color: var(--accent-hover) }
img { max-width: 100%; display: block }

:focus-visible {
  outline: 3px solid rgba(20,184,166,.55);
  outline-offset: 3px;
}
.btn:focus-visible,
.nav-toggle:focus-visible,
.nav-mobile-links a:focus-visible,
.nav-links a:focus-visible,
.faq-q:focus-visible,
.back-to-top:focus-visible,
.journey-card:focus-visible,
.case-card:focus-visible {
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  padding: 12px 20px;
  background: var(--white);
  color: var(--slate-900);
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--slate-900); line-height: 1.2 }
h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.02em }
h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.01em }
h3 { font-size: clamp(20px, 2.5vw, 24px) }
h4 { font-size: 18px }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--slate-600);
  max-width: 640px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  line-height: 1.3;
}
.btn-primary {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
  color: var(--white);
  border-color: transparent;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #097fb9, #0ea5a0);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(10,138,203,.25);
}
.btn-secondary {
  background: transparent;
  color: var(--brand-blue);
  border-color: rgba(10,138,203,.35);
}
.btn-secondary:hover {
  background: rgba(20,184,166,.08);
  transform: translateY(-1px);
  color: var(--brand-blue);
}
.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}
.btn-ghost:hover {
  background: var(--slate-100);
  border-color: var(--slate-400);
  color: var(--slate-900);
  transform: translateY(-1px);
}
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 8px }
.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--slate-50);
  border-color: var(--slate-50);
  color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── CTA MICROCOPY ── */
.cta-micro {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--slate-600);
  font-size: 14px;
}
.cta-micro strong { color: var(--slate-900); font-weight: 700 }
.cta-micro .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--slate-300);
}
.cta-link {
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
}
.cta-link:hover { color: var(--accent-hover) }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,.06) }
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 26px; width: auto; display: block }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--slate-900) }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap }
.nav-cta .btn { padding: 10px 18px; font-size: 14px; white-space: nowrap }

.nav-links > li { position: relative; list-style: none }
.nav-links > li > a,
.nav-links > li > .nav-dd-trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}
.nav-links > li > .nav-dd-trigger { -webkit-appearance: none; appearance: none }
.nav-links > li > a:hover,
.nav-links > li > .nav-dd-trigger:hover { color: var(--slate-900) }
.has-mega .mega-chevron { width: 14px; height: 14px; opacity: .6; transition: transform .2s }
.has-mega:hover .mega-chevron,
.has-mega:focus-within .mega-chevron { transform: rotate(180deg) }
.mega-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: 100%;
  min-width: 520px;
  max-width: 680px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15,23,42,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 120;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px }
.mega-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-500);
  margin-bottom: 12px;
}
.mega-links { list-style: none; margin: 0; padding: 0 }
.mega-links li { margin-bottom: 4px }
.mega-links a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-800);
  text-decoration: none;
}
.mega-links a:hover { background: var(--slate-50); color: var(--accent) }
.mega-links a span { display: block; font-size: 12px; font-weight: 400; color: var(--slate-500); margin-top: 2px }
.mega-foot { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--slate-200); font-size: 13px }
.mega-foot a { font-weight: 600 }
.nav-dd-panel {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15,23,42,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 120;
}
.has-mega:hover .nav-dd-panel,
.has-mega:focus-within .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dd-panel .mega-links a { font-weight: 500 }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--slate-900);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle .icon-close { display: none }
.nav-toggle[aria-expanded="true"] .icon-open { display: none }
.nav-toggle[aria-expanded="true"] .icon-close { display: block }
.nav-toggle svg { width: 24px; height: 24px }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(15,23,42,.5);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.nav-backdrop.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 111;
  width: min(100vw - 40px, 320px);
  height: 100vh;
  height: 100dvh;
  padding: 88px 20px 28px;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-drawer.is-open { transform: translateX(0) }
.nav-drawer[aria-hidden="true"] { pointer-events: none }

.nav-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mobile-links li { margin-bottom: 4px }
.nav-mobile-links a {
  display: block;
  padding: 14px 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.nav-mobile-links a:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}
.nav-drawer-cta {
  margin-top: 24px;
}
.nav-drawer-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
}

body.nav-open { overflow: hidden }

@media(max-width:900px) {
  .nav-links { display: none }
  .nav-cta { display: none }
  .nav-toggle { display: flex }
}

/* ── HERO ── */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(165deg, var(--white) 0%, rgba(10,138,203,.08) 40%, rgba(122,107,184,.08) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(20,184,166,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1 }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(20,184,166,.12);
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px }
.hero h1 { margin-bottom: 20px }
.hero-sub {
  font-size: 18px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap }
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width:900px) {
  .hero { padding: 120px 0 60px }
  .hero .container { grid-template-columns: 1fr; gap: 48px }
  .hero-visual { order: -1 }
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(165deg, var(--white) 0%, rgba(10,138,203,.06) 60%, rgba(122,107,184,.06) 100%);
  position: relative;
}
.page-hero .container { position: relative; z-index: 1 }
.page-hero-inner { max-width: 720px }
.page-hero-inner h1 { margin-bottom: 16px }
.page-hero-inner .hero-sub { max-width: 640px; margin-bottom: 24px }
.page-hero-inner .hero-ctas { margin-top: 8px }

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
}
.proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
  padding: 0 24px;
}
.proof-stat .num {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--slate-900);
}
.proof-stat .label {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-200);
}
.proof-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-500);
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 16px;
  background: var(--slate-50);
  border-radius: 6px;
  border: 1px solid var(--slate-200);
}
@media(max-width:768px) {
  .proof-bar .container { gap: 24px }
  .proof-divider { display: none }
  .proof-stat { flex: 1 1 120px }
}

/* ── JOURNEY CARDS ── */
.journey {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}
.journey-header {
  text-align: center;
  margin-bottom: 56px;
}
.journey-header .section-subtitle { margin: 16px auto 0 }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.journey-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all .3s ease;
  text-decoration: none;
  display: block;
  position: relative;
}
.journey-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(37,99,235,.08);
  transform: translateY(-4px);
}
.journey-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity .3s;
}
.journey-card:hover::before { opacity: 1 }
.journey-card:nth-child(1)::before { background: var(--brand-blue) }
.journey-card:nth-child(2)::before { background: var(--brand-teal) }
.journey-card:nth-child(3)::before { background: var(--brand-purple) }
.journey-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.journey-card:nth-child(1) .journey-icon { background: rgba(10,138,203,.1); color: var(--brand-blue) }
.journey-card:nth-child(2) .journey-icon { background: rgba(20,184,166,.1); color: var(--brand-teal) }
.journey-card:nth-child(3) .journey-icon { background: rgba(122,107,184,.12); color: var(--brand-purple) }
.journey-icon svg { width: 24px; height: 24px }
.journey-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--slate-900) }
.journey-card p { font-size: 15px; color: var(--slate-600); margin-bottom: 20px; line-height: 1.65 }
.journey-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.journey-link svg { width: 16px; height: 16px; transition: transform .2s }
.journey-card:hover .journey-link svg { transform: translateX(4px) }

@media(max-width:768px) {
  .journey-grid { grid-template-columns: 1fr }
}

/* ── QUALIFICATION ── */
.qualify {
  padding: 70px 0;
  background: var(--slate-50);
}
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.qualify-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px;
}
.qualify-card h3 { font-size: 20px; margin-bottom: 12px }
.qualify-card ul { list-style: none; margin-top: 14px }
.qualify-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.6;
}
.qualify-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-teal);
}
.qualify-card.notfor li::before { background: rgba(122,107,184,.9) }
.qualify-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--slate-600);
}
@media(max-width:900px) {
  .qualify-grid { grid-template-columns: 1fr }
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}
.how-header { text-align: center; margin-bottom: 64px }
.how-header .section-subtitle { margin: 16px auto 0 }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 2px;
  background: var(--slate-200);
}
.step { text-align: center; position: relative }
.step h3 { font-size: 20px; margin-bottom: 10px }
.step p { font-size: 15px; color: var(--slate-600); max-width: 280px; margin: 0 auto; line-height: 1.65 }
.step-meta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-600);
  background: var(--teal-50);
  padding: 4px 12px;
  border-radius: 100px;
}
@media(max-width:768px) {
  .steps { grid-template-columns: 1fr; gap: 48px }
  .steps::before { display: none }
}

/* ── ENGAGEMENT MODEL ── */
.model {
  padding: 80px 0;
  background: var(--white);
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.model-step {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 18px 18px;
}
.model-step .kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 8px;
}
.model-step h4 { font-size: 16px; margin-bottom: 6px }
.model-step p { font-size: 14px; color: var(--slate-600); line-height: 1.6 }
.model-step .time {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20,184,166,.1);
  color: var(--slate-700);
}
@media(max-width:900px) {
  .model-grid { grid-template-columns: 1fr 1fr }
}
@media(max-width:520px) {
  .model-grid { grid-template-columns: 1fr }
}

/* ── SERVICES ── */
.services {
  padding: var(--section-pad-y) 0;
  background: linear-gradient(135deg, rgba(10,138,203,.06), rgba(20,184,166,.06));
}
.services .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.services-content .section-subtitle { margin-top: 16px }
.services-list {
  list-style: none;
  margin-top: 32px;
}
.services-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  font-size: 15px;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-200);
}
.services-list li:last-child { border: none }
.services-list svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-cards { display: flex; flex-direction: column; gap: 20px }
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 32px;
  transition: all .3s;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(37,99,235,.06);
}
.service-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--slate-900);
}
.service-card p { font-size: 14px; color: var(--slate-600); margin-bottom: 16px; line-height: 1.65 }
.service-card .journey-link { font-size: 14px }

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

/* ── MID-PAGE CTA ── */
.mid-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(10,138,203,.08), rgba(20,184,166,.08), rgba(122,107,184,.08));
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.mid-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 16px;
  padding: 28px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
}
.mid-cta h3 { margin-bottom: 6px }
.mid-cta p { color: var(--slate-600); font-size: 15px }
.mid-cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap }
@media(max-width:900px) {
  .mid-cta-inner { grid-template-columns: 1fr }
  .mid-cta-actions { justify-content: flex-start }
}

/* ── CASE STUDIES ── */
.case-studies {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}
.case-header { text-align: center; margin-bottom: 56px }
.case-header .section-subtitle { margin: 16px auto 0 }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
  text-decoration: none;
  display: block;
}
.case-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  transform: translateY(-4px);
}
.case-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.case-card:nth-child(1) .case-card-img { background: linear-gradient(135deg, #f0fdf4, #dcfce7) }
.case-card:nth-child(2) .case-card-img { background: linear-gradient(135deg, var(--blue-50), #cdeef8) }
.case-card:nth-child(3) .case-card-img { background: linear-gradient(135deg, #fefce8, #fef9c3) }
.case-card:nth-child(4) .case-card-img { background: linear-gradient(135deg, #fdf4ff, #f3e8ff) }
.case-card:nth-child(5) .case-card-img { background: linear-gradient(135deg, #fff7ed, #fed7aa) }
.case-card:nth-child(6) .case-card-img { background: linear-gradient(135deg, #f0fdf4, #bbf7d0) }
.case-badge {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  text-align: center;
  border: 1px solid var(--slate-200);
  position: relative;
  z-index: 2;
}
.case-badge .metric {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--accent);
}
.case-badge .metric-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
  margin-top: 4px;
}
.case-card-body { padding: 24px }
.case-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.case-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--slate-900);
  line-height: 1.4;
}
.case-card-body p { font-size: 14px; color: var(--slate-600); line-height: 1.6 }
.case-points { list-style: none; margin-top: 12px }
.case-points li {
  font-size: 14px;
  color: var(--slate-700);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}
.case-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  opacity: .9;
}
.case-points strong { color: var(--slate-900); font-weight: 800 }

@media(max-width:768px) {
  .case-grid { grid-template-columns: 1fr }
}

/* ── TESTIMONIALS GRID ── */
.testimonials {
  padding: var(--section-pad-y) 0;
  background: linear-gradient(135deg, rgba(20,184,166,.06), rgba(122,107,184,.06));
}
.test-header { text-align: center; margin-bottom: 56px }
.test-header .section-subtitle { margin: 16px auto 0 }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 32px;
}
.test-stars { display: flex; gap: 2px; margin-bottom: 16px }
.test-stars svg { width: 18px; height: 18px; color: #f59e0b }
.test-card blockquote {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.7;
  margin-bottom: 20px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.test-meta .name { font-weight: 600; font-size: 14px; color: var(--slate-900) }
.test-meta .role { font-size: 13px; color: var(--slate-500) }

@media(max-width:768px) {
  .test-grid { grid-template-columns: 1fr }
}

/* ── FAQ ── */
.faq {
  padding: var(--section-pad-y) 0;
  background: var(--slate-50);
}
.faq .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-header .section-subtitle { margin-top: 16px }
.faq-list { list-style: none }
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-item:first-child { border-top: 1px solid var(--slate-200) }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-900);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q svg {
  width: 20px; height: 20px;
  color: var(--slate-400);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg) }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 2000px }
.faq-a-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
}
@media(max-width:900px) {
  .faq .container { grid-template-columns: 1fr }
}

/* ── FAQ — full width variant (no image column) ── */
.faq-full .faq .container { grid-template-columns: 1fr; max-width: 760px }

/* ── FINAL CTA ── */
.final-cta {
  padding: var(--section-pad-y) 0;
  background: var(--navy-800);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 140%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1 }
.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta-sub {
  font-size: 18px;
  color: var(--slate-300);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap }
.final-cta-trust {
  margin-top: 24px;
  font-size: 14px;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.final-cta-trust svg { width: 16px; height: 16px; color: var(--teal-500) }
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37,99,235,.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(20,184,166,.1) 0%, transparent 50%);
}

/* ── FOOTER ── */
.footer {
  padding: 64px 0 32px;
  background: var(--navy-900);
  color: var(--slate-400);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: var(--slate-400);
  max-width: 280px;
}
.footer-brand .nav-logo { font-size: 20px; color: var(--white) }
.footer-trust-badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: var(--slate-300);
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px }
.footer-links a {
  font-size: 14px;
  color: var(--slate-400);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white) }
.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--slate-500) }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
}
.footer-bottom a { color: var(--slate-400) }
.footer-bottom a:hover { color: var(--white) }
.footer-socials { display: flex; gap: 16px }
.footer-socials a {
  color: var(--slate-500);
  transition: color .2s;
}
.footer-socials a:hover { color: var(--white) }
.footer-socials svg { width: 20px; height: 20px }

@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr }
}

/* ── ANCHOR SUBNAV ── */
.anchor-nav {
  padding: 10px 0 14px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.anchor-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.anchor-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-600);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.08);
  background: var(--white);
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.anchor-nav a:hover { color: var(--accent); border-color: rgba(10,138,203,.35); background: var(--blue-50) }

/* ── TESTIMONIAL CAROUSEL ── */
.t-carousel {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
  border-bottom: 1px solid var(--slate-200);
}
.t-carousel-header {
  text-align: center;
  margin-bottom: 24px;
}
.t-carousel-header h2 { font-size: clamp(20px, 2.5vw, 26px); margin-bottom: 8px }
.t-carousel-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 180px;
}
.t-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.t-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.t-slide-inner {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 8px 30px rgba(15,23,42,.06);
}
.t-slide-inner a { color: inherit; text-decoration: none; display: block }
.t-slide-inner a:hover .t-quote { color: var(--accent) }
.t-quote {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-800);
  font-style: italic;
  margin-bottom: 16px;
}
.t-attrib { font-size: 14px; color: var(--slate-600) }
.t-attrib strong { color: var(--slate-900); font-weight: 600 }
.t-read-more { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--accent) }
.t-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.t-carousel-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-700);
  transition: background .2s, border-color .2s;
}
.t-carousel-controls button:hover { background: var(--slate-50); border-color: var(--slate-300) }
.t-dots { display: flex; gap: 8px }
.t-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--slate-300);
  cursor: pointer;
  padding: 0;
}
.t-dots button[aria-selected="true"] { background: var(--accent); transform: scale(1.15) }

/* ── SUBSCRIBE PANEL ── */
.subscribe-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100vw - 24px, 380px);
  height: 100vh;
  height: 100dvh;
  z-index: 200;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.subscribe-panel.is-open { transform: translateX(0) }
.subscribe-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(15,23,42,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.subscribe-panel-backdrop.is-open { opacity: 1; pointer-events: auto }
.subscribe-panel-header {
  padding: 20px 20px 12px;
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.subscribe-panel-header h3 { font-size: 18px; margin: 0 }
.subscribe-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--slate-100);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.subscribe-panel-body { padding: 20px; flex: 1; overflow-y: auto }
.subscribe-panel-body .fine { font-size: 12px; color: var(--slate-500); line-height: 1.5 }

/* Mobile drawer accordions */
.nav-acc { border-top: 1px solid var(--slate-200); margin-top: 12px; padding-top: 8px }
.nav-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
}
.nav-acc-trigger svg { width: 18px; height: 18px; transition: transform .2s }
.nav-acc-panel[hidden] { display: none !important }
.nav-acc.is-open .nav-acc-trigger svg { transform: rotate(180deg) }
.nav-acc-panel { padding: 0 4px 8px 12px }
.nav-acc-panel a {
  display: block;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-700);
  text-decoration: none;
  border-radius: 8px;
}
.nav-acc-panel a:hover { background: var(--slate-100); color: var(--slate-900) }

/* ── PHOTO TREATMENTS ── */
.hero-photo-wrap { position: relative }
.hero-photo {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.hero-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-float-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon svg { width: 22px; height: 22px }
.hero-float-card .float-label { font-size: 13px; color: var(--slate-500) }
.hero-float-card .float-value { font-family: var(--font-heading); font-size: 20px; color: var(--slate-900) }
.hero-float-card .float-source { font-size: 11px; color: var(--slate-500); margin-top: 6px; line-height: 1.35 }
@media(max-width:900px) {
  .hero-float-card { bottom: -16px; left: 8px; padding: 14px 18px }
}
.step-icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-num-overlay {
  position: absolute;
  top: 0; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  z-index: 2;
  top: -4px; right: -4px;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s, color .2s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.back-to-top svg { width: 20px; height: 20px }
@media(max-width:768px) {
  .back-to-top { bottom: 24px; right: 16px }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HUB PAGES (T2) ── */
.hub-hero {
  padding: 120px 0 72px;
  position: relative;
}
.hub-hero-start { background: linear-gradient(165deg, var(--white) 0%, rgba(10,138,203,.08) 60%) }
.hub-hero-improve { background: linear-gradient(165deg, var(--white) 0%, rgba(20,184,166,.09) 60%) }
.hub-hero-optimise { background: linear-gradient(165deg, var(--white) 0%, rgba(122,107,184,.09) 60%) }
.hub-hero-inner { max-width: 680px }
.hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hub-pill-start { background: rgba(10,138,203,.12); color: var(--brand-blue) }
.hub-pill-improve { background: rgba(20,184,166,.12); color: var(--teal-600) }
.hub-pill-optimise { background: rgba(122,107,184,.14); color: var(--brand-purple) }
.hub-featured {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}
.hub-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.article-card {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all .3s;
}
.article-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.article-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--blue-50), rgba(20,184,166,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.article-card-body { padding: 20px }
.article-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
  margin-bottom: 8px;
}
.article-card-body h3 { font-size: 17px; color: var(--slate-900); margin-bottom: 8px; line-height: 1.4 }
.article-card-body p { font-size: 14px; color: var(--slate-600); line-height: 1.6; margin-bottom: 12px }
.article-meta { font-size: 13px; color: var(--slate-400) }
@media(max-width:768px) {
  .hub-articles-grid { grid-template-columns: 1fr }
}

/* ── SERVICES INDEX (T3) ── */
.services-grid-page {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-detail-card {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 36px;
  text-decoration: none;
  display: block;
  transition: all .3s;
}
.service-detail-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(10,138,203,.09);
  transform: translateY(-3px);
}
.service-detail-card .svc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-detail-card h3 { font-size: 22px; margin-bottom: 10px }
.service-detail-card p { font-size: 15px; color: var(--slate-600); line-height: 1.65; margin-bottom: 16px }
@media(max-width:768px) {
  .services-card-grid { grid-template-columns: 1fr }
}

/* ── SERVICE DETAIL (T4) ── */
.service-detail-page {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.service-main h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 16px; margin-top: 40px }
.service-main h2:first-child { margin-top: 0 }
.service-main p { font-size: 16px; color: var(--slate-700); line-height: 1.7; margin-bottom: 16px }
.service-main ul { list-style: none; margin-bottom: 24px }
.service-main ul li {
  padding: 10px 0 10px 20px;
  position: relative;
  font-size: 15px;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
}
.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 19px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-teal);
}
.service-sidebar {
  position: sticky;
  top: 96px;
}
.sidebar-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 { font-size: 16px; margin-bottom: 12px }
.sidebar-card p { font-size: 14px; color: var(--slate-600); line-height: 1.6; margin-bottom: 16px }
.sidebar-card .btn { width: 100%; justify-content: center }
@media(max-width:900px) {
  .service-layout { grid-template-columns: 1fr }
  .service-sidebar { position: static }
}

/* ── ARTICLE (T8) ── */
.article-page {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.article-body h2 { font-size: clamp(20px, 2.5vw, 26px); margin: 36px 0 14px; color: var(--slate-900) }
.article-body h3 { font-size: clamp(18px, 2vw, 22px); margin: 28px 0 12px; color: var(--slate-900) }
.article-body p { font-size: 17px; color: var(--slate-700); line-height: 1.8; margin-bottom: 20px }
.article-body ul, .article-body ol { margin: 0 0 20px 20px }
.article-body li { font-size: 16px; color: var(--slate-700); line-height: 1.75; margin-bottom: 8px }
.article-body blockquote {
  border-left: 4px solid var(--brand-teal);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--teal-50);
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  color: var(--slate-800);
  font-style: italic;
  line-height: 1.6;
}
.article-header-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--slate-500);
}
.article-tag-pill {
  background: var(--blue-50);
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.inline-cta {
  background: linear-gradient(135deg, rgba(10,138,203,.07), rgba(20,184,166,.07));
  border: 1px solid rgba(10,138,203,.2);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 40px 0;
}
.inline-cta h4 { font-size: 18px; margin-bottom: 8px }
.inline-cta p { font-size: 14px; color: var(--slate-600); margin-bottom: 16px; line-height: 1.6 }
.inline-cta .btn { font-size: 14px; padding: 10px 20px }
.article-sidebar { position: sticky; top: 96px }
@media(max-width:900px) {
  .article-layout { grid-template-columns: 1fr }
  .article-sidebar { position: static }
}

/* ── CASE STUDY DETAIL (T6) ── */
.case-detail-hero {
  padding: 120px 0 56px;
  background: linear-gradient(165deg, var(--white) 0%, rgba(10,138,203,.06) 60%);
}
.case-detail-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
}
.case-meta-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--blue-50);
  color: var(--brand-blue);
}
.case-results-strip {
  display: flex;
  gap: 0;
  margin: 48px 0;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  overflow: hidden;
}
.case-result {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--slate-200);
}
.case-result:last-child { border-right: none }
.case-result .big {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.case-result .label { font-size: 13px; color: var(--slate-600); font-weight: 500 }
@media(max-width:600px) {
  .case-results-strip { flex-direction: column }
  .case-result { border-right: none; border-bottom: 1px solid var(--slate-200) }
  .case-result:last-child { border-bottom: none }
}
.case-detail-body {
  padding: 64px 0 var(--section-pad-y);
  background: var(--white);
}
.case-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.case-main h2 { font-size: clamp(20px, 2.5vw, 26px); margin: 36px 0 14px; color: var(--slate-900) }
.case-main h2:first-child { margin-top: 0 }
.case-main p { font-size: 17px; color: var(--slate-700); line-height: 1.8; margin-bottom: 20px }
.pull-quote {
  background: var(--slate-50);
  border-left: 4px solid var(--brand-teal);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.pull-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--slate-800);
  line-height: 1.6;
  margin-bottom: 10px;
}
.pull-quote cite { font-size: 14px; color: var(--slate-500); font-style: normal }
@media(max-width:900px) {
  .case-detail-layout { grid-template-columns: 1fr }
}

/* ── BLOG INDEX (T7) ── */
.blog-hero {
  padding: 120px 0 64px;
  background: linear-gradient(165deg, var(--white), rgba(10,138,203,.06));
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media(max-width:768px) {
  .blog-grid { grid-template-columns: 1fr }
}
.blog-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.blog-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-600);
  text-decoration: none;
  transition: all .2s;
}
.blog-pill:hover, .blog-pill.active { background: var(--blue-50); border-color: rgba(10,138,203,.3); color: var(--brand-blue) }

/* ── RESOURCES (T9 / T10) ── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.resource-card {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all .3s;
}
.resource-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.resource-card-img {
  height: 140px;
  background: linear-gradient(135deg, var(--blue-50), rgba(20,184,166,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.resource-card-body { padding: 20px }
.resource-card-body h3 { font-size: 17px; color: var(--slate-900); margin-bottom: 8px; line-height: 1.4 }
.resource-card-body p { font-size: 14px; color: var(--slate-600); line-height: 1.6; margin-bottom: 12px }
.resource-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.resource-badge-free { background: var(--teal-50); color: var(--teal-600) }
.resource-badge-gated { background: rgba(122,107,184,.1); color: var(--brand-purple) }
@media(max-width:768px) {
  .resource-grid { grid-template-columns: 1fr }
}

/* ── LEAD MAGNET (T10) ── */
.lead-magnet-hero {
  padding: 120px 0 56px;
  background: linear-gradient(165deg, var(--white) 0%, rgba(10,138,203,.07) 60%);
}
.lead-magnet-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  padding: var(--section-pad-y) 0;
}
.lead-magnet-form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  position: sticky;
  top: 96px;
}
.lead-magnet-form-card h3 { font-size: 20px; margin-bottom: 8px }
.lead-magnet-form-card p { font-size: 14px; color: var(--slate-600); margin-bottom: 20px; line-height: 1.6 }
.form-group { margin-bottom: 16px }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--slate-700); margin-bottom: 6px }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--brand-blue);
}
.form-group textarea { min-height: 100px; resize: vertical }
.form-consent { font-size: 13px; color: var(--slate-500); line-height: 1.5; margin-bottom: 20px }
.form-consent a { color: var(--accent) }
.form-placeholder-notice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 6px 12px;
  border-radius: 8px;
  margin-top: 12px;
}
@media(max-width:900px) {
  .lead-magnet-layout { grid-template-columns: 1fr }
  .lead-magnet-form-card { position: static }
}

/* ── ABOUT (T12) ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: var(--section-pad-y) 0;
}
.about-content h2 { margin-bottom: 16px }
.about-content p { font-size: 16px; color: var(--slate-600); line-height: 1.75; margin-bottom: 16px }
.about-values { list-style: none; margin-top: 24px }
.about-values li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-100);
  font-size: 15px;
  color: var(--slate-700);
}
.about-values li:last-child { border: none }
.about-values svg { width: 20px; height: 20px; color: var(--brand-teal); flex-shrink: 0; margin-top: 2px }
.about-visual {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,138,203,.12), rgba(20,184,166,.1));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width:900px) {
  .about-layout { grid-template-columns: 1fr }
}

/* ── TEAM (T13) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
}
.team-card-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-50), rgba(122,107,184,.12));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}
.team-card-body { padding: 20px }
.team-card-body h3 { font-size: 18px; margin-bottom: 4px }
.team-role { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 10px }
.team-bio { font-size: 14px; color: var(--slate-600); line-height: 1.6 }
@media(max-width:768px) {
  .team-grid { grid-template-columns: 1fr 1fr }
}
@media(max-width:480px) {
  .team-grid { grid-template-columns: 1fr }
}

/* ── CONTACT / SUBSCRIBE / FORMS (T14, T17) ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  padding: var(--section-pad-y) 0;
}
.contact-info h2 { margin-bottom: 16px }
.contact-info p { font-size: 16px; color: var(--slate-600); line-height: 1.7; margin-bottom: 24px }
.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--slate-700);
}
.contact-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0 }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.contact-form-card h3 { font-size: 20px; margin-bottom: 8px }
.contact-form-card > p { font-size: 14px; color: var(--slate-600); margin-bottom: 24px; line-height: 1.6 }
@media(max-width:900px) {
  .contact-layout { grid-template-columns: 1fr }
}

/* ── BOOK (T18) ── */
.book-hero {
  padding: 120px 0 56px;
  background: linear-gradient(165deg, var(--white) 0%, rgba(10,138,203,.07) 60%);
}
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  padding: var(--section-pad-y) 0;
}
.book-embed-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
}
.book-embed-card svg { width: 48px; height: 48px; color: var(--slate-300); margin-bottom: 16px }
.book-embed-card p { font-size: 14px; color: var(--slate-500); line-height: 1.6; max-width: 280px }
@media(max-width:900px) {
  .book-layout { grid-template-columns: 1fr }
}

/* ── LEGAL (T20) ── */
.legal-page {
  padding: 120px 0 var(--section-pad-y);
}
.legal-content {
  max-width: 760px;
}
.legal-content h2 { font-size: clamp(20px, 2.5vw, 26px); margin: 40px 0 14px }
.legal-content h2:first-child { margin-top: 0 }
.legal-content h3 { font-size: 18px; margin: 28px 0 10px }
.legal-content p { font-size: 16px; color: var(--slate-700); line-height: 1.8; margin-bottom: 16px }
.legal-content ul, .legal-content ol { margin: 0 0 16px 20px }
.legal-content li { font-size: 16px; color: var(--slate-700); line-height: 1.75; margin-bottom: 8px }
.legal-updated {
  font-size: 13px;
  color: var(--slate-400);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 20px;
  padding-top: 88px;
  padding-bottom: 0;
}
.breadcrumb a { color: var(--slate-500) }
.breadcrumb a:hover { color: var(--accent) }
.breadcrumb-sep { color: var(--slate-300) }
.breadcrumb-current { color: var(--slate-700); font-weight: 500 }

/* ── WEBINAR MODULE (T22 embed) ── */
.webinar-module {
  padding: 80px 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}
.webinar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.webinar-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.webinar-video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}
.webinar-play-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  color: var(--white);
}
.webinar-content h3 { margin-bottom: 12px }
.webinar-outcomes { list-style: none; margin: 20px 0 28px }
.webinar-outcomes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 15px;
  color: var(--slate-700);
}
.webinar-outcomes svg { width: 18px; height: 18px; color: var(--brand-teal); flex-shrink: 0; margin-top: 3px }
@media(max-width:768px) {
  .webinar-inner { grid-template-columns: 1fr }
}

/* ── SPOTLIGHT / PULL QUOTE ── */
.spotlight {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(122,107,184,.08), rgba(10,138,203,.06));
}
.spotlight-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.spotlight-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.5;
  color: var(--slate-900);
  position: relative;
  padding: 0 24px;
}
.spotlight-quote::before {
  content: '\201C';
  font-size: 72px;
  color: var(--accent);
  opacity: .2;
  position: absolute;
  top: -20px;
  left: -12px;
  line-height: 1;
}
.spotlight-author {
  margin-top: 24px;
  font-size: 15px;
  color: var(--slate-600);
}
.spotlight-author strong {
  display: block;
  font-weight: 600;
  color: var(--slate-900);
}

/* ── ABOVE PROOF ── */
.above-proof {
  padding: 28px 0 10px;
  background: var(--white);
}
.above-proof-inner {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 18px 18px;
  background: linear-gradient(135deg, rgba(10,138,203,.05), rgba(20,184,166,.04));
}
.above-proof-quote {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.above-proof-quote blockquote {
  font-size: 14px;
  color: var(--slate-700);
  line-height: 1.6;
}
.above-proof-quote .meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--slate-600);
}
.above-proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.partner-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12,25,41,.12);
  background: rgba(255,255,255,.8);
  color: var(--slate-700);
}
.partner-badge strong { color: var(--slate-900) }
.partner-badge.teal { border-color: rgba(20,184,166,.35) }
.partner-badge.blue { border-color: rgba(10,138,203,.35) }
@media(max-width:900px) {
  .above-proof-inner { grid-template-columns: 1fr }
  .above-proof-badges { justify-content: flex-start }
}

/* ── LEGAL PAGES (privacy policy, cookie policy etc.) ── */
.legal-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
  padding: var(--section-pad-y) 0;
}
.legal-body h2 {
  font-size: 22px;
  color: var(--slate-900);
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-100);
}
.legal-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0 }
.legal-body h3 { font-size: 17px; color: var(--slate-800); margin: 24px 0 8px }
.legal-body p { font-size: 15px; color: var(--slate-700); line-height: 1.75; margin-bottom: 14px }
.legal-body ul { margin: 0 0 14px 24px }
.legal-body li { font-size: 15px; color: var(--slate-700); line-height: 1.7; margin-bottom: 6px }
.legal-body a { color: var(--accent) }
.legal-sidebar { position: sticky; top: 96px }
@media(max-width:900px) {
  .legal-layout { grid-template-columns: 1fr }
  .legal-sidebar { position: static }
}

/* ── RESOURCE PREVIEW (lead magnet page) ── */
.resource-preview {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--slate-50);
  border-radius: 12px;
  border: 1px solid var(--slate-200);
}
.resource-preview-icon { color: var(--brand-teal) }
.resource-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--teal-50);
  color: var(--teal-700);
  margin-bottom: 10px;
}
.resource-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.resource-link:hover { text-decoration: underline }

/* Inline resource card variant (no img block) */
.resource-card h3 {
  font-size: 16px;
  color: var(--slate-900);
  margin-bottom: 6px;
  line-height: 1.4;
  padding: 16px 16px 0;
}
.resource-card p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
  padding: 0 16px 8px;
}
.resource-card .resource-tag { margin: 16px 16px 0 }
.resource-card .resource-link { display: block; padding: 0 16px 16px; margin-top: 8px }

/* lead-magnet-layout alias using contact-form-card */
.lead-magnet-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  padding: var(--section-pad-y) 0;
}
@media(max-width:900px) {
  .lead-magnet-layout { grid-template-columns: 1fr }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .subscribe-panel { transition: none }
  .t-slide { transition: none }
}
