/* ── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --cream:      #f4f4f2;
  --white:      #ffffff;
  --green:      #013c33;
  --green-mid:  #025040;
  --lime:       #c8f224;
  --lime-dark:  #acd01e;
  --ink:        #0f0f0f;
  --body:       #3d3d3d;
  --muted:      #777;
  --border:     #e4e3e0;
  --border-w:   #ebebeb;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:       cubic-bezier(.4, 0, .2, 1);
  --r:          14px;
  --r-sm:       8px;
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── REVEAL ──────────────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; } .delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; } .delay-6 { transition-delay: .48s; }

/* ── SHARED ──────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 800;
  line-height: 1.08; letter-spacing: -.03em; margin-bottom: 16px; color: var(--ink);
}
.section-header p { font-size: 17px; color: var(--muted); max-width: 440px; margin: 0 auto; line-height: 1.7; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; border: none; transition: all .22s var(--ease); white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }

.btn-lime  { background: var(--lime); color: #000; font-weight: 700; }
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,242,36,.35); }

.btn-dark  { background: var(--green); color: #fff; font-weight: 600; }
.btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(1,60,51,.25); }

.btn-outline-dark { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline-dark:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.play-dot {
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.play-dot::after {
  content: ''; width: 0; height: 0;
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor; margin-left: 2px;
}

/* ── VIDEO MODAL ─────────────────────────────────────────────────────────── */
.vmodal {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.vmodal.open { opacity: 1; pointer-events: all; }
.vmodal-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.82); backdrop-filter: blur(8px); cursor: pointer;
}
.vmodal-box {
  position: relative; z-index: 1;
  width: min(880px, 92vw); aspect-ratio: 16/9;
  border-radius: var(--r); overflow: hidden;
  transform: scale(.93) translateY(14px); transition: transform .38s var(--ease);
  box-shadow: 0 32px 100px rgba(0,0,0,.6);
}
.vmodal.open .vmodal-box { transform: scale(1) translateY(0); }
.vmodal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.vmodal-close:hover { background: rgba(255,255,255,.3); }
#vmodal-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; inset: 0 0 auto; z-index: 200;
  padding: 18px 0; border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
#nav.scrolled {
  background: rgba(244,244,242,.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); border-color: var(--border); padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 30px; width: auto; object-fit: contain; display: block; }
.logo-text { font-size: 18px; font-weight: 800; letter-spacing: -.03em; line-height: 1; display: none; align-items: center; }
.logo-text b { font-weight: 800; color: var(--green); }
.logo-text em { font-style: normal; color: var(--lime-dark); margin-left: 1px; }

.nav-links { display: flex; align-items: center; gap: 26px; margin: 0 auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--body);
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1.5px; background: var(--green);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-toggle span { display: block; width: 21px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(244,244,242,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.nav-mobile.open { max-height: 400px; padding: 24px 28px 32px; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 20px; }
.nav-mobile a { font-size: 15px; font-weight: 500; color: var(--body); transition: color .2s; }
.nav-mobile a:hover { color: var(--green); }
.nav-mobile .btn { width: 100%; justify-content: center; }

/* ── §1 HERO ─────────────────────────────────────────────────────────────── */
#hero {
  padding: 120px 0 80px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-deco {
  position: absolute; top: -60px; right: -80px;
  width: 600px; height: auto; pointer-events: none; z-index: 0;
}
.hero-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-size: 12.5px; font-weight: 500; color: var(--body); margin-bottom: 28px;
}
.badge-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero-h1 {
  font-size: clamp(44px, 5.5vw, 76px); font-weight: 900;
  line-height: .97; letter-spacing: -.045em; margin-bottom: 22px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-h1 span { display: block; }
.hero-accent { color: var(--green); }

.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px); color: var(--body);
  max-width: 480px; line-height: 1.75; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--white); margin-left: -8px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-stars { font-size: 12px; color: #f5a623; letter-spacing: 1px; margin-bottom: 2px; }
.hero-trust p { font-size: 12.5px; color: var(--muted); }
.hero-trust strong { color: var(--ink); }

/* Hero video panel */
.hero-right { position: relative; }
.hero-video-frame {
  background: var(--ink); border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.1);
  position: relative;
}
.hv-chrome {
  display: flex; align-items: center; gap: 8px;
  background: #1e1e1e; padding: 10px 16px;
}
.hv-dot { width: 11px; height: 11px; border-radius: 50%; }
.hv-dot.r { background: #ff5f57; }
.hv-dot.y { background: #febc2e; }
.hv-dot.g { background: #28c840; }
.hv-url {
  margin-left: 8px; font-size: 11px; color: #777;
  background: #2a2a2a; padding: 3px 12px; border-radius: 4px;
}
.hv-poster {
  position: relative; aspect-ratio: 16/9; cursor: pointer; overflow: hidden;
}
.hv-poster img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.hv-poster:hover img { transform: scale(1.03); }
.hv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,60,51,.35) 0%, rgba(0,0,0,.25) 100%);
  transition: background .3s;
}
.hv-poster:hover .hv-overlay { background: linear-gradient(135deg, rgba(1,60,51,.5) 0%, rgba(0,0,0,.35) 100%); }

.hv-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none;
}
.hv-play-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); }
.hv-ring {
  position: absolute; border-radius: 50%; border: 2px solid rgba(200,242,36,.5);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hv-ring.r1 { width: 84px; height: 84px; animation: ringExpand 2.5s ease-in-out infinite; }
.hv-ring.r2 { width: 84px; height: 84px; animation: ringExpand 2.5s ease-in-out infinite .6s; }
@keyframes ringExpand {
  0% { transform: translate(-50%,-50%) scale(.8); opacity: .7; }
  100% { transform: translate(-50%,-50%) scale(1.8); opacity: 0; }
}
.hv-play-core {
  width: 64px; height: 64px; border-radius: 50%; background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(200,242,36,.45);
  transition: transform .25s var(--ease), box-shadow .25s;
  position: relative; z-index: 1;
}
.hv-poster:hover .hv-play-core { transform: scale(1.07); box-shadow: 0 6px 28px rgba(200,242,36,.6); }
.hv-play-core svg { margin-left: 4px; }
.hv-caption {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .04em; text-shadow: 0 1px 4px rgba(0,0,0,.5);
  position: relative; z-index: 1;
}

.hv-float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.hv-float-1 { bottom: -20px; left: -24px; animation: floatA 4s ease-in-out infinite; }
.hv-float-2 { top: -20px; right: -24px; animation: floatB 4s ease-in-out infinite .8s; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
.hf-icon { display: flex; align-items: center; justify-content: center; }
.hv-float strong { display: block; font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1; }
.hv-float span { font-size: 11px; color: var(--muted); }

/* ── §2 STATS ─────────────────────────────────────────────────────────────── */
#stats { background: var(--green); padding: 64px 0; }
.stats-row {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-sep { width: 1px; height: 56px; background: rgba(244,244,242,.15); align-self: center; }
.stat-item { flex: 1; min-width: 160px; text-align: center; padding: 20px 24px; }
.stat-n {
  font-size: clamp(38px, 4.5vw, 56px); font-weight: 900; letter-spacing: -.04em;
  color: var(--lime); line-height: 1; margin-bottom: 6px;
}
.stat-l { font-size: 12px; font-weight: 600; color: rgba(244,244,242,.6); text-transform: uppercase; letter-spacing: .08em; }

/* ── §3 PARTNERS ─────────────────────────────────────────────────────────── */
#partners { background: var(--white); padding: 48px 0; border-bottom: 1px solid var(--border-w); }
.partners-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #aaa; margin-bottom: 24px; }
.marquee-outer { overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent); }
.marquee-inner {
  display: flex; align-items: center; width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.partner-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 0 32px; height: 44px; flex-shrink: 0;
}
.partner-logo img {
  height: 28px; width: auto; max-width: 110px; object-fit: contain;
  filter: grayscale(1) opacity(.45);
  transition: filter .25s var(--ease);
}
.partner-logo img:hover { filter: grayscale(0) opacity(1); }
.partner-text {
  font-size: 14px; font-weight: 700; color: #bbb; letter-spacing: -.01em;
  white-space: nowrap; cursor: default; transition: color .2s;
}
.partner-text:hover { color: var(--body); }
.logo-fallback {
  font-size: 14px; font-weight: 700; color: #bbb; white-space: nowrap;
  cursor: default; transition: color .2s; letter-spacing: -.01em;
}
.logo-fallback:hover { color: var(--body); }

/* ── §4 PROBLEM ──────────────────────────────────────────────────────────── */
#problem { background: var(--cream); padding: 100px 0; }
.problem-grid {
  display: grid; grid-template-columns: 1fr 48px 1fr;
  gap: 0; align-items: center;
}
.problem-arrow {
  display: flex; align-items: center; justify-content: center;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }

.problem-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 36px;
}
.problem-before { border-color: #e8e0e0; }
.problem-after { border-color: rgba(1,60,51,.25); background: rgba(1,60,51,.02); }

.pc-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.pc-header span { font-size: 13px; font-weight: 700; color: var(--ink); }

.pc-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pc-icon-bad { background: rgba(220,50,50,.1); color: #c43030; }
.pc-icon-good { background: rgba(1,60,51,.1); color: var(--green); }

.pc-list { display: flex; flex-direction: column; gap: 14px; }
.pc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--body); line-height: 1.5;
}
.pc-x { flex-shrink: 0; margin-top: 2px; color: #c43030; }
.pc-check { flex-shrink: 0; margin-top: 2px; color: var(--green); }

/* ── §5 WHY PEAKPOINT (TABS) ─────────────────────────────────────────────── */
#why { background: var(--white); padding: 100px 0; }

.tabs-bar {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 6px; margin-bottom: 40px;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.tab-btn {
  padding: 10px 22px; border-radius: 8px;
  border: none; background: transparent;
  font-size: 14px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--green); color: var(--white); box-shadow: 0 2px 8px rgba(1,60,51,.25); }

.tabs-content { position: relative; }
.tab-panel { display: none; animation: tabFadeIn .35s var(--ease); }
.tab-panel.active { display: block; }
@keyframes tabFadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

.tab-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 18px; padding: 60px;
}
.tab-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 12px; }
.tab-text h3 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; color: var(--ink); }
.tab-text p { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 24px; }
.tab-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.tab-list li { font-size: 14px; color: var(--body); padding-left: 22px; position: relative; }
.tab-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); border: 2px solid var(--green); }

