/* GrowthPath Advisory — Website Homepage */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --gp-blue: #1E5BCC;
  --gp-blue-2: #1647A0;
  --gp-blue-deep: #0E2F6B;
  --gp-blue-tint: #E8EFFB;
  --gp-blue-tint-2: #F4F7FD;
  --gp-blue-soft: #B8CDF0;

  --gp-navy: #0A1628;
  --gp-navy-2: #122140;
  --gp-ink: #0F172A;
  --gp-graphite: #1F2937;
  --gp-slate: #475569;
  --gp-mute: #94A3B8;

  --gp-paper: #FAFAF9;
  --gp-paper-2: #F4F4F2;
  --gp-paper-3: #FFFFFF;
  --gp-line: #E5E7EB;
  --gp-line-2: #EEF0F3;

  --gp-warn: #B91C1C;
  --gp-good: #15803D;
  --gp-good-tint: #F0FDF4;
  --gp-gold: #B98900;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1280px;
  --maxw-tight: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--gp-paper-3);
  color: var(--gp-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.container-tight { max-width: var(--maxw-tight); margin: 0 auto; padding: 0 40px; }
@media (max-width: 760px) { .container, .container-tight { padding: 0 22px; } }

/* ---- Type ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gp-blue);
}
.eyebrow-light { color: var(--gp-blue-soft); }

h1, h2, h3, h4 { font-family: var(--font-body); letter-spacing: -0.022em; margin: 0; color: var(--gp-ink); text-wrap: balance; }
h1 { font-size: clamp(40px, 5vw, 66px); line-height: 1.04; font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; font-weight: 700; letter-spacing: -0.026em; }
h3 { font-size: 21px; line-height: 1.25; font-weight: 600; letter-spacing: -0.018em; }
p { margin: 0; text-wrap: pretty; }

.section { padding: 110px 0; }
@media (max-width: 760px) { .section { padding: 72px 0; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: 8px;
  font-weight: 600; font-size: 14.5px; letter-spacing: -0.005em;
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease, color 140ms ease, border-color 140ms ease;
  white-space: nowrap; border: 1px solid transparent;
}
.btn-primary { background: var(--gp-blue); color: white; border-color: var(--gp-blue); box-shadow: 0 1px 2px rgba(14,47,107,0.2), inset 0 1px 0 rgba(255,255,255,0.15); }
.btn-primary:hover { background: var(--gp-blue-2); border-color: var(--gp-blue-2); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(30,91,204,0.32); }
.btn-ghost { background: transparent; color: var(--gp-ink); border-color: var(--gp-line); }
.btn-ghost:hover { background: var(--gp-ink); color: white; border-color: var(--gp-ink); }
.btn-ghost-light { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: white; color: var(--gp-navy); border-color: white; }
.btn-lg { padding: 17px 28px; font-size: 15.5px; }
.btn-arrow { display: inline-block; transition: transform 200ms cubic-bezier(.5,0,.3,1); font-family: var(--font-mono); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--gp-line); box-shadow: 0 1px 20px -8px rgba(15,23,42,0.12); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav-logo img { height: 30px; }
.nav-main { display: flex; align-items: center; gap: 4px; }
@media (max-width: 1024px) { .nav-main { display: none; } }

.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 7px;
  font-size: 14.5px; font-weight: 500; color: var(--gp-slate);
  transition: color 140ms ease, background 140ms ease;
}
.nav-link:hover { color: var(--gp-ink); background: var(--gp-paper-2); }
.nav-link .chev { width: 9px; height: 9px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-1px); transition: transform 200ms ease; opacity: 0.6; }
.nav-item:hover .nav-link .chev { transform: rotate(225deg) translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gp-ink); }
.nav-phone .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--gp-good); box-shadow: 0 0 0 3px var(--gp-good-tint); }
@media (max-width: 600px) { .nav-phone { display: none; } }
.nav-cta { padding: 11px 20px; border-radius: 7px; background: var(--gp-blue); color: white; font-size: 14px; font-weight: 600; border: 1px solid var(--gp-blue); transition: all 140ms ease; }
.nav-cta:hover { background: var(--gp-blue-2); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(30,91,204,0.3); }

/* Mega dropdown */
.nav-mega {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 620px;
  background: white;
  border: 1px solid var(--gp-line);
  border-radius: 16px;
  box-shadow: 0 30px 60px -24px rgba(15,23,42,0.28);
  padding: 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  z-index: 90;
}
.nav-item:hover .nav-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-mega::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }

