/* ═══════════════════════════════════════════════════════
   home.css
   Homepage-only styles: hero, trust bar, problem,
   segments, services, process, results, why, markets,
   insights, FAQ, CTA banner — and their responsive rules.
   Requires: common.css
   ═══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   SECTION 1 — HERO
   LCP element: H1 — no layout shift, clamp sizing
───────────────────────────────────────── */
.hero {
  background: var(--navy-900);
  min-height: calc(100svh - 60px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* CSS-only gradient overlays — no extra image requests */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 100% 60%, rgba(212,168,42,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 0%   0%,  rgba(27,58,92,.9)    0%, transparent 55%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 50px) clamp(20px, 5vw, 80px) clamp(48px, 8vw, 80px);
  display: grid;
  grid-template-columns: 1fr min(420px, 40%);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gold-400);
  margin-bottom: 18px;
}

.hero-eyebrow {
  font-family: var(--font-m);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-300);
  margin-bottom: 24px;
}

/* PERF: no layout-shift animation on LCP element */
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em     { font-style: italic; color: var(--gold-300); }
.hero h1 strong { font-weight: 700; }

.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,.52);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-avatars { display: flex; }

.proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  background: linear-gradient(135deg, var(--navy-500), var(--navy-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 11px;
  color: var(--white);
  margin-left: -7px;
}
.proof-avatar:first-child { margin-left: 0; }

.proof-text {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}
.proof-text strong {
  color: rgba(255,255,255,.65);
  font-weight: 600;
}

/* Stats panel — right column */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  min-width: 0;
}

.hero-stat {
  background: rgba(10,25,41,.5);
  padding: clamp(18px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
  transition: background 200ms;
}
.hero-stat:hover { background: rgba(10,25,41,.7); }

.hero-stat-v {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.hero-stat-v span { color: var(--gold-300); }

.hero-stat-l {
  font-family: var(--font-m);
  font-size: clamp(8px, 1vw, 10px);
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,42,.35), transparent);
}


/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--warm-200);
  padding: clamp(14px, 2vw, 20px) 0;
}

.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--warm-200);
  background: var(--off-white);
  flex-shrink: 0;
}

.trust-icon { font-size: 15px; line-height: 1; }

.trust-tm {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
  white-space: nowrap;
}

.trust-ts {
  font-size: 10px;
  color: var(--ink-600);
  margin-top: 1px;
  font-family: var(--font-m);
  letter-spacing: .5px;
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--warm-200);
  flex-shrink: 0;
}

.mkt-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mkt-lbl {
  font-family: var(--font-m);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-600);
}

.mkt-flags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.mflag {
  font-family: var(--font-m);
  font-size: 9px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--navy-50);
  color: var(--navy-600);
  border: 1px solid var(--navy-100);
  letter-spacing: .5px;
}


/* ─────────────────────────────────────────
   SECTION 2 — PROBLEM / AUTHORITY
───────────────────────────────────────── */
.problem { background: var(--off-white); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.problem-left .h2 { margin-bottom: 20px; }

.prob-lead {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink-500);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.prob-body {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: 20px;
}

.stat-pull {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 32px);
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 8px;
  box-shadow: var(--sh-sm);
  border-left: 4px solid var(--gold-400);
  margin-bottom: 28px;
}

.sp-v {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.sp-v span { color: var(--gold-600); }

.sp-l {
  font-size: 11px;
  color: var(--ink-600);
  font-family: var(--font-m);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

/* Problem cards — right column */
.prob-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prob-card {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 22px) clamp(16px, 2vw, 24px);
  box-shadow: var(--sh-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease);
}
.prob-card:hover {
  box-shadow: var(--sh-md);
  transform: translateX(3px);
}

.prob-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--navy-500);
}