.tab-visual { display: flex; justify-content: center; }
.tab-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px; text-align: center;
  width: 260px; transition: box-shadow .3s;
}
.tab-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.tc-featured { background: var(--green); color: var(--white); border-color: var(--green); }
.tc-featured .tc-label { color: rgba(244,244,242,.65); }
.tc-featured .tc-items span { background: rgba(244,244,242,.1); color: rgba(244,244,242,.85); border-color: rgba(244,244,242,.15); }
.tc-top { margin-bottom: 20px; display: flex; justify-content: center; }
.tc-stat { font-size: 40px; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; color: var(--green); }
.tc-featured .tc-stat { color: var(--lime); }
.tc-label { font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 20px; }
.tc-items { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tc-items span { font-size: 11.5px; font-weight: 600; padding: 4px 10px; background: var(--cream); border: 1px solid var(--border); border-radius: 100px; color: var(--body); }

/* ── §6 SERVICES ─────────────────────────────────────────────────────────── */
#services { background: var(--cream); padding: 100px 0; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.svc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 36px; position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.svc-card:hover {
  border-color: var(--green); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(1,60,51,.1);
}
.svc-featured { border-color: var(--green); }
.svc-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--lime); color: #000; padding: 3px 9px; border-radius: 100px;
}
.svc-icon-wrap {
  width: 52px; height: 52px; background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background .25s, border-color .25s;
}
.svc-card:hover .svc-icon-wrap { background: rgba(1,60,51,.05); border-color: rgba(1,60,51,.2); }
.svc-num { font-size: 10px; font-weight: 800; letter-spacing: .12em; color: #aaa; display: block; margin-bottom: 8px; }
.svc-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.svc-card > p { font-size: 14px; color: var(--body); line-height: 1.75; margin-bottom: 20px; }
.svc-bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.svc-bullets li { font-size: 13px; color: var(--body); padding-left: 18px; position: relative; }
.svc-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 12px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600; color: var(--green);
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, gap .2s;
}
.svc-link:hover { border-color: var(--green); gap: 8px; }
.svc-link span { transition: transform .2s; }
.svc-link:hover span { transform: translateX(2px); }

/* ── §7 WHO WE SERVE ─────────────────────────────────────────────────────── */
#who { background: var(--white); padding: 100px 0; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.who-card {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 32px 28px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column; gap: 0;
}
.who-card:hover {
  border-color: var(--green); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(1,60,51,.09);
}

.who-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--green);
  transition: background .25s, border-color .25s;
}
.who-card:hover .who-icon { background: rgba(1,60,51,.06); border-color: rgba(1,60,51,.2); }

.who-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; color: var(--ink); }
.who-card p { font-size: 13.5px; color: var(--body); line-height: 1.75; flex: 1; margin-bottom: 20px; }
.who-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; background: var(--green); color: var(--lime);
  padding: 4px 10px; border-radius: 100px;
}

/* ── §8 COMPARISON ───────────────────────────────────────────────────────── */
#compare { background: var(--white); padding: 100px 0; }
.cmp {
  border: 1.5px solid var(--border); border-radius: 16px;
  overflow: hidden; box-shadow: 0 8px 48px rgba(0,0,0,.06);
  background: var(--white);
}
.cmp-hdr {
  display: grid; grid-template-columns: 2.2fr 1.3fr 1fr 1fr 1fr;
  background: var(--cream); border-bottom: 2px solid var(--border);
}
.cmp-hdr-feature {
  padding: 20px 24px;
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  display: flex; align-items: flex-end;
}
.cmp-hdr-pp {
  padding: 20px 20px; background: var(--green);
  display: flex; flex-direction: column; gap: 3px;
}
.cmp-badge {
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  background: var(--lime); color: #000; padding: 2px 8px; border-radius: 100px;
  width: fit-content; margin-bottom: 4px;
}
.cmp-hdr-pp strong { font-size: 14px; font-weight: 800; color: var(--white); }
.cmp-hdr-pp span { font-size: 11px; color: rgba(244,244,242,.55); }
.cmp-hdr-alt {
  padding: 20px 16px; border-left: 1px solid var(--border);
  font-size: 12px; font-weight: 700; color: var(--body);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.cmp-row {
  display: grid; grid-template-columns: 2.2fr 1.3fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-w); cursor: pointer;
  transition: background .15s var(--ease);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: rgba(1,60,51,.02); }
.cmp-row.open { background: rgba(1,60,51,.025); }
.cmp-feature { padding: 18px 24px; display: flex; flex-direction: column; gap: 3px; }
.cmp-fname {
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 7px; line-height: 1.4;
}
.cmp-fsub { font-size: 12px; color: var(--muted); font-style: italic; }
.cmp-icon {
  display: inline-flex; width: 18px; height: 18px; flex-shrink: 0;
  align-items: center; justify-content: center;
  background: var(--border); border-radius: 50%;
  font-size: 14px; color: var(--muted); font-style: normal; line-height: 1;
  transition: transform .3s var(--ease), background .2s, color .2s;
}
.cmp-row.open .cmp-icon { transform: rotate(45deg); background: var(--green); color: var(--lime); }
.cmp-cell {
  padding: 18px 16px; border-left: 1px solid var(--border-w);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 12.5px;
}
.cmp-pp {
  background: rgba(1,60,51,.04);
  border-left: 2px solid rgba(1,60,51,.15) !important;
  border-right: 2px solid rgba(1,60,51,.15);
}
.cmp-row.open .cmp-pp { background: rgba(1,60,51,.08); }
.cv-yes { color: #1a7a3d; font-weight: 700; }
.cv-no { color: #c43030; }
.cv-maybe { color: #9a6b00; }
.cmp-detail {
  grid-column: 1 / -1; max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  font-size: 13.5px; color: var(--body); line-height: 1.75;
  background: rgba(1,60,51,.04); padding: 0 24px;
}
.cmp-row.open .cmp-detail {
  max-height: 120px; padding: 16px 24px;
  border-top: 1px solid rgba(1,60,51,.1);
}

/* ── §9 PROCESS (REDESIGNED) ─────────────────────────────────────────────── */
#process { background: var(--green); padding: 100px 0; }
#process .section-header h2 { color: var(--white); }
#process .eyebrow { color: var(--lime); }
#process .section-header p { color: rgba(244,244,242,.6); }

.proc-timeline { position: relative; }
.proc-connector {
  position: absolute; top: 32px; left: calc(12.5% - 1px); right: calc(12.5% - 1px);
  height: 1px; background: linear-gradient(to right, transparent, rgba(200,242,36,.25) 15%, rgba(200,242,36,.25) 85%, transparent);
  z-index: 0; pointer-events: none;
}
.proc-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.proc-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(244,244,242,.1);
  border-radius: var(--r); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.proc-card:hover {
  background: rgba(255,255,255,.09); border-color: rgba(200,242,36,.35);
  transform: translateY(-4px);
}
.proc-num-bg {
  position: absolute; top: -8px; right: -4px;
  font-size: 72px; font-weight: 900; letter-spacing: -.06em;
  color: rgba(200,242,36,.07); line-height: 1; pointer-events: none;
  user-select: none; font-variant-numeric: tabular-nums;
}
.proc-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lime); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(200,242,36,.15);
}
.proc-dot span { font-size: 11px; font-weight: 900; color: #000; letter-spacing: .04em; }
.proc-time-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(200,242,36,.12); color: var(--lime); border: 1px solid rgba(200,242,36,.2);
  padding: 3px 10px; border-radius: 100px;
}
.proc-icon {
  width: 38px; height: 38px; background: rgba(244,244,242,.07); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.proc-icon svg { stroke: rgba(200,242,36,.8); }
.proc-card h3 {
  font-size: 17px; font-weight: 700; color: var(--white);
  letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.25;
  position: relative; z-index: 1;
}
.proc-card p {
  font-size: 13.5px; color: rgba(244,244,242,.55);
  line-height: 1.75; position: relative; z-index: 1;
}

/* ── §10 DELIVERABLES ────────────────────────────────────────────────────── */
#deliverables { background: var(--white); padding: 100px 0; }
.deliv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.deliv-card {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 32px 28px;
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.deliv-card:hover {
  border-color: var(--green); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(1,60,51,.09);
}
.deliv-freq {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: var(--green); color: var(--lime); padding: 3px 10px; border-radius: 100px;
}
.deliv-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .25s, border-color .25s;
}
.deliv-card:hover .deliv-icon { background: rgba(1,60,51,.06); border-color: rgba(1,60,51,.2); }
.deliv-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; color: var(--ink); }
.deliv-card p { font-size: 13.5px; color: var(--body); line-height: 1.75; margin-bottom: 20px; }
.deliv-list { display: flex; flex-direction: column; gap: 7px; }
.deliv-list li {
  font-size: 12.5px; color: var(--body); padding-left: 16px; position: relative; line-height: 1.4;
}
.deliv-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; font-size: 11px; top: 1px; }

/* ── §11 VIDEO TESTIMONIALS ──────────────────────────────────────────────── */
#vtestimonials { background: var(--white); padding: 100px 0; }
.vtesti-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vtesti-card {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.vtesti-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(1,60,51,.1); }
.vtesti-vid {
  position: relative; aspect-ratio: 16/9; cursor: pointer; overflow: hidden;
}
.vtesti-vid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.vtesti-card:hover .vtesti-vid img { transform: scale(1.03); }
.vt-overlay { position: absolute; inset: 0; background: rgba(1,60,51,.35); transition: background .3s; }
.vtesti-card:hover .vt-overlay { background: rgba(1,60,51,.5); }
.vt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.9);
  width: 52px; height: 52px; border-radius: 50%; background: var(--lime);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.vtesti-card:hover .vt-play { transform: translate(-50%,-50%) scale(1); box-shadow: 0 4px 20px rgba(200,242,36,.5); }