.mega-card { display: flex; gap: 14px; padding: 14px; border-radius: 10px; transition: background 140ms ease; align-items: flex-start; }
.mega-card:hover { background: var(--gp-paper); }
.mega-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 9px; background: var(--gp-blue-tint); color: var(--gp-blue); display: inline-flex; align-items: center; justify-content: center; }
.mega-ic svg { width: 20px; height: 20px; }
.mega-tx .t { font-size: 14.5px; font-weight: 600; color: var(--gp-ink); display: flex; align-items: center; gap: 8px; }
.mega-tx .t .tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; font-weight: 700; text-transform: uppercase; color: var(--gp-blue); background: var(--gp-blue-tint); padding: 2px 6px; border-radius: 3px; }
.mega-tx .d { font-size: 12.5px; color: var(--gp-slate); margin-top: 3px; line-height: 1.45; }

/* ---- Hero ---- */
.hero { position: relative; padding: 72px 0 88px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(ellipse 50% 50% at 85% 10%, rgba(30,91,204,0.07) 0%, transparent 60%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } .hero { padding: 56px 0 64px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px; border-radius: 999px;
  background: white; border: 1px solid var(--gp-line);
  font-size: 12.5px; font-weight: 500; color: var(--gp-slate);
  margin-bottom: 26px; box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.hero-badge .pip { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; color: white; background: var(--gp-blue); padding: 3px 8px; border-radius: 999px; text-transform: uppercase; }
.hero h1 .hl { color: var(--gp-blue); }
.hero-sub { margin-top: 22px; font-size: 18.5px; line-height: 1.55; color: var(--gp-slate); max-width: 520px; }
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-rating { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-stars { display: flex; gap: 2px; color: var(--gp-gold); font-size: 15px; }
.hero-rating-tx { font-size: 13px; color: var(--gp-slate); }
.hero-rating-tx strong { color: var(--gp-ink); font-weight: 600; }
.hero-rating .sep { width: 1px; height: 26px; background: var(--gp-line); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo { width: 100%; height: 540px; border-radius: 20px; box-shadow: 0 40px 80px -40px rgba(15,23,42,0.4); }
@media (max-width: 980px) { .hero-photo { height: 420px; } }

.hero-float {
  position: absolute; background: white; border: 1px solid var(--gp-line);
  border-radius: 14px; padding: 16px 18px; box-shadow: 0 20px 40px -20px rgba(15,23,42,0.25);
}
.hero-float-1 { top: 28px; left: -28px; display: flex; align-items: center; gap: 12px; }
@media (max-width: 1180px) { .hero-float-1 { left: 12px; } }
.hero-float-1 .ic { width: 38px; height: 38px; border-radius: 999px; background: var(--gp-good-tint); color: var(--gp-good); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
.hero-float-1 .tx .t { font-size: 14px; font-weight: 700; color: var(--gp-ink); }
.hero-float-1 .tx .s { font-size: 11.5px; color: var(--gp-slate); }

.hero-float-2 { bottom: 26px; right: -24px; width: 220px; }
@media (max-width: 1180px) { .hero-float-2 { right: 10px; } }
@media (max-width: 460px) { .hero-float-1, .hero-float-2 { display: none; } }
.hero-float-2 .l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gp-mute); font-weight: 700; }
.hero-float-2 .row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 8px; }
.hero-float-2 .row .name { font-size: 13px; font-weight: 600; color: var(--gp-ink); }
.hero-float-2 .row .amt { font-size: 13px; font-weight: 700; color: var(--gp-blue); font-family: var(--font-mono); }
.hero-float-2 .bar { height: 5px; border-radius: 999px; background: var(--gp-line-2); margin-top: 10px; overflow: hidden; }
.hero-float-2 .bar span { display: block; height: 100%; width: 78%; border-radius: 999px; background: var(--gp-blue); }
.hero-float-2 .foot { margin-top: 8px; font-size: 11px; color: var(--gp-good); font-weight: 600; }

/* ---- Stat bar ---- */
.statbar { border-top: 1px solid var(--gp-line); border-bottom: 1px solid var(--gp-line); background: var(--gp-paper); }
.statbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .statbar-grid { grid-template-columns: repeat(2, 1fr); } }
.statbar-cell { padding: 36px 28px; border-right: 1px solid var(--gp-line); }
.statbar-cell:last-child { border-right: none; }
@media (max-width: 760px) { .statbar-cell:nth-child(2n) { border-right: none; } .statbar-cell:nth-child(-n+2) { border-bottom: 1px solid var(--gp-line); } }
.statbar-v { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; color: var(--gp-ink); line-height: 1; }
.statbar-v .u { color: var(--gp-blue); }
.statbar-l { font-size: 13px; color: var(--gp-slate); margin-top: 10px; }

/* ---- Section header ---- */
.shead { margin-bottom: 48px; max-width: 760px; }
.shead h2 { margin-top: 14px; }
.shead-aside { color: var(--gp-slate); font-size: 17px; line-height: 1.55; max-width: 640px; margin-top: 18px; }
.shead-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.shead-center h2 { margin-top: 14px; }
.shead-center p { margin-top: 16px; color: var(--gp-slate); font-size: 17px; }

/* ---- Products ---- */
.products { background: var(--gp-paper); border-top: 1px solid var(--gp-line); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.pcard {
  background: white; border: 1px solid var(--gp-line);
  border-radius: 16px; padding: 28px; display: flex; flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  position: relative; overflow: hidden; min-height: 300px;
}
.pcard:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -28px rgba(15,23,42,0.25); border-color: rgba(30,91,204,0.3); }
/* Featured product — same size as the rest, dark treatment */
.pcard.feat { background: var(--gp-navy); color: white; border-color: var(--gp-navy); }

.pcard-ic { width: 46px; height: 46px; border-radius: 11px; background: var(--gp-blue-tint); color: var(--gp-blue); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.pcard-ic svg { width: 23px; height: 23px; }
.pcard.feat .pcard-ic { background: rgba(255,255,255,0.12); color: white; }
.pcard-name { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--gp-ink); margin-bottom: 8px; }
.pcard.feat .pcard-name { color: white; font-size: 24px; }
.pcard-desc { font-size: 14px; color: var(--gp-slate); line-height: 1.55; margin-bottom: 20px; flex: 1; }
.pcard.feat .pcard-desc { color: rgba(255,255,255,0.72); font-size: 15px; }
.pcard-meta { display: flex; gap: 20px; padding-top: 18px; border-top: 1px solid var(--gp-line); margin-bottom: 18px; }
.pcard.feat .pcard-meta { border-color: rgba(255,255,255,0.14); }
.pcard-meta .m .mv { font-size: 16px; font-weight: 700; color: var(--gp-ink); letter-spacing: -0.018em; }
.pcard.feat .pcard-meta .m .mv { color: white; }
.pcard-meta .m .ml { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gp-mute); font-weight: 600; margin-top: 4px; }
.pcard-link { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 16px; border-radius: 8px; background: var(--gp-paper-2); font-size: 14px; font-weight: 600; color: var(--gp-ink); transition: background 140ms ease; }
.pcard-link:hover { background: var(--gp-line); }
.pcard.feat .pcard-link { background: rgba(255,255,255,0.1); color: white; }
.pcard.feat .pcard-link:hover { background: rgba(255,255,255,0.18); }
.pcard-link .ar { font-family: var(--font-mono); transition: transform 200ms ease; }
.pcard:hover .pcard-link .ar { transform: translateX(4px); }
.pcard .feat-tag { position: absolute; top: 18px; right: 18px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; font-weight: 700; text-transform: uppercase; color: var(--gp-navy); background: white; padding: 4px 9px; border-radius: 999px; }