.prob-content h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 4px;
  font-family: var(--font-b);
}
.prob-content p {
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* Problem tag pills */
.prob-tag {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 2px 7px;
  border-radius: 2px;
  margin-top: 6px;
}
.pt-trust { background: var(--gold-50);   color: var(--gold-700); }
.pt-seo   { background: var(--navy-50);   color: var(--navy-600); }
.pt-ops   { background: #EEF8F2;          color: #1E6B3C; }
.pt-cash  { background: #FEF2F2;          color: #C0392B; }
.pt-comp  { background: #F3F0FF;          color: #5B21B6; }


/* ─────────────────────────────────────────
   SECTION 3 — SEGMENTS / WHO WE HELP
───────────────────────────────────────── */
.segments { background: var(--white); }

.seg-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.seg-header .h2 { margin-bottom: 14px; }

.seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.seg-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--warm-200);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
  display: flex;
  flex-direction: column;
}
.seg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-xl);
}

.seg-card-top {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px) clamp(20px, 2.5vw, 28px);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.seg-card-top::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

/* Segment colour themes */
.sc-navy .seg-card-top { background: var(--navy-700); }
.sc-gold .seg-card-top { background: linear-gradient(135deg, #3D2800, var(--gold-700)); }
.sc-dark .seg-card-top { background: linear-gradient(135deg, #111, #2E2E2E); }

.seg-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.seg-card-top h3 {
  font-family: var(--font-d);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.seg-card-top p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

.seg-body {
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 32px);
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.seg-pains {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.seg-pains li {
  font-size: 13px;
  color: var(--ink-600);
  padding: 7px 0;
  border-bottom: 1px solid var(--warm-100);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.4;
}
.seg-pains li:last-child { border-bottom: none; }
.seg-pains li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.sc-navy .seg-pains li::before { background: var(--navy-400); }
.sc-gold .seg-pains li::before { background: var(--gold-400); }
.sc-dark .seg-pains li::before { background: var(--ink-600); }

.seg-result {
  background: var(--off-white);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--warm-200);
}

.sr-v {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.sc-navy .sr-v { color: var(--navy-600); }
.sc-gold .sr-v { color: var(--gold-600); }
.sc-dark .sr-v { color: var(--ink-700); }

.sr-l {
  font-size: 11.5px;
  color: var(--ink-500);
  line-height: 1.5;
}

.seg-lnk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: gap 180ms var(--ease);
}
.sc-navy .seg-lnk { color: var(--navy-600); }
.sc-gold .seg-lnk { color: var(--gold-700); }
.sc-dark .seg-lnk { color: var(--ink-700); }
.seg-card:hover .seg-lnk { gap: 10px; }


/* ─────────────────────────────────────────
   SECTION 4 — SERVICES
───────────────────────────────────────── */
.services { background: var(--cream); }

.svc-header { margin-bottom: clamp(36px, 5vw, 64px); }
.svc-header .h2  { margin-bottom: 16px; max-width: 520px; }
.svc-header p    {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.75;
  max-width: 500px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 8px;
  padding: clamp(20px, 2.5vw, 32px) clamp(18px, 2vw, 28px);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
/* Top accent bar */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-600), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-n {
  font-family: var(--font-m);
  font-size: 9px;
  color: var(--gold-700);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.svc-card h3 {
  font-family: var(--font-d);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-card p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.svc-tag {
  font-family: var(--font-m);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 7px;
  border-radius: 2px;
  background: var(--navy-50);
  color: var(--navy-500);
  border: 1px solid var(--navy-100);
}


/* ─────────────────────────────────────────
   SECTION 5 — PROCESS / FRAMEWORK
───────────────────────────────────────── */
.process {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,168,42,.05) 0%, transparent 65%);
}

.process-hd {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
  position: relative;
  z-index: 1;
}
.process-hd .h2  { color: var(--white); margin-bottom: 14px; }
.process-hd .lead {
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

.proc-div {
  width: 1px;
  background: rgba(255,255,255,.07);
}

.proc-step { padding: 0 clamp(20px, 3vw, 40px); }
.proc-step:first-child { padding-left: 0; }
.proc-step:last-child  { padding-right: 0; }

.ps-bg {
  font-family: var(--font-d);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: rgba(255,255,255,.4);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -3px;
}

.ps-ph {
  font-family: var(--font-m);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-400);
  margin-bottom: 12px;
  display: block;
}

.ps-ti {
  font-family: var(--font-d);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.ps-bd {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ps-ul { list-style: none; }
.ps-ul li {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ps-ul li:last-child { border-bottom: none; }
.ps-ul li::before {
  content: '→';
  color: var(--gold-400);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ─────────────────────────────────────────
   SECTION 6 — RESULTS / CASE STUDIES
───────────────────────────────────────── */
.results { background: var(--off-white); }

.results-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(32px, 5vw, 56px);
  gap: 20px;
  flex-wrap: wrap;
}
.results-hd .h2 { max-width: 420px; }

.results-meta p {
  font-size: 13px;
  color: var(--ink-600);
  text-align: right;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.case-card {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-xl);
}

.case-top {
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.case-top::after {
  content: '';
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(212,168,42,.06);
}

.case-tag {
  display: inline-flex;
  font-family: var(--font-m);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 2px;
  background: rgba(212,168,42,.15);
  color: var(--gold-300);
  margin-bottom: 12px;
}

.case-top h3 {
  font-family: var(--font-d);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.case-loc {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-family: var(--font-m);
  letter-spacing: .8px;
  margin-bottom: 10px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border-top: 1px solid rgba(255,255,255,.07);
}

.cm {
  padding: clamp(10px, 1.5vw, 16px) clamp(8px, 1.5vw, 20px);
  text-align: center;
  background: rgba(10,25,41,.4);
}

.cm-v {
  font-family: var(--font-d);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
  letter-spacing: -.5px;
}

.cm-l {
  font-family: var(--font-m);
  font-size: 8px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

.case-body {
  padding: clamp(18px, 2.5vw, 28px) clamp(18px, 2.5vw, 32px);
  flex: 1;
}

.case-q {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--ink-600);
  line-height: 1.65;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--gold-200);
}

.case-auth {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ca-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.ca-n {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
}
.ca-t {
  font-size: 11px;
  color: var(--ink-600);
  margin-top: 1px;
}

.case-svcs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--warm-100);
}

.cs-t {
  font-family: var(--font-m);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 7px;
  border-radius: 2px;
  background: var(--navy-50);
  color: var(--navy-500);
  border: 1px solid var(--navy-100);
}

.results-bottom {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 8px;
  padding: clamp(18px, 2.5vw, 28px) clamp(20px, 3vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--sh-sm);
}
.rb-p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.5;
}
.rb-p strong { color: var(--navy-700); }


/* ─────────────────────────────────────────
   SECTION 7 — WHY US
───────────────────────────────────────── */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.why-left .h2 { margin-bottom: 18px; }

.why-lead {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink-500);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.why-p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: 18px;
}

.pillars { display: flex; flex-direction: column; }

.pillar {
  padding: clamp(16px, 2vw, 22px) 0;
  border-bottom: 1px solid var(--warm-100);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar:last-child { border-bottom: none; }

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  margin-top: 2px;
}

.pillar h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 4px;
  font-family: var(--font-b);
}
.pillar p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.65;
}

/* Comparison table */
.cmp-wrap {
  background: var(--off-white);
  border: 1px solid var(--warm-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}

.cmp thead { background: var(--navy-800); }
.cmp thead th {
  padding: 13px 14px;
  font-family: var(--font-m);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.8);
  text-align: center;
  font-weight: 500;
}
.cmp thead th:first-child { text-align: left; }
.cmp thead th.ours        { color: var(--gold-300); }

.cmp tbody tr { border-bottom: 1px solid var(--warm-100); }
.cmp tbody tr:last-child { border-bottom: none; }
.cmp tbody td {
  padding: 11px 14px;
  font-size: 12.5px;
  color: var(--ink-500);
  text-align: center;
}
.cmp tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ink-700);
  font-size: 13px;
}
.cmp tbody td.ours {
  background: rgba(27,58,92,.03);
  color: var(--navy-600);
  font-weight: 600;
}

.ct-y { color: #27AE60; font-size: 15px; }
.ct-n { color: var(--ink-800); font-size: 15px; }
.ct-p { color: var(--gold-700); font-size: 12px; font-weight: 500; }


/* ─────────────────────────────────────────
   SECTION 8 — MARKETS
───────────────────────────────────────── */
.markets {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.markets::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 60% at 10% 50%, rgba(212,168,42,.05) 0%, transparent 60%);
}

.markets-hd {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
  position: relative;
  z-index: 1;
}
.markets-hd .h2  { color: var(--white); margin-bottom: 14px; }
.markets-hd .lead {
  color: rgba(255,255,255,.6);
  max-width: 800px;
  margin: 0 auto;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
  position: relative;
  z-index: 1;
}

.mkt-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
  transition: background 200ms, border-color 200ms;
}
.mkt-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(212,168,42,.25);
}