.vt-dur {
  position: absolute; bottom: 8px; right: 10px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.45); padding: 2px 7px; border-radius: 4px;
}
.vtesti-body { padding: 22px 24px 28px; background: var(--white); }
.vt-stars { margin-bottom: 12px; }
.vtesti-body p { font-size: 14px; color: var(--body); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.vt-author { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid var(--border-w); }
.vt-author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.vt-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.vt-author span { font-size: 11.5px; color: var(--muted); }

/* ── §12 REVIEWS (TEXT/PHOTO) ────────────────────────────────────────────── */
#testimonials { background: var(--cream); padding: 100px 0; }
.reviews-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 16px; align-items: start;
}
.reviews-col { display: flex; flex-direction: column; gap: 16px; }

.review-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 32px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover { border-color: rgba(1,60,51,.25); box-shadow: 0 12px 40px rgba(0,0,0,.07); }

.review-featured { padding: 40px; }
.review-quote-mark { margin-bottom: 20px; }
.review-quote-mark-sm { margin-bottom: 16px; }

.review-text {
  font-size: 15px; color: var(--body); line-height: 1.85;
  margin-bottom: 20px; font-style: italic;
}
.review-featured .review-text {
  font-size: 17px; line-height: 1.8;
}

.review-stars { margin-bottom: 20px; }
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--border-w);
}
.review-author img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border); flex-shrink: 0;
}
.review-card:not(.review-featured) .review-author img { width: 36px; height: 36px; }
.review-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.review-author span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.review-result {
  display: inline-block; margin-top: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--green); background: rgba(1,60,51,.07);
  padding: 3px 10px; border-radius: 100px;
}

/* ── §12 ABOUT ────────────────────────────────────────────────────────────── */
#about { background: var(--white); padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-col { position: relative; height: 500px; }
.about-img-main {
  position: absolute; inset: 0; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: 28px; right: -28px;
  width: 176px; height: 136px; border-radius: 14px; overflow: hidden;
  border: 3px solid var(--white); box-shadow: 0 12px 36px rgba(0,0,0,.15);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-years-badge {
  position: absolute; top: 28px; left: -20px;
  background: var(--lime); border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(200,242,36,.35);
  display: flex; flex-direction: column; align-items: center;
}
.ayb-n { font-size: 30px; font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -.03em; }
.ayb-l { font-size: 10px; font-weight: 700; color: var(--green); text-align: center; line-height: 1.3; margin-top: 3px; }

.about-text .eyebrow { display: block; margin-bottom: 12px; }
.about-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 16px; }
.about-location { color: var(--muted) !important; font-size: 13.5px !important; }
.about-stats-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border-w); }
.about-stats-row div { display: flex; flex-direction: column; gap: 3px; }
.about-stats-row strong { font-size: 24px; font-weight: 900; letter-spacing: -.03em; color: var(--green); }
.about-stats-row span { font-size: 12px; color: var(--muted); }
.about-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── §13 GUARANTEE ───────────────────────────────────────────────────────── */
#guarantee { background: var(--green); padding: 100px 0; }
#guarantee .section-header h2 { color: var(--cream); }
#guarantee .eyebrow { color: var(--lime); }
#guarantee .section-header p { color: rgba(244,244,242,.55); }

.guar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.guar-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(244,244,242,.1);
  border-radius: var(--r); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.guar-card:hover {
  background: rgba(255,255,255,.09); border-color: rgba(200,242,36,.3);
  transform: translateY(-4px);
}
.guar-num {
  font-size: 64px; font-weight: 900; letter-spacing: -.06em;
  color: rgba(200,242,36,.08); line-height: 1;
  position: absolute; top: -8px; right: 8px;
  pointer-events: none; user-select: none;
}
.guar-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(200,242,36,.1); border: 1px solid rgba(200,242,36,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.guar-card h3 { font-size: 19px; font-weight: 700; color: var(--white); letter-spacing: -.02em; margin-bottom: 12px; position: relative; z-index: 1; }
.guar-card p { font-size: 14px; color: rgba(244,244,242,.55); line-height: 1.8; position: relative; z-index: 1; }
.guar-cta { display: flex; justify-content: center; }

/* ── §14 FAQ ──────────────────────────────────────────────────────────────── */
#faq { background: var(--cream); padding: 100px 0; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-col { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: transparent; border: none;
  color: var(--ink); font-size: 14.5px; font-weight: 600; text-align: left;
  cursor: pointer; transition: background .2s; letter-spacing: -.01em;
}
.faq-q:hover { background: var(--cream); }
.faq-ico { font-size: 20px; font-weight: 300; color: var(--green); flex-shrink: 0; transition: transform .3s var(--ease); line-height: 1; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--body); line-height: 1.8; }

/* ── §15 CTA ──────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--green); padding: 120px 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-deco {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner .eyebrow { color: var(--lime) !important; font-weight: 800; }
.cta-inner h2 {
  font-size: clamp(38px, 6vw, 72px); font-weight: 900;
  letter-spacing: -.05em; line-height: 1.02; margin-bottom: 18px;
  color: var(--white);
}
.cta-inner > p { font-size: 17px; color: rgba(244,244,242,.65); max-width: 420px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 13px; color: rgba(244,244,242,.4); }
.cta-note a { color: var(--lime); font-weight: 600; border-bottom: 1px solid rgba(200,242,36,.3); }
.cta-note a:hover { border-color: var(--lime); }
.btn-cta-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(244,244,242,.3); font-weight: 600; }
.btn-cta-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(244,244,242,.6); transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer { background: var(--green); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 12px; display: inline-block; }
.footer-logo .logo-img { filter: brightness(0) invert(1); opacity: .9; }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-text b { color: var(--lime); }
.footer-logo .logo-text em { color: var(--lime-dark); }
.footer-brand p { font-size: 13.5px; color: rgba(244,244,242,.55); line-height: 1.75; max-width: 270px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(244,244,242,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,244,242,.5); transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--lime); color: var(--lime); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,244,242,.3); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 13.5px; color: rgba(244,244,242,.55); line-height: 1.5; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(244,244,242,.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(244,244,242,.3); }
.footer-tagline { font-weight: 600; color: rgba(244,244,242,.4); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 48px; }
  .hv-float-1, .hv-float-2 { display: none; }
  .tab-inner { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .tab-visual { display: none; }
  .proc-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .proc-connector { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-col { height: 320px; }
  .about-img-accent { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .deliv-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .proc-cards { grid-template-columns: 1fr; }
  .stats-row { gap: 0; }
  .stat-sep { display: none; }
  .stat-item { min-width: 50%; }
  .tabs-bar { width: 100%; justify-content: center; }
  .tab-btn { font-size: 13px; padding: 8px 14px; }
  .guar-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 14px 14px; }
  .problem-grid { grid-template-columns: 1fr; gap: 12px; }
  .problem-arrow { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .hero-h1 { font-size: clamp(38px, 12vw, 58px); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-years-badge { left: 10px; }
  .who-grid { grid-template-columns: 1fr; }
  .deliv-grid { grid-template-columns: 1fr; }
}

/* ── SPLIT STICKY-SCROLL LAYOUT ──────────────────────────────────────────── */
.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
}
.split-wrap-reverse {
  grid-template-columns: 1.25fr 1fr;
}
.split-sticky {
  position: sticky;
  top: 108px;
}
.split-sticky .eyebrow { display: block; margin-bottom: 12px; }
.split-sticky h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.split-sticky p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.split-scroll {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Mini-stats inside sticky panel */
.split-mini-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 28px;
}
.sms-row { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.sms-row strong {
  font-size: 24px; font-weight: 900; letter-spacing: -.03em;
  color: var(--green); line-height: 1;
}
.sms-row span { font-size: 12px; color: var(--muted); line-height: 1.4; }
.sms-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Rating block inside sticky panel */
.split-rating-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 28px;
}
.srb-stars { flex-shrink: 0; }
.srb-label { font-size: 13px; font-weight: 600; color: var(--body); }