/* ---- Why / value props ---- */
.why { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 32px; border: 1px solid var(--gp-line); border-radius: 16px; background: var(--gp-paper); }
.why-ic { width: 44px; height: 44px; border-radius: 11px; background: white; border: 1px solid var(--gp-line); color: var(--gp-blue); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-ic svg { width: 22px; height: 22px; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--gp-slate); line-height: 1.6; }

/* ---- How it works ---- */
.how2 { background: var(--gp-paper); border-top: 1px solid var(--gp-line); border-bottom: 1px solid var(--gp-line); }
.how2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .how2-grid { grid-template-columns: 1fr; gap: 40px; } }
.how2-steps { display: flex; flex-direction: column; gap: 4px; }
.how2-step { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--gp-line); }
.how2-step:first-child { border-top: none; }
.how2-num { width: 40px; height: 40px; border-radius: 999px; background: var(--gp-blue); color: white; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.how2-step h3 { margin-bottom: 6px; }
.how2-step p { font-size: 14.5px; color: var(--gp-slate); line-height: 1.55; }
.how2-photo { height: 520px; border-radius: 20px; box-shadow: 0 40px 80px -44px rgba(15,23,42,0.4); }
@media (max-width: 900px) { .how2-photo { height: 360px; } }

/* ---- Who we serve ---- */
.serve { background: white; }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .serve-grid { grid-template-columns: 1fr; } }
.serve-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 4; border: 1px solid var(--gp-line); }
.serve-card image-slot { width: 100%; height: 100%; }
.serve-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.1) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; pointer-events: none; }
.serve-overlay .st { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gp-blue-soft); font-weight: 700; margin-bottom: 8px; }
.serve-overlay .sn { font-size: 19px; font-weight: 700; color: white; letter-spacing: -0.018em; line-height: 1.15; }
.serve-overlay .sd { font-size: 13px; color: rgba(255,255,255,0.78); margin-top: 6px; line-height: 1.45; }