.mkt-flag    { font-size: 26px; margin-bottom: 12px; color: #bc852f; }
.mkt-country {
  font-family: var(--font-d);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.mkt-reg {
  font-family: var(--font-m);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 14px;
  display: block;
}

.mkt-ins {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 16px;
}

.mkt-opps { list-style: none; }
.mkt-opps li {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.mkt-opps li:last-child { border-bottom: none; }
.mkt-opps li::before {
  content: '▸';
  color: var(--gold-500);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ─────────────────────────────────────────
   SECTION 9 — INSIGHTS
───────────────────────────────────────── */
.insights { background: var(--off-white); }

.ins-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(28px, 4vw, 48px);
  gap: 16px;
  flex-wrap: wrap;
}

.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
}

.ins-card {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  display: flex;
  flex-direction: column;
}
.ins-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}

.ins-thumb {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
  flex-shrink: 0;
}

.ins-body {
  padding: clamp(16px, 2vw, 22px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ins-tag {
  display: inline-flex;
  font-family: var(--font-m);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 9px;
}
.it-s { background: var(--navy-50);  color: var(--navy-600); border: 1px solid var(--navy-100); }
.it-g { background: var(--gold-50);  color: var(--gold-700); border: 1px solid var(--gold-100); }
.it-r { background: #EEF8F2;         color: #1E6B3C;         border: 1px solid #C3E8D2; }

.ins-body h3 {
  font-family: var(--font-d);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--navy-700);
  line-height: 1.3;
  margin-bottom: 8px;
}
.ins-body p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.ins-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--warm-100);
  margin-top: auto;
}
.ins-meta span {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--ink-600);
}