/* ── RCARD (OUTCOME-FIRST REVIEW CARDS) ──────────────────────────────────── */
.rcard {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.rcard:hover {
  border-color: rgba(1,60,51,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.rcard-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rcard-top img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border); flex-shrink: 0;
}
.rcard-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.rcard-meta strong { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.rcard-meta span { font-size: 12px; color: var(--muted); }
.rcard-stars { flex-shrink: 0; }
.rcard-outcome {
  font-size: 20px; font-weight: 800; letter-spacing: -.03em;
  color: var(--green); line-height: 1.2; margin-bottom: 12px;
}
.rcard-body {
  font-size: 14px; color: var(--body); line-height: 1.8;
  margin-bottom: 16px; font-style: italic;
}
.rcard-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(1,60,51,.06); color: var(--green);
  padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(1,60,51,.1);
}

/* ── §NEW: THE CALLER STANDARD ───────────────────────────────────────────── */
#callers { background: var(--cream); padding: 100px 0; }

.cstd-funnel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 32px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.cstd-step {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 0; border-bottom: 1px solid var(--border-w);
}
.cstd-step:last-child { border-bottom: none; padding-bottom: 0; }
.cstd-num {
  font-size: 36px; font-weight: 900; letter-spacing: -.04em;
  color: var(--ink); line-height: 1;
}
.cstd-num-lime { color: var(--green); }
.cstd-label { font-size: 13.5px; color: var(--body); line-height: 1.5; }
.cstd-bar {
  height: 6px; background: var(--border);
  border-radius: 100px; overflow: hidden; margin-top: 4px;
}
.cstd-bar-fill {
  height: 100%; background: rgba(1,60,51,.3); border-radius: 100px;
}
.cstd-step-final .cstd-bar-fill, .cstd-bar-lime { background: var(--green); }
.cstd-arrow {
  display: flex; justify-content: center; padding: 6px 0; opacity: .4;
}
.cstd-final-badge {
  display: inline-flex; width: fit-content;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: var(--lime); color: #000; padding: 4px 12px;
  border-radius: 100px; margin-top: 6px;
}
.cstd-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.cstd-tags span {
  font-size: 12px; font-weight: 600;
  background: var(--white); border: 1px solid var(--border);
  color: var(--body); padding: 6px 14px; border-radius: 100px;
}

/* ── §NEW: DATA ADVANTAGE ────────────────────────────────────────────────── */
#dataedge { background: var(--white); padding: 100px 0; }

.data-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr auto 1fr;
  align-items: stretch;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.df-step {
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.df-bad { background: rgba(220,50,50,.03); }
.df-good { background: rgba(1,60,51,.03); }
.df-label-top {
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.df-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.df-step h3 { font-size: 18px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.df-list { display: flex; flex-direction: column; gap: 10px; }
.df-bad-item, .df-good-item {
  font-size: 13.5px; color: var(--body);
  padding-left: 20px; position: relative; line-height: 1.4;
}
.df-bad-item::before {
  content: '✕'; position: absolute; left: 0;
  color: #c43030; font-size: 12px; font-weight: 700; top: 1px;
}
.df-good-item::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-size: 12px; font-weight: 700; top: 1px;
}
.df-arrow {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  padding: 24px 16px; flex-shrink: 0; color: var(--green);
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
}
.df-arrow span {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  text-align: center; line-height: 1.3;
}
.df-steps-middle {
  display: flex; flex-direction: column; gap: 0;
  padding: 28px 32px;
}
.df-mid-step {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0; border-bottom: 1px solid var(--border-w);
}
.df-mid-step:last-child { border-bottom: none; padding-bottom: 0; }
.df-mid-num {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  color: var(--green); opacity: .65;
}
.df-mid-step strong { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.df-mid-step span { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ── RESPONSIVE: NEW SECTIONS ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .split-wrap { grid-template-columns: 1fr; gap: 40px; }
  .split-wrap-reverse { grid-template-columns: 1fr; }
  .split-wrap-reverse .split-scroll { order: -1; }
  .split-sticky { position: static; }
  .data-flow {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .df-arrow {
    flex-direction: row; padding: 16px 28px;
    border-left: none; border-right: none;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }
  .df-arrow svg { transform: rotate(90deg); }
}
@media (max-width: 768px) {
  .cstd-funnel { padding: 24px; }
  .split-mini-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sms-divider { width: 100%; height: 1px; }
  .df-step { padding: 28px 24px; }
  .df-steps-middle { padding: 20px 24px; }
}
@media (max-width: 640px) {
  .rcard { padding: 22px 20px; }
  .rcard-outcome { font-size: 17px; }
}

/* ── HOOK: PAIN POINTS ───────────────────────────────────────────────────── */
#painpoints { background: var(--green); padding: 100px 0; }
.pain-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.pain-left .eyebrow { color: var(--lime); }
.pain-left h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: var(--white);
  margin-bottom: 16px;
}
.pain-left p { font-size: 15px; color: rgba(244,244,242,.65); line-height: 1.8; margin-bottom: 24px; }
.pain-callout {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(200,242,36,.07); border: 1px solid rgba(200,242,36,.15);
  border-radius: 10px; padding: 16px 18px;
  font-size: 14px; color: rgba(244,244,242,.7); line-height: 1.6;
}
.pain-callout svg { flex-shrink: 0; margin-top: 1px; stroke: var(--lime); }
.pain-callout strong { color: var(--lime); font-weight: 700; }
.pain-list { display: flex; flex-direction: column; gap: 0; }
.pain-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 24px; border-bottom: 1px solid rgba(244,244,242,.08);
  background: rgba(255,255,255,.03); border-radius: 0;
  transition: background .2s;
}
.pain-item:first-child { border-radius: 12px 12px 0 0; }
.pain-item:last-child { border-bottom: none; border-radius: 0 0 12px 12px; }
.pain-item:hover { background: rgba(255,255,255,.06); }
.pain-ico {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(196,48,48,.15); border: 1px solid rgba(196,48,48,.25);
  display: flex; align-items: center; justify-content: center;
  color: #e05555;
}
.pain-text { display: flex; flex-direction: column; gap: 4px; }
.pain-text strong { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.35; }
.pain-text span { font-size: 13px; color: rgba(244,244,242,.5); line-height: 1.55; }

/* ── HOOK: REAL COST ─────────────────────────────────────────────────────── */
#thecost { background: var(--cream); padding: 100px 0; }
.cost-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cost-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 40px 36px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .25s var(--ease), box-shadow .25s, transform .25s;
}
.cost-card:hover {
  border-color: rgba(1,60,51,.2);
  box-shadow: 0 16px 48px rgba(0,0,0,.07);
  transform: translateY(-4px);
}
.cost-card-dark {
  background: var(--green); border-color: var(--green);
}
.cost-card-dark .cost-num { color: var(--lime); }
.cost-card-dark .cost-unit { color: rgba(244,244,242,.5); }
.cost-card-dark .cost-desc { color: rgba(244,244,242,.65); }
.cost-num {
  font-size: clamp(40px, 5vw, 62px); font-weight: 900;
  letter-spacing: -.05em; color: var(--green); line-height: 1;
}
.cost-unit {
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.cost-desc { font-size: 14px; color: var(--body); line-height: 1.75; }

/* ── SERVICES V2 ─────────────────────────────────────────────────────────── */
#services { background: var(--white); padding: 100px 0; }
.svc2-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.svc2-card {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 18px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), box-shadow .25s, transform .25s;
}
.svc2-card:hover {
  border-color: var(--green);
  box-shadow: 0 20px 60px rgba(1,60,51,.1);
  transform: translateY(-4px);
}
.svc2-featured { border-color: var(--green); }
.svc2-pop-badge {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: var(--lime); color: #000; padding: 4px 10px; border-radius: 100px;
}
.svc2-illus {
  background: var(--green); height: 150px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.svc2-svg { width: 100%; height: 100%; }

/* SVG animation classes */
.svc2-ring { animation: svc2RingExpand 2.8s ease-out infinite; }
.svc2-ring.svc2-r1 { animation-delay: 0s; }
.svc2-ring.svc2-r2 { animation-delay: .5s; }
.svc2-ring.svc2-r3 { animation-delay: 1s; }
@keyframes svc2RingExpand {
  0% { transform-box: fill-box; transform-origin: center; transform: scale(.7); opacity: .6; }
  80% { opacity: .1; }
  100% { transform-box: fill-box; transform-origin: center; transform: scale(1.2); opacity: 0; }
}
.svc2-pulse { animation: svc2Pulse 2.8s ease-in-out infinite; }
@keyframes svc2Pulse { 0%,100%{opacity:.15} 50%{opacity:.35} }
.svc2-flow { stroke-dashoffset: 0; animation: svc2Flow 2s linear infinite; }
@keyframes svc2Flow { from{stroke-dashoffset:0} to{stroke-dashoffset:-18} }
.svc2-bubble { animation: svc2BubbleIn 3s ease-in-out infinite; }
.svc2-b1 { animation-delay: 0s; }
.svc2-b2 { animation-delay: .8s; }
.svc2-b3 { animation-delay: 1.6s; }
@keyframes svc2BubbleIn { 0%,100%{opacity:.5;transform:translateY(3px)} 50%{opacity:1;transform:translateY(0)} }
.svc2-chk { animation: svc2CheckDraw 2.5s ease-in-out infinite; }
.svc2-chk1 { animation-delay: 0s; }
.svc2-chk2 { animation-delay: .8s; }
@keyframes svc2CheckDraw { 0%,100%{opacity:.4} 50%{opacity:1} }

.svc2-body { padding: 28px 32px 36px; flex: 1; display: flex; flex-direction: column; gap: 0; }
.svc2-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.svc2-num { font-size: 11px; font-weight: 800; letter-spacing: .14em; color: var(--muted); }
.svc2-badge-metric {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  background: rgba(1,60,51,.07); color: var(--green);
  border: 1px solid rgba(1,60,51,.12); padding: 4px 10px; border-radius: 100px;
}
.svc2-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -.025em; margin-bottom: 6px; color: var(--ink); }
.svc2-tagline { font-size: 13.5px; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.svc2-feats { display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 24px; }
.svc2-feats li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--body);
}
.svc2-feats li svg { flex-shrink: 0; stroke: var(--green); }

/* ── OUR STORY ───────────────────────────────────────────────────────────── */
#ourstory { background: var(--white); padding: 100px 0; }
.os-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.os-left .eyebrow { display: block; margin-bottom: 12px; }
.os-left h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px;
}
.os-left p { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 16px; }
.os-quote {
  margin-top: 28px; padding: 20px 24px;
  background: var(--cream); border-left: 3px solid var(--lime);
  border-radius: 0 10px 10px 0; display: flex; align-items: flex-start; gap: 14px;
}
.os-quote blockquote {
  font-size: 16px; font-weight: 600; color: var(--ink);
  letter-spacing: -.01em; line-height: 1.6; font-style: italic;
}
.os-timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding-left: 28px;
}
.os-timeline::before {
  content: ''; position: absolute; left: 7px; top: 10px; bottom: 10px;
  width: 2px; background: linear-gradient(to bottom, var(--lime), rgba(200,242,36,.1));
}
.os-event {
  display: flex; gap: 20px; padding-bottom: 32px; position: relative;
}
.os-event:last-child { padding-bottom: 0; }
.os-dot {
  position: absolute; left: -24px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--lime); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green); flex-shrink: 0;
}
.os-content { display: flex; flex-direction: column; gap: 4px; }
.os-year {
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); opacity: .6;
}
.os-content strong { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.os-content p { font-size: 13.5px; color: var(--body); line-height: 1.7; margin-top: 4px; }

/* ── COMPARISON V2 ───────────────────────────────────────────────────────── */
#compare { background: var(--cream); padding: 100px 0; }
.cmpv-grid {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px;
}
.cmpv-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px 40px;
  transition: border-color .25s, box-shadow .25s;
}
.cmpv-card:hover { border-color: rgba(1,60,51,.2); box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.cmpv-num {
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); opacity: .5;
  margin-bottom: 8px;
}
.cmpv-title {
  font-size: clamp(18px, 2vw, 22px); font-weight: 800;
  letter-spacing: -.02em; color: var(--ink); line-height: 1.25;
  margin-bottom: 28px;
}
.cmpv-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.cmpv-them, .cmpv-us {
  padding: 20px 24px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.cmpv-them { background: rgba(0,0,0,.025); border: 1px solid var(--border); }
.cmpv-us { background: rgba(1,60,51,.04); border: 1px solid rgba(1,60,51,.12); }
.cmpv-label-bad, .cmpv-label-good {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 4px;
}
.cmpv-label-bad { color: #c43030; }
.cmpv-label-good { color: var(--green); }
.cmpv-them p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }
.cmpv-us p { font-size: 13.5px; color: var(--body); line-height: 1.75; }
.cmpv-bottom {
  display: flex; align-items: center; gap: 16px; justify-content: center;
  flex-wrap: wrap;
}
.cmpv-sub { font-size: 13px; color: var(--muted); }

/* ── PROCESS V2 (VERTICAL TIMELINE) ─────────────────────────────────────── */
#process { background: var(--green); padding: 100px 0; }
.proc-vert-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.proc-vert-header { position: sticky; top: 108px; }
.proc-vert-header .eyebrow { color: var(--lime); }
.proc-vert-header h2 {
  font-size: clamp(28px, 3.2vw, 42px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: var(--white); margin-bottom: 16px;
}
.proc-vert-header p { font-size: 15px; color: rgba(244,244,242,.6); line-height: 1.8; }

.proc-vert-steps {
  position: relative; display: flex; flex-direction: column; gap: 0;
}
.proc-vert-line {
  position: absolute; left: 20px; top: 20px; bottom: 20px;
  width: 2px; background: rgba(200,242,36,.1); overflow: hidden;
}
.pvl-fill {
  width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--lime), rgba(200,242,36,.3));
  transition: height 1.5s var(--ease);
}
.proc-vert-steps.animated .pvl-fill { height: 100%; }