/* ---- Testimonials ---- */
.tst { background: var(--gp-paper); border-top: 1px solid var(--gp-line); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .tst-grid { grid-template-columns: 1fr; } }
.tst-card { background: white; border: 1px solid var(--gp-line); border-radius: 16px; padding: 30px; display: flex; flex-direction: column; }
.tst-stars { display: flex; gap: 2px; color: var(--gp-gold); font-size: 14px; margin-bottom: 18px; }
.tst-quote { font-size: 16px; line-height: 1.6; color: var(--gp-ink); letter-spacing: -0.01em; flex: 1; }
.tst-who { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gp-line); }
.tst-who image-slot { width: 46px; height: 46px; border-radius: 999px; flex-shrink: 0; }
.tst-who .nm { font-size: 14px; font-weight: 700; color: var(--gp-ink); }
.tst-who .biz { font-size: 12.5px; color: var(--gp-slate); margin-top: 2px; }

/* ---- Final CTA ---- */
.cta2 { background: var(--gp-navy); color: white; position: relative; overflow: hidden; padding: 120px 0; }
.cta2::before { content: ''; position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(ellipse 60% 60% at 80% 0%, rgba(30,91,204,0.34) 0%, transparent 60%),
  radial-gradient(ellipse 50% 50% at 0% 100%, rgba(30,91,204,0.16) 0%, transparent 65%); }
.cta2::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-image:
  linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
  linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%); }
.cta2-inner { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.cta2 h2 { color: white; font-size: clamp(34px, 4.6vw, 58px); }
.cta2 p { margin-top: 22px; font-size: 18px; color: rgba(255,255,255,0.72); max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.cta2-row { margin-top: 36px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta2-micro { margin-top: 22px; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.42); letter-spacing: 0.12em; text-transform: uppercase; }

/* ---- Footer ---- */
.footer { background: var(--gp-navy); color: rgba(255,255,255,0.5); padding: 64px 0 40px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-brand img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.55); line-height: 1.55; max-width: 300px; }
.footer-col-h { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; padding: 6px 0; font-size: 13.5px; color: rgba(255,255,255,0.7); font-weight: 500; transition: color 120ms ease; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; }
.footer-bottom .legal { max-width: 640px; line-height: 1.6; font-size: 11.5px; color: rgba(255,255,255,0.38); }

/* ---- Real images (replace image-slot placeholders) ---- */
img.hero-photo { width: 100%; height: 540px; object-fit: cover; }
@media (max-width: 980px) { img.hero-photo { height: 420px; } }
img.how2-photo { width: 100%; height: 520px; object-fit: cover; }
@media (max-width: 900px) { img.how2-photo { height: 360px; } }
.serve-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tst-who img { width: 46px; height: 46px; border-radius: 999px; object-fit: cover; flex-shrink: 0; }

/* ============================================================
   MOBILE — center all content (<= 760px)
   ============================================================ */
@media (max-width: 760px) {
  /* Hero */
  .hero-grid > div { text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-rating { justify-content: center; }

  /* Stat bar */
  .statbar-cell { text-align: center; }

  /* Section headers (products, who we serve) */
  .shead { text-align: center; }
  .shead-aside { margin-left: auto; margin-right: auto; }

  /* Product cards — center content, keep divider + button full width */
  .pcard { align-items: center; text-align: center; }
  .pcard-meta { width: 100%; justify-content: center; }
  .pcard-link { width: 100%; }

  /* Why cards */
  .why-card { text-align: center; }

  /* How it works — stack each step, number on top */
  .how2-grid > div { text-align: center; }
  .how2-step { grid-template-columns: 1fr; justify-items: center; text-align: center; }

  /* Who we serve — center overlay captions */
  .serve-overlay { align-items: center; text-align: center; }

  /* Testimonials */
  .tst-card { text-align: center; }
  .tst-stars { justify-content: center; }
  .tst-who { justify-content: center; }

  /* Footer */
  .footer-top { text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom .legal { margin-left: auto; margin-right: auto; }
}