/* ─────────────────────────────────────────
   SECTION 10 — FAQ
───────────────────────────────────────── */
.faq { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.faq-left .h2 { margin-bottom: 18px; }
.faq-left p   {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

.faq-items { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--warm-200); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: clamp(14px, 2vw, 18px) 0;
  text-align: left;
  font-family: var(--font-b);
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  font-weight: 600;
  color: var(--ink-800);
  transition: color 180ms;
  min-height: 44px;
}
.faq-q:hover,
.faq-q.open { color: var(--navy-600); }

.faq-ic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy-500);
  transition: transform 250ms var(--ease), background 180ms, color 180ms;
}
.faq-q.open .faq-ic {
  transform: rotate(45deg);
  background: var(--navy-600);
  color: var(--white);
  border-color: var(--navy-600);
}

.faq-a {
  display: none;
  padding: 0 0 16px;
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.7;
}
.faq-a.open { display: block; }


/* ─────────────────────────────────────────
   SECTION 11 — CTA BANNER
───────────────────────────────────────── */
.cta-ban {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 100px) 0;
}
.cta-ban::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,168,42,.06) 0%, transparent 65%);
}
.cta-ban::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,42,.4), transparent);
}

.cta-in {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  align-items: center;
}
.cta-in .eyebrow { justify-content: center; margin-bottom: 18px; }