.pvs-item {
  display: flex; gap: 28px; padding: 0 0 40px 52px; position: relative;
}
.pvs-item:last-child { padding-bottom: 0; }
.pvs-left {
  position: absolute; left: 0; top: 0;
  display: flex; align-items: flex-start;
}
.pvs-bubble {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(200,242,36,.1); border: 2px solid rgba(200,242,36,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: var(--lime);
  letter-spacing: .04em; position: relative; z-index: 1;
  transition: background .3s, border-color .3s;
}
.pvs-item.visible .pvs-bubble {
  background: rgba(200,242,36,.15); border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(200,242,36,.12);
}
.pvs-bubble-lime {
  background: var(--lime) !important; border-color: var(--lime) !important;
  color: #000 !important; box-shadow: 0 0 0 6px rgba(200,242,36,.15) !important;
}
.pvs-right { display: flex; flex-direction: column; gap: 8px; }
.pvs-time-tag {
  display: inline-flex; align-items: center; width: fit-content;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(200,242,36,.1); color: var(--lime);
  border: 1px solid rgba(200,242,36,.2); padding: 3px 10px; border-radius: 100px;
}
.pvs-time-ongoing { background: rgba(200,242,36,.18); border-color: rgba(200,242,36,.35); }
.pvs-right h3 {
  font-size: 20px; font-weight: 800; color: var(--white);
  letter-spacing: -.02em; margin-bottom: 4px; line-height: 1.2;
}
.pvs-right p { font-size: 14px; color: rgba(244,244,242,.6); line-height: 1.8; margin-bottom: 12px; }
.pvs-checks {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pvs-checks span {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: rgba(244,244,242,.7);
  background: rgba(255,255,255,.05); border: 1px solid rgba(244,244,242,.08);
  padding: 4px 10px; border-radius: 100px;
}
.pvs-checks span svg { stroke: var(--lime); flex-shrink: 0; }

/* ── RESPONSIVE: NEW SECTIONS ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pain-wrap { grid-template-columns: 1fr; gap: 48px; }
  .os-wrap { grid-template-columns: 1fr; gap: 48px; }
  .proc-vert-wrap { grid-template-columns: 1fr; gap: 40px; }
  .proc-vert-header { position: static; }
  .cmpv-cols { grid-template-columns: 1fr; }
  .cost-row { grid-template-columns: 1fr; }
  .svc2-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .cmpv-card { padding: 24px 20px; }
  .cmpv-title { font-size: 17px; }
  .proc-vert-line { display: none; }
  .pvs-item { padding-left: 52px; }
}
@media (max-width: 640px) {
  .pain-item { padding: 16px 18px; }
  .svc2-illus { height: 120px; }
  .svc2-body { padding: 22px 20px 28px; }
  .os-timeline { padding-left: 20px; }
}

/* ════════════════════════════════════════════════════════════════════════
   LIQUID GLASS LAYER — ambient background, glass surfaces, story scrolling
   ════════════════════════════════════════════════════════════════════════ */

/* ── AMBIENT BACKGROUND ORBS ─────────────────────────────────────────────── */
body {
  background: var(--cream);
}
body::before {
  content: '';
  position: fixed; inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(42% 34% at 12% 10%, rgba(200,242,36,.20), transparent 70%),
    radial-gradient(38% 32% at 88% 22%, rgba(1,60,51,.10), transparent 70%),
    radial-gradient(46% 38% at 78% 78%, rgba(200,242,36,.14), transparent 70%),
    radial-gradient(40% 34% at 8% 86%, rgba(2,80,64,.10), transparent 70%),
    radial-gradient(30% 26% at 50% 46%, rgba(255,255,255,.55), transparent 70%);
  animation: orbDrift 26s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(1.6%, -1.2%, 0) scale(1.03); }
  100% { transform: translate3d(-1.4%, 1.4%, 0) scale(1.01); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

/* ── SECTIONS GO TRANSPARENT SO GLASS HAS SOMETHING TO BLUR ─────────────── */
#hero, #partners, #why, #services, #ourstory, #deliverables,
#vtestimonials, #testimonials, #callers, #dataedge, #about, #faq {
  background: transparent;
}
#partners { border-bottom: 1px solid rgba(255,255,255,.6); }

/* ── SCROLL PROGRESS BAR ─────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 500;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--lime), var(--lime-dark));
  box-shadow: 0 0 12px rgba(200,242,36,.55);
  border-radius: 0 3px 3px 0;
}

/* ── GLASS RECIPE ────────────────────────────────────────────────────────── */
.hero-badge, .hv-float,
.tabs-bar, .tab-card,
.svc2-card, .deliv-card, .vtesti-card, .rcard,
.cstd-step, .df-step, .df-mid-step,
.faq-item, .about-years-badge, .split-mini-stats {
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.42));
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow:
    0 10px 40px rgba(1,60,51,.10),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(255,255,255,.25);
}
.svc2-card, .deliv-card, .vtesti-card, .rcard, .tab-card,
.cstd-step, .df-step { border-radius: 22px; }
.df-mid-step, .faq-item { border-radius: 16px; }
.hero-badge, .tabs-bar { border-radius: 100px; }

.svc2-card:hover, .deliv-card:hover, .vtesti-card:hover, .rcard:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,1);
  box-shadow:
    0 24px 64px rgba(1,60,51,.16),
    inset 0 1px 0 rgba(255,255,255,1);
}
.svc2-card, .deliv-card, .vtesti-card, .rcard {
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

/* dark glass card (kept dark for contrast) */
.tc-featured {
  background: linear-gradient(140deg, rgba(1,60,51,.92), rgba(2,80,64,.85));
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(200,242,36,.25);
  box-shadow: 0 16px 48px rgba(1,60,51,.35), inset 0 1px 0 rgba(255,255,255,.12);
}

/* ── NAV → FLOATING GLASS PILL ───────────────────────────────────────────── */
#nav { padding: 14px 0; border-bottom: none; }
#nav .nav-inner {
  max-width: 1120px;
  padding: 10px 14px 10px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.38));
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 8px 32px rgba(1,60,51,.10), inset 0 1px 0 rgba(255,255,255,.9);
  margin: 0 auto; width: calc(100% - 40px);
  transition: box-shadow .3s var(--ease);
}
#nav.scrolled { background: transparent; border-color: transparent; padding: 10px 0; }
#nav.scrolled .nav-inner {
  box-shadow: 0 14px 44px rgba(1,60,51,.16), inset 0 1px 0 rgba(255,255,255,.95);
}
.nav-mobile {
  border-radius: 20px;
  margin: 8px 20px 0;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.7));
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 16px 48px rgba(1,60,51,.14);
}

/* ── BUTTON GLASS SHEEN ──────────────────────────────────────────────────── */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }
.btn-lime { box-shadow: 0 4px 18px rgba(200,242,36,.35), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-dark { box-shadow: 0 4px 18px rgba(1,60,51,.22), inset 0 1px 0 rgba(255,255,255,.14); }

/* ── SERVICES — CLEAN GLASS CARDS (illustrations removed) ────────────────── */
.svc2-card { overflow: hidden; }
.svc2-body { padding: 32px 32px 36px; }
.svc2-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,242,36,.5), rgba(200,242,36,.16));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 4px 14px rgba(1,60,51,.08);
}
.svc2-meta-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.svc2-featured { border-color: rgba(200,242,36,.8); }
.svc2-pop-badge {
  background: var(--lime); color: #000;
  box-shadow: 0 4px 14px rgba(200,242,36,.4);
}
.svc2-tagline { margin-bottom: 18px; line-height: 1.6; }