.cta-h {
  font-family: var(--font-d);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.cta-h em { font-style: italic; color: var(--gold-300); }

.cta-s {
  font-size: clamp(14px, 1.7vw, 16px);
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-ra {
  display: flex;
  justify-content: left;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
}

.cra {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-family: var(--font-m);
  letter-spacing: .5px;
}
.cra::before {
  content: '✓';
  color: var(--gold-400);
  font-size: 10px;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768–1024px)
   Homepage section rules only
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Hero: single column */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero h1    { font-size: clamp(36px, 6vw, 54px); }

  /* Problem: single column */
  .problem-grid { grid-template-columns: 1fr; }
  .prob-cards   { margin-top: 8px; }

  /* Segments: single column, horizontal card layout */
  .seg-grid         { grid-template-columns: 1fr; }
  .seg-card         { flex-direction: row; max-height: none; }
  .seg-card-top     { flex: 0 0 220px; display: flex; flex-direction: column; justify-content: center; }
  .seg-body         { flex: 1; }

  /* Services: 2 columns */
  .svc-grid { grid-template-columns: 1fr 1fr; }

  /* Process: 2-column grid */
  .process-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .proc-div     { display: none; }
  .proc-step {
    padding: clamp(20px, 3vw, 32px) 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .proc-step:nth-child(odd)  { padding-right: 20px; }
  .proc-step:nth-child(even) { padding-left: 20px; }

  /* Results: single column */
  .results-grid { grid-template-columns: 1fr; }

  /* Why: single column */
  .why-grid { grid-template-columns: 1fr; }

  /* Markets: 2 columns */
  .markets-grid { grid-template-columns: repeat(2, 1fr); }

  /* Insights: 2 columns */
  .ins-grid { grid-template-columns: 1fr 1fr; }

  /* FAQ: single column */
  .faq-grid { grid-template-columns: 1fr; }

  /* Trust bar separator */
  .trust-sep { display: none; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (<767px)
   Homepage section rules only
   ═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Hero */
  .hero-inner  { padding: clamp(48px, 10vw, 72px) 20px clamp(40px, 8vw, 60px); }
  .hero h1     { font-size: clamp(34px, 8vw, 48px); }
  .hero-stats  { grid-template-columns: 1fr 1fr; }
  .hero-ctas   { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Segments: pure stack */
  .seg-card     { flex-direction: column; }
  .seg-card-top { flex: none; }

  /* Services: single column */
  .svc-grid { grid-template-columns: 1fr; }

  /* Process: single column */
  .process-grid { grid-template-columns: 1fr; }
  .proc-step:nth-child(odd),
  .proc-step:nth-child(even) { padding: 20px 0; }

  /* Markets: single column */
  .markets-grid { grid-template-columns: 1fr; }

  /* Insights: single column */
  .ins-grid { grid-template-columns: 1fr; }

  /* Trust bar: horizontal scroll */
  .trust-bar-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .trust-item { flex-shrink: 0; }
  .mkt-row    { flex-shrink: 0; }

  /* Results */
  .results-hd     { flex-direction: column; align-items: flex-start; }
  .results-meta p { text-align: left; }
  .results-bottom { flex-direction: column; align-items: flex-start; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Insights header */
  .ins-hd { flex-direction: column; align-items: flex-start; }

  /* Stat pull */
  .stat-pull { gap: 20px; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (<480px)
   Homepage section rules only
   ═══════════════════════════════════════════════════════ */
@media (max-width: 479px) {

  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero h1    { font-size: clamp(30px, 9vw, 42px); }

  .case-metrics { grid-template-columns: repeat(3, 1fr); }

  .cta-btns      { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  .faq-q { font-size: 13px; }

  /* Comparison table: allow horizontal scroll */
  .cmp-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.insights .ins-body h3{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.insights .ins-body p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}