/* ── PROCESS + CTA → DARK GLASS PANELS ───────────────────────────────────── */
#process, .cta-section {
  background:
    linear-gradient(160deg, rgba(1,60,51,.97), rgba(2,64,52,.93)),
    radial-gradient(60% 50% at 85% 10%, rgba(200,242,36,.25), transparent 70%);
  position: relative;
}
#process::before, .cta-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 36% at 90% 8%, rgba(200,242,36,.10), transparent 70%),
    radial-gradient(36% 30% at 6% 92%, rgba(200,242,36,.07), transparent 70%);
}
#process > .container, .cta-section > .container { position: relative; z-index: 1; }
.pvs-time-tag, .pvs-checks span {
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
}
.pvs-bubble {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* ── STORY BEATS (scroll-driven narrative) ───────────────────────────────── */
.story-beat {
  padding: 150px 0 140px;
  background: transparent;
}
.beat-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); opacity: .55; margin-bottom: 22px;
  padding: 7px 16px; border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,.35));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.8);
}
.beat-text {
  font-size: clamp(27px, 4.2vw, 48px);
  font-weight: 800; letter-spacing: -.028em; line-height: 1.22;
  color: var(--ink); max-width: 940px;
}
.beat-text .w {
  opacity: .13;
  transition: opacity .3s linear;
}
.beat-text .w.on { opacity: 1; }

/* ── REVEALS — SOFTER, GLASSIER ──────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px) scale(.985);
  filter: blur(10px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* ── DETAILS ─────────────────────────────────────────────────────────────── */
.hero-video-frame {
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 24px 80px rgba(1,60,51,.18), inset 0 1px 0 rgba(255,255,255,.9);
}
.os-timeline::before { background: linear-gradient(180deg, rgba(200,242,36,.9), rgba(1,60,51,.25)); }
footer {
  background:
    linear-gradient(160deg, rgba(1,50,42,.98), rgba(1,38,32,.99)),
    radial-gradient(50% 40% at 90% 0%, rgba(200,242,36,.08), transparent 70%);
}

@media (max-width: 720px) {
  #nav .nav-inner { width: calc(100% - 24px); padding: 9px 12px 9px 18px; }
  .story-beat { padding: 96px 0 88px; }
}

/* ════════════════════════════════════════════════════════════════════════
   REFINEMENT LAYER — typography, reveal timing, new sections
   ════════════════════════════════════════════════════════════════════════ */

/* ── TYPE — Bricolage Grotesque display + Inter body ─────────────────────── */
:root { --font-display: 'Bricolage Grotesque', 'Inter', sans-serif; }

h1, h2, h3, .beat-text, .logo-text,
.tc-stat, .cost-num, .pvs-right h3, .os2-chip strong {
  font-family: var(--font-display);
}
.hero-h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.04;
}
.section-header h2 {
  font-size: clamp(27px, 3.4vw, 42px);
  font-weight: 700; letter-spacing: -.015em; line-height: 1.12;
}
.os-left h2, .os2-text h2, .split-sticky h2, .about-text h2, .proc-vert-header h2, .cta-inner h2 {
  font-weight: 700; letter-spacing: -.015em;
}
.beat-text {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 600; letter-spacing: -.01em; line-height: 1.3;
}
.svc2-card h3, .deliv-card h3, .tab-text h3 { font-weight: 700; letter-spacing: -.01em; }

/* ── REVEAL — instant feel, no laggy blur ────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  filter: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); filter: none; }
.delay-1 { transition-delay: .05s; } .delay-2 { transition-delay: .1s; }
.delay-3 { transition-delay: .15s; } .delay-4 { transition-delay: .2s; }
.delay-5 { transition-delay: .25s; } .delay-6 { transition-delay: .3s; }

/* ── PROCESS TIMELINE — solid bubbles, line stays behind ─────────────────── */
.proc-vert-line { left: 20px; z-index: 0; }
.pvs-bubble {
  background: #05473b;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 2px solid rgba(200,242,36,.4);
  box-shadow: 0 0 0 6px var(--green);
  z-index: 2;
}
.pvs-item.visible .pvs-bubble {
  background: #086352; border-color: var(--lime);
  box-shadow: 0 0 0 6px var(--green), 0 0 24px rgba(200,242,36,.25);
}
.pvs-bubble-lime { box-shadow: 0 0 0 6px var(--green) !important; }

/* ── OUR STORY v2 — photos + milestones ──────────────────────────────────── */
#ourstory { background: transparent; padding: 110px 0; }
.os2-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 72px; align-items: center;
}
.os2-media { position: relative; padding: 0 36px 44px 0; }
.os2-photo-main {
  border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 24px 70px rgba(1,60,51,.18), inset 0 1px 0 rgba(255,255,255,.9);
}
.os2-photo-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.os2-photo-accent {
  position: absolute; right: 0; bottom: 0;
  width: 46%; border-radius: 20px; overflow: hidden;
  border: 4px solid rgba(255,255,255,.95);
  box-shadow: 0 18px 48px rgba(1,60,51,.22);
  transform: rotate(2.5deg);
}
.os2-photo-accent img { width: 100%; height: 170px; object-fit: cover; display: block; }
.os2-chip {
  position: absolute; display: flex; flex-direction: column; gap: 1px;
  padding: 12px 18px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 36px rgba(1,60,51,.16), inset 0 1px 0 rgba(255,255,255,.95);
}
.os2-chip strong { font-size: 20px; font-weight: 800; color: var(--green); line-height: 1.1; }
.os2-chip span { font-size: 11px; color: var(--muted); font-weight: 600; }
.os2-chip-1 { top: -18px; left: -14px; transform: rotate(-2deg); }
.os2-chip-2 { bottom: 96px; left: -22px; transform: rotate(1.5deg); }
.os2-text .eyebrow { display: block; margin-bottom: 12px; }
.os2-text h2 {
  font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 18px; line-height: 1.1;
}
.os2-text p { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 14px; }
.os2-quote {
  margin: 24px 0; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200,242,36,.28), rgba(255,255,255,.5));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 28px rgba(1,60,51,.08);
}
.os2-quote svg { flex-shrink: 0; margin-top: 3px; }
.os2-quote blockquote {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600; color: var(--ink);
  line-height: 1.55; letter-spacing: -.01em;
}
.os2-milestones { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.os2-mile {
  display: flex; flex-direction: column; gap: 0;
  padding: 10px 16px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.4));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.os2-mile em {
  font-style: normal; font-size: 10.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--green); opacity: .6;
}
.os2-mile span { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.os2-mile-now { border-color: rgba(200,242,36,.9); background: linear-gradient(135deg, rgba(200,242,36,.4), rgba(255,255,255,.5)); }

/* ── FIT CHECK ───────────────────────────────────────────────────────────── */
#fit { background: transparent; padding: 100px 0; }
.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 980px; margin: 0 auto;
}
.fit-card {
  padding: 34px 34px 38px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.42));
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 10px 40px rgba(1,60,51,.10), inset 0 1px 0 rgba(255,255,255,.95);
}
.fit-yes { border-top: 3px solid var(--lime); }
.fit-no  { border-top: 3px solid rgba(1,60,51,.25); }
.fit-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.fit-head h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.fit-ico {
  width: 36px; height: 36px; border-radius: 12px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.fit-ico-yes { background: rgba(200,242,36,.55); color: #1a3a00; }
.fit-ico-no  { background: rgba(1,60,51,.08); color: var(--green); }
.fit-card ul { display: flex; flex-direction: column; gap: 13px; }
.fit-card li {
  font-size: 14px; color: var(--body); line-height: 1.65;
  padding-left: 20px; position: relative;
}
.fit-yes li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 2px rgba(200,242,36,.3);
}
.fit-no li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%; background: rgba(1,60,51,.3);
}
.fit-note { text-align: center; margin-top: 32px; font-size: 14.5px; color: var(--muted); }
.fit-note a { color: var(--green); font-weight: 700; border-bottom: 2px solid var(--lime); }

/* ── TEAM — the humans ───────────────────────────────────────────────────── */
#team { background: transparent; padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  border-radius: 22px; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.42));
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 10px 40px rgba(1,60,51,.10), inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 24px 64px rgba(1,60,51,.16); }
.team-photo { height: 210px; overflow: hidden; }
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.045); }
.team-body { padding: 22px 26px 28px; }
.team-role {
  display: inline-block; font-size: 10.5px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); opacity: .6; margin-bottom: 6px;
}
.team-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.team-body p { font-size: 13.5px; color: var(--body); line-height: 1.7; }

/* ── PROMISES ────────────────────────────────────────────────────────────── */
#promises { background: transparent; padding: 100px 0; }
.prom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.prom-card {
  padding: 30px 32px 34px; border-radius: 22px; position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.42));
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 10px 40px rgba(1,60,51,.10), inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.prom-card:hover { transform: translateY(-4px); border-color: rgba(200,242,36,.8); }
.prom-num {
  font-family: var(--font-display);
  display: inline-block; font-size: 13px; font-weight: 800;
  color: #1a3a00; margin-bottom: 14px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(200,242,36,.5);
}
.prom-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.prom-card p { font-size: 14px; color: var(--body); line-height: 1.75; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .os2-grid { grid-template-columns: 1fr; gap: 56px; }
  .os2-media { max-width: 520px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .fit-grid, .prom-grid { grid-template-columns: 1fr; }
  .os2-photo-main img { height: 320px; }
}
@media (max-width: 720px) {
  .hero-h1 { font-size: clamp(32px, 9vw, 42px); }
  .os2-chip-1 { left: 0; } .os2-chip-2 { left: -6px; }
}

/* ════════════════════════════════════════════════════════════════════════
   POLISH LAYER — why header, spotlight hovers, buttons, calendly
   ════════════════════════════════════════════════════════════════════════ */

/* ── WHY — editorial split header ────────────────────────────────────────── */
.why2-head {
  display: grid; grid-template-columns: 1.35fr .75fr;
  gap: 48px; align-items: end; margin-bottom: 54px;
}
.why2-title {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.08;
  color: var(--ink); margin-top: 4px;
}
.hl-marker {
  position: relative; white-space: nowrap;
  background-image: linear-gradient(100deg, rgba(200,242,36,.95), rgba(200,242,36,.55));
  background-repeat: no-repeat;
  background-size: 100% 42%;
  background-position: 0 78%;
  padding: 0 .12em;
  border-radius: 6px;
}
.why2-right { padding-bottom: 8px; }
.why2-right p {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  padding-left: 18px; border-left: 2.5px solid var(--lime);
  margin-bottom: 18px;
}
.why2-chips { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 20px; }
.why2-chips span {
  font-size: 11.5px; font-weight: 700; color: var(--green);
  padding: 6px 13px; border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(255,255,255,.45));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}
@media (max-width: 880px) {
  .why2-head { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .why2-right p, .why2-chips { padding-left: 0; border-left: none; }
  .hl-marker { white-space: normal; }
}

/* ── SPOTLIGHT HOVER — light follows the cursor ──────────────────────────── */
.spot { position: relative; }
.spot::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .35s var(--ease);
  background:
    radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%),
      rgba(200,242,36,.28), rgba(200,242,36,.06) 45%, transparent 65%);
}
.spot:hover::after { opacity: 1; }
.spot:hover {
  border-color: rgba(200,242,36,.75) !important;
}
/* replace the heavy hover shadows with lift + lime edge */
.svc2-card:hover, .deliv-card:hover, .vtesti-card:hover, .rcard:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 44px rgba(1,60,51,.12),
    0 0 0 1px rgba(200,242,36,.35),
    inset 0 1px 0 rgba(255,255,255,1);
}
.tab-card, .cstd-step, .df-step, .df-mid-step, .faq-item {
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.tab-card:hover, .cstd-step:hover, .df-step:hover, .df-mid-step:hover {
  transform: translateY(-3px);
}

/* ── HERO FLOATS — crisp, no grey murk ───────────────────────────────────── */
.hv-float {
  background: linear-gradient(150deg, #ffffff, rgba(255,255,255,.88));
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 1px solid #fff;
  box-shadow: 0 14px 40px rgba(1,60,51,.18), 0 2px 8px rgba(1,60,51,.08);
  border-radius: 16px;
}
.hf-icon {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lime), #b3dc1e);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 3px 10px rgba(200,242,36,.35);
}
.hf-icon svg { stroke: #06231d; }

/* ── BUTTONS — proper liquid glass ───────────────────────────────────────── */
.btn { border-radius: 100px; }
.btn-lg { border-radius: 100px; }
.btn-lime {
  background: linear-gradient(165deg, #e2ff55 0%, var(--lime) 45%, #aed61c 100%);
  box-shadow:
    0 8px 26px rgba(200,242,36,.45),
    inset 0 1.5px 0 rgba(255,255,255,.75),
    inset 0 -3px 8px rgba(90,120,0,.18);
}
.btn-lime:hover {
  background: linear-gradient(165deg, #eaff70 0%, #d3f93a 45%, #b8e021 100%);
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(200,242,36,.55),
    inset 0 1.5px 0 rgba(255,255,255,.85),
    inset 0 -3px 8px rgba(90,120,0,.15);
}
.btn-dark {
  background: linear-gradient(165deg, #0b5749 0%, var(--green) 55%, #012a24 100%);
  box-shadow:
    0 8px 26px rgba(1,60,51,.3),
    inset 0 1.5px 0 rgba(255,255,255,.28),
    inset 0 -3px 8px rgba(0,0,0,.3);
}
.btn-dark:hover {
  background: linear-gradient(165deg, #0d6555 0%, #02493e 55%, #013129 100%);
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(1,60,51,.4),
    inset 0 1.5px 0 rgba(255,255,255,.35),
    inset 0 -3px 8px rgba(0,0,0,.25);
}
.btn-outline-dark {
  background: linear-gradient(135deg, rgba(255,255,255,.6), rgba(255,255,255,.3));
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(1,60,51,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 4px 16px rgba(1,60,51,.08);
}
.btn-outline-dark:hover {
  background: linear-gradient(165deg, #0b5749, var(--green));
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(1,60,51,.3), inset 0 1.5px 0 rgba(255,255,255,.25);
}
.btn-cta-outline {
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

/* ── CTA + CALENDLY EMBED ────────────────────────────────────────────────── */
.cta-section { text-align: left; }
.cta-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.cta-inner > p { margin: 0 0 32px; max-width: 460px; }
.cta-btns { justify-content: flex-start; }
.cta-cal { display: flex; flex-direction: column; gap: 14px; }
.cal-frame {
  border-radius: 24px; overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow:
    0 30px 90px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.9);
  height: 640px;
}
.cal-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.cal-note {
  font-size: 12.5px; color: rgba(244,244,242,.5);
  text-align: center; letter-spacing: .02em;
}
@media (max-width: 920px) {
  .cta-grid { grid-template-columns: 1fr; gap: 44px; }
  .cal-frame { height: 620px; }
}

/* ════════════════════════════════════════════════════════════════════════
   ITERATION LAYER — nav blur fix, hero statbar, beats, tab interiors
   ════════════════════════════════════════════════════════════════════════ */

/* ── NAV — blur lives on the pill only, never the full-width bar ─────────── */
#nav.scrolled {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-color: transparent;
}

/* ── HERO STATBAR — replaces the floating boxes ──────────────────────────── */
.hero-statbar {
  position: relative; z-index: 2;
  margin: -26px auto 0; width: fit-content;
  display: flex; align-items: center; gap: 22px;
  padding: 16px 30px; border-radius: 100px;
  background: linear-gradient(160deg, rgba(4,58,48,.96), rgba(1,38,32,.98));
  border: 1px solid rgba(200,242,36,.25);
  box-shadow:
    0 18px 50px rgba(1,60,51,.35),
    inset 0 1px 0 rgba(255,255,255,.14);
}
.hsb-item { display: flex; flex-direction: column; gap: 0; text-align: center; }
.hsb-item strong {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; color: var(--lime); line-height: 1.15;
}
.hsb-item span { font-size: 10.5px; font-weight: 600; color: rgba(244,244,242,.55); letter-spacing: .04em; }
.hsb-div { width: 1px; height: 30px; background: rgba(255,255,255,.14); }
@media (max-width: 908px) {
  .hero-statbar { margin-top: 20px; padding: 14px 22px; gap: 16px; }
  .hsb-item strong { font-size: 17px; }
}

/* ── STORY BEATS — cleaner, no chapter chips ─────────────────────────────── */
.story-beat { padding: 130px 0 120px; }
.story-beat .container { position: relative; }
.story-beat .container::before {
  content: '';
  display: block;
  width: 54px; height: 5px; border-radius: 3px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--lime), rgba(200,242,36,.25));
  box-shadow: 0 0 16px rgba(200,242,36,.5);
}
.beat-kicker { display: none; }
.beat-text {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 700; letter-spacing: -.015em; line-height: 1.26;
}

/* ── WHY TABS — richer panel interiors ───────────────────────────────────── */
.tab-inner {
  background: linear-gradient(140deg, rgba(255,255,255,.85), rgba(255,255,255,.5));
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 14px 48px rgba(1,60,51,.10), inset 0 1px 0 rgba(255,255,255,.95);
  border-radius: 26px; padding: 56px;
  gap: 60px;
  position: relative; overflow: hidden;
}
.tab-inner::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,242,36,.20), transparent 65%);
  pointer-events: none;
}
.tab-kicker {
  display: inline-block; width: fit-content;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(1,60,51,.07);
  border: 1px solid rgba(1,60,51,.1);
  color: var(--green); font-weight: 800;
}
.tab-text h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800; letter-spacing: -.015em; line-height: 1.14;
  margin: 14px 0 14px;
}
.tab-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 30px;
}
.tab-list li {
  padding: 13px 15px 13px 40px; position: relative;
  font-size: 13px; font-weight: 600; color: var(--body); line-height: 1.5;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.5));
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 3px 12px rgba(1,60,51,.05);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.tab-list li:hover { transform: translateY(-2px); border-color: rgba(200,242,36,.8); }
.tab-list li::before {
  content: '✓';
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), #b3dc1e);
  border: none;
  color: #12300a; font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(200,242,36,.4);
}

/* the visual card — lime glass slab */
.tab-card {
  width: 290px; padding: 42px 34px;
  border-radius: 24px; border: none;
  background:
    radial-gradient(120% 90% at 20% 0%, #e4ff62 0%, var(--lime) 48%, #a9d117 100%);
  box-shadow:
    0 24px 60px rgba(163,205,20,.45),
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -4px 14px rgba(80,110,0,.25);
  position: relative; overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tab-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 32px 76px rgba(163,205,20,.55), inset 0 2px 0 rgba(255,255,255,.6), inset 0 -4px 14px rgba(80,110,0,.2); }
.tab-card::after {
  content: '';
  position: absolute; right: -50px; bottom: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 26px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.tab-card .tc-top svg { filter: drop-shadow(0 2px 4px rgba(80,110,0,.25)); }
.tc-stat {
  font-size: 52px; font-weight: 800; letter-spacing: -.03em;
  color: #0d2b06;
}
.tc-label { font-size: 12.5px; font-weight: 700; color: rgba(13,43,6,.65); }
.tc-items span {
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.6);
  color: #12300a; font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
/* featured card stays deep green for contrast */
.tab-card.tc-featured {
  background:
    radial-gradient(120% 90% at 20% 0%, #0b6152 0%, var(--green) 55%, #01251f 100%);
  box-shadow:
    0 24px 60px rgba(1,60,51,.4),
    inset 0 2px 0 rgba(255,255,255,.16),
    inset 0 -4px 14px rgba(0,0,0,.3);
}
.tab-card.tc-featured::after { border-color: rgba(200,242,36,.15); }
.tc-featured .tc-stat { color: var(--lime); }
.tc-featured .tc-label { color: rgba(244,244,242,.6); }
.tc-featured .tc-items span {
  background: rgba(200,242,36,.12);
  border-color: rgba(200,242,36,.25);
  color: rgba(244,244,242,.9);
  box-shadow: none;
}
@keyframes tabFadeIn { from{opacity:0;transform:translateY(18px) scale(.99)} to{opacity:1;transform:translateY(0) scale(1)} }
.tab-panel { animation-duration: .5s; }

@media (max-width: 880px) {
  .tab-inner { padding: 34px 26px; gap: 36px; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-card { transform: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   DATA PIPELINE v2 + WHY HOVER CLEANUP
   ════════════════════════════════════════════════════════════════════════ */

/* ── DATA FLOW — grey in, green machine, lime out ────────────────────────── */
.df2-flow {
  display: grid; grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px; align-items: stretch;
}
.df2-card {
  padding: 32px 30px 36px; border-radius: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.df2-bad {
  background: linear-gradient(140deg, rgba(255,255,255,.6), rgba(255,255,255,.3));
  -webkit-backdrop-filter: blur(20px) saturate(.7);
  backdrop-filter: blur(20px) saturate(.7);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 8px 30px rgba(1,60,51,.06);
}
.df2-good {
  background: radial-gradient(120% 90% at 20% 0%, #e4ff62 0%, var(--lime) 48%, #a9d117 100%);
  border: none;
  box-shadow:
    0 24px 60px rgba(163,205,20,.4),
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -4px 14px rgba(80,110,0,.22);
}
.df2-tag {
  width: fit-content; margin-bottom: 14px;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.df2-bad .df2-tag { color: #9c3535; background: rgba(196,48,48,.09); border: 1px solid rgba(196,48,48,.18); }
.df2-good .df2-tag { color: #12300a; background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.65); }
.df2-card h3 {
  font-size: 24px; font-weight: 800; letter-spacing: -.015em; margin-bottom: 14px;
}
.df2-bad h3 { color: var(--muted); }
.df2-good h3 { color: #0d2b06; }
.df2-list { display: flex; flex-direction: column; gap: 11px; }
.df2-list li {
  font-size: 13.5px; line-height: 1.5;
  padding-left: 24px; position: relative; font-weight: 600;
}
.df2-bad .df2-list li { color: var(--muted); }
.df2-bad .df2-list li::before {
  content: '✕'; position: absolute; left: 0; top: 1px;
  font-size: 11px; font-weight: 900; color: #c43030;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(196,48,48,.1);
  display: flex; align-items: center; justify-content: center;
}
.df2-good .df2-list li { color: #16340c; }
.df2-good .df2-list li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  font-size: 10px; font-weight: 900; color: #12300a;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
}

/* the machine in the middle */
.df2-steps {
  display: flex; flex-direction: column; gap: 12px;
  position: relative; padding: 0 6px;
}
.df2-step {
  flex: 1;
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; border-radius: 18px;
  background: linear-gradient(150deg, #0a5748, var(--green) 60%, #023028);
  border: 1px solid rgba(200,242,36,.22);
  box-shadow:
    0 12px 34px rgba(1,60,51,.28),
    inset 0 1px 0 rgba(255,255,255,.14);
  position: relative; overflow: hidden;
}
.df2-step::after {
  content: '';
  position: absolute; right: -34px; top: -34px;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,242,36,.16), transparent 65%);
  pointer-events: none;
}
.df2-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800; color: var(--lime);
  line-height: 1; flex-shrink: 0;
  text-shadow: 0 0 18px rgba(200,242,36,.45);
}
.df2-step-text strong {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--white); letter-spacing: -.01em; margin-bottom: 3px;
}
.df2-step-text p { font-size: 12.5px; color: rgba(244,244,242,.6); line-height: 1.55; }

/* connectors between the three columns (desktop) */
.df2-steps::before, .df2-good { position: relative; }
@media (min-width: 1025px) {
  .df2-flow { position: relative; }
  .df2-steps::before, .df2-good::before {
    content: '→';
    position: absolute; left: -19px; top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--green); color: var(--lime);
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(1,60,51,.35), 0 0 0 4px rgba(244,244,242,.9);
  }
}
@media (max-width: 1024px) {
  .df2-flow { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .df2-steps { padding: 0; }
}

/* ── WHY TABS — no hover tricks on chips or the stat card ────────────────── */
.tab-list li:hover { transform: none; border-color: rgba(255,255,255,.95); }
.tab-card { transition: none; }
.tab-card:hover {
  transform: rotate(-1.5deg);
  box-shadow:
    0 24px 60px rgba(163,205,20,.45),
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -4px 14px rgba(80,110,0,.25);
}
.tab-card.tc-featured:hover {
  box-shadow:
    0 24px 60px rgba(1,60,51,.4),
    inset 0 2px 0 rgba(255,255,255,.16),
    inset 0 -4px 14px rgba(0,0,0,.3);
}
.tab-card::after { display: none; }

/* ════════════════════════════════════════════════════════════════════════
   ICON PASS — why tabs & data advantage
   ════════════════════════════════════════════════════════════════════════ */

/* tab buttons with icons */
.tab-btn {
  display: inline-flex; align-items: center; gap: 8px;
}
.tab-btn svg { flex-shrink: 0; opacity: .65; transition: opacity .2s; }
.tab-btn.active svg, .tab-btn:hover svg { opacity: 1; }
.tab-btn.active svg { stroke: var(--lime); }

/* checklist chips: icon tile replaces the generic check */
.tab-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
}
.tab-list li::before { content: none; }
.tli-ico {
  width: 32px; height: 32px; border-radius: 11px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #12300a;
  background: linear-gradient(135deg, var(--lime), #b3dc1e);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 3px 10px rgba(200,242,36,.35);
}

/* data advantage icon chips */
.df2-ico {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.df2-ico-bad {
  color: #c43030;
  background: rgba(196,48,48,.09);
  border: 1px solid rgba(196,48,48,.16);
}
.df2-ico-good {
  color: #12300a;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.df2-step-ico {
  order: 1; margin-left: auto; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lime);
  background: rgba(200,242,36,.1);
  border: 1px solid rgba(200,242,36,.25);
}
@media (max-width: 560px) {
  .df2-step-ico { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   VERTICAL SHORTS — client stories
   ════════════════════════════════════════════════════════════════════════ */
.shorts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; align-content: start;
  width: 100%;
}
.short-card {
  position: relative; aspect-ratio: 9 / 16;
  border-radius: 22px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 14px 44px rgba(1,60,51,.16), inset 0 1px 0 rgba(255,255,255,.6);
  background: #0a0f0d;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.short-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(1,60,51,.24), 0 0 0 1px rgba(200,242,36,.4);
}
.short-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.short-card:hover img { transform: scale(1.04); }
.short-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 45%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}
.short-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  border: none; cursor: pointer;
  background: linear-gradient(165deg, #e2ff55, var(--lime) 55%, #aed61c);
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 0 0 8px rgba(200,242,36,.18), inset 0 1.5px 0 rgba(255,255,255,.6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.short-card:hover .short-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 14px 36px rgba(0,0,0,.45), 0 0 0 12px rgba(200,242,36,.22), inset 0 1.5px 0 rgba(255,255,255,.7);
}
.short-title {
  position: absolute; left: 16px; right: 16px; bottom: 15px;
  font-size: 13px; font-weight: 700; color: #fff;
  line-height: 1.45; letter-spacing: -.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  pointer-events: none;
}
.short-card iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none;
}
.short-card.playing { cursor: default; }
.short-card.playing:hover { transform: none; }
@media (max-width: 560px) {
  .shorts-grid { grid-template-columns: 1fr; width: 100%; max-width: 320px; margin: 0 auto; }
}

/* ── OUR STORY — Rawan photo ─────────────────────────────────────────────── */
.os2-photo-main img { height: 460px; object-position: 50% 32%; }
.os2-chip-name { right: -8px; top: 9%; transform: rotate(1.5deg); }
@media (max-width: 920px) {
  .os2-photo-main img { height: 360px; }
}

/* ════════════════════════════════════════════════════════════════════════
   ORIGINAL ASSETS PASS — initials avatars, no borrowed photos
   ════════════════════════════════════════════════════════════════════════ */

/* hero trust stack */
.tav {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
  border: 2px solid var(--cream);
  margin-left: -8px; position: relative;
}
.tav:first-child { margin-left: 0; }
.tav-1 { background: linear-gradient(150deg, #0b5749, var(--green)); color: var(--lime); }
.tav-2 { background: linear-gradient(150deg, #e2ff55, var(--lime)); color: #12300a; }
.tav-3 { background: linear-gradient(150deg, #025040, #01302a); color: #fff; }

/* testimonial avatars */
.rcard-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  background: linear-gradient(150deg, #0b5749, var(--green));
  color: var(--lime);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 4px 12px rgba(1,60,51,.2);
}
.rcard:nth-child(2) .rcard-avatar { background: linear-gradient(150deg, #e2ff55, var(--lime)); color: #12300a; }
.rcard:nth-child(4) .rcard-avatar { background: linear-gradient(150deg, #025040, #012a24); color: #fff; }

/* our story media without the accent photo */
.os2-media { padding: 0 0 10px 0; }
.os2-chip-2 { bottom: 26px; left: -18px; }

/* hero trust row — avatars and text vertically centered */
.hero-trust { display: flex; align-items: center; gap: 14px; }
.hero-trust > div:last-child { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.trust-stars { line-height: 0; margin-bottom: 0; }

/* ── CTA socials + bottom line (footer removed) ──────────────────────────── */
.cta-socials { display: flex; gap: 10px; margin-top: 22px; }
.cta-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(244,244,242,.75);
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
  transition: all .25s var(--ease);
}
.cta-socials a:hover {
  color: #000; background: var(--lime); border-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200,242,36,.35);
}
.cta-bottom {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px; color: rgba(244,244,242,.4);
}
@media (max-width: 560px) {
  .cta-bottom { flex-direction: column; gap: 6px; }
}
