/* ============================================================
   FindingPatient V3 — BLACK + ELECTRIC LIME
   Bold. Modern. Unlike anything in medical marketing.
   ============================================================ */

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

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

:root {
  --black:    #0A0A0A;
  --black2:   #111111;
  --black3:   #1A1A1A;
  --black4:   #222222;
  --lime:     #B9FF66;
  --lime-d:   #96E84A;
  --lime-soft:#E8FFD1;
  --white:    #FFFFFF;
  --off:      #FAFAFA;
  --gray-100: #F0F0F0;
  --gray-200: #E0E0E0;
  --gray-400: #999999;
  --gray-600: #555555;
  --text:     #111111;
  --muted:    #666666;
  --ease:     cubic-bezier(.4,0,.2,1);
  --t:        .28s;
  --r:        16px;
  --r-sm:     10px;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-md:0 12px 48px rgba(0,0,0,.14);
  --shadow-dark: 0 8px 32px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 900; line-height: 1.1; }

.label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.label-lime   { background: var(--lime); color: var(--black); }
.label-white  { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15); }
.label-dark   { background: var(--black3); color: var(--gray-400); border: 1px solid var(--black4); }
.label-blue   { background: #1D4ED8; color: #fff; }
.label-indigo { background: #4338CA; color: #fff; }
.label-purple { background: #6D28D9; color: #fff; }
.label-teal   { background: #0D9488; color: #fff; }
.label-orange { background: #EA580C; color: #fff; }
.label-pink   { background: #BE185D; color: #fff; }
.label-emerald{ background: #059669; color: #fff; }

.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .85rem; }
.section-sub   { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin-inline: auto; margin-bottom: 3.5rem; line-height: 1.75; }
.lime-word     { color: var(--lime); }
.underline-lime { position: relative; display: inline-block; }
.underline-lime::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
}

/* ── Container ────────────────────────────────────────────── */
.container   { max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
.text-center { text-align: center; }
.section     { padding: 6rem 0; }
.section-dark   { background: var(--black); background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(185,255,102,.04), transparent); }
.section-light  { background: var(--white); }
.section-off    { background: var(--off); }
.section-navy   { background: #060D1F; background-image: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(96,165,250,.1), transparent); }
.section-indigo { background: #0D0720; background-image: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(139,92,246,.12), transparent); }
.section-teal   { background: #021918; background-image: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(20,184,166,.12), transparent); }
.section-coral  { background: #1C0A00; background-image: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(249,115,22,.12), transparent); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 2rem; border-radius: 100px;
  font-weight: 700; font-size: .9rem;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-lime {
  background: var(--lime); color: var(--black);
  box-shadow: 0 6px 24px rgba(185,255,102,.35);
}
.btn-lime:hover { background: var(--lime-d); box-shadow: 0 12px 36px rgba(185,255,102,.5); }

.btn-white {
  background: var(--white); color: var(--black);
  box-shadow: 0 4px 16px rgba(255,255,255,.15);
}
.btn-white:hover { box-shadow: 0 8px 28px rgba(255,255,255,.25); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.6); }

.btn-outline-dark {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ── Nav Icons ────────────────────────────────────────────── */
.nav-ico {
  display: inline-block; width: 14px; height: 14px;
  vertical-align: -.15em; margin-right: .35rem;
  flex-shrink: 0;
}

/* ── Social Brand Colors ──────────────────────────────────── */
.social-btn.ig { background: linear-gradient(135deg,#405DE6,#C13584,#FD1D1D); border-color: transparent; color: white; }
.social-btn.fb { background: #1877F2; border-color: #1877F2; color: white; }
.social-btn.tw { background: #000; border-color: #222; color: white; }
.social-btn.li { background: #0A66C2; border-color: #0A66C2; color: white; }
.social-btn.yt { background: #FF0000; border-color: #FF0000; color: white; }
.social-btn.ig:hover { opacity: .85; transform: translateY(-2px); }
.social-btn.fb:hover { background: #0e6fd0; border-color: #0e6fd0; transform: translateY(-2px); }
.social-btn.tw:hover { background: #333; border-color: #333; transform: translateY(-2px); }
.social-btn.li:hover { background: #004f92; border-color: #004f92; transform: translateY(-2px); }
.social-btn.yt:hover { background: #cc0000; border-color: #cc0000; transform: translateY(-2px); }

/* ── Footer text bright ───────────────────────────────────── */
.footer-brand .footer-tagline { color: rgba(255,255,255,.85); font-size:.875rem; line-height:1.75; margin:.85rem 0 1.5rem; }

/* ── Header ───────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--t) var(--ease), padding var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(20px);
  padding: .7rem 0;
  border-bottom-color: rgba(255,255,255,.07);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* ── Logo ─────────────────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: .7rem; }
.logo-icon { position: relative; flex-shrink: 0; }
.logo-pulse {
  position: absolute; inset: -4px;
  border-radius: 14px;
  border: 2px solid rgba(185,255,102,.4);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.5;transform:scale(1);} 50%{opacity:0;transform:scale(1.2);} }
.logo-text {
  font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.25rem; color: #fff; line-height: 1;
}
.logo-text .em { color: var(--lime); }

/* ── Nav ──────────────────────────────────────────────────── */
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.5);
  transition: color var(--t); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 2px; background: var(--lime); border-radius: 2px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.hero-glow-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(185,255,102,.12), transparent); top: -20%; left: -15%; }
.hero-glow-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,.09), transparent); bottom: -10%; right: -10%; }

.hero-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1.75rem;
}
.hero-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 10px var(--lime); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }
.hero-eyebrow-text { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .12em; }

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: #fff; margin-bottom: 1.5rem;
}
.hero-title .lime-word { color: var(--lime); }

.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 480px; margin-bottom: 2.5rem; }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero-trust-item { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: rgba(255,255,255,.4); }
.hero-trust-item .dot-sm { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }
.hero-trust-item:nth-child(2) .dot-sm { background: #FB923C; }
.hero-trust-item:nth-child(4) .dot-sm { background: #FB923C; }

/* Hero right: dashboard card */
.hero-dashboard {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
}
.dash-header {
  background: var(--black4); padding: .9rem 1.25rem;
  display: flex; align-items: center; gap: .65rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-body { padding: 1.75rem 1.5rem; }
.dash-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.dash-big { font-family: 'Poppins',sans-serif; font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: .25rem; }
.dash-big .lime-word { color: var(--lime); }
.dash-change { font-size: .8rem; font-weight: 700; color: var(--lime); margin-bottom: 1.75rem; }

.dash-bar-row { margin-bottom: 1rem; }
.dash-bar-label { display: flex; justify-content: space-between; font-size: .75rem; margin-bottom: .4rem; color: rgba(255,255,255,.5); }
.dash-bar-track { height: 6px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.dash-bar-fill  { height: 100%; border-radius: 4px; background: var(--lime); animation: bar-grow 1.5s var(--ease) forwards; transform-origin: left; }
@keyframes bar-grow { from{transform:scaleX(0);} to{transform:scaleX(1);} }

.dash-notifications { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.dash-notif {
  background: rgba(185,255,102,.06); border: 1px solid rgba(185,255,102,.15);
  border-radius: 10px; padding: .75rem 1rem;
  display: flex; align-items: center; gap: .65rem;
}
.dash-notif .dn-icon { font-size: 1rem; flex-shrink: 0; }
.dash-notif .dn-text { font-size: .78rem; color: rgba(255,255,255,.7); }
.dash-notif .dn-time { font-size: .68rem; color: rgba(255,255,255,.3); margin-left: auto; white-space: nowrap; flex-shrink: 0; }

/* ── Ticker ───────────────────────────────────────────────── */
.ticker { background: var(--lime); padding: .8rem 0; overflow: hidden; }
.ticker-track { display: flex; gap: 3rem; animation: ticker 25s linear infinite; width: max-content; }
.ticker-item { display: flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 700; color: var(--black); white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; }
.ticker-sep { opacity: .4; }
@keyframes ticker { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ── Services Bento ───────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.b1 { grid-column: span 7; grid-row: span 2; }
.b2 { grid-column: span 5; grid-row: span 2; }
.b3 { grid-column: span 4; }
.b4 { grid-column: span 4; }
.b5 { grid-column: span 4; }
.b6 { grid-column: span 12; grid-row: span 1; height: 160px; }

.bento-card {
  background: var(--black2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 2rem;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: border-color var(--t), transform var(--t) var(--ease);
  cursor: default;
  height: 100%;
}
.bento-card:hover { border-color: var(--lime); transform: translateY(-3px); }
.bento-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--lime); opacity: 0; transition: opacity var(--t);
}
.bento-card:hover::before { opacity: 1; }

.bento-icon { font-size: 2rem; margin-bottom: .75rem; }
.bento-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: .4rem; }
.bento-card p  { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.65; flex: 1; }
.bento-tag {
  display: inline-block; font-size: .65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--lime); margin-bottom: 1rem;
}
.bento-metric { font-family: 'Poppins',sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--lime); line-height: 1; margin-top: .75rem; }
.bento-metric-label { font-size: .72rem; color: rgba(255,255,255,.4); }

/* Wide card (b1) special layout */
.b1 .bento-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; height: 100%; }
.b1 .bento-text  { display: flex; flex-direction: column; justify-content: space-between; }
.b1 .bento-visual {
  background: rgba(185,255,102,.05); border: 1px solid rgba(185,255,102,.12);
  border-radius: 12px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem; justify-content: center;
}
.b1 .stat-row { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
.b1 .stat-row .val { font-family: 'Poppins',sans-serif; font-weight: 800; color: var(--lime); font-size: 1rem; }
.b1 .stat-row .lbl { color: rgba(255,255,255,.4); }

/* Full-width bottom card (b6) */
.b6 .bento-inner { display: flex; align-items: center; gap: 4rem; height: 100%; }
.b6 .bento-text  { flex: 1; }
.b6 h3 { font-size: 1.25rem; }
.b6 p  { margin-top: .4rem; }
.b6 .bento-arrow { font-size: 2rem; color: var(--lime); flex-shrink: 0; }

/* ── Why Us ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.why-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--black); border: 4px solid var(--black); border-radius: var(--r); overflow: hidden; }
.why-num-cell {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform .22s, filter .22s;
}
.why-num-cell:hover { transform: scale(1.03); filter: brightness(1.06); z-index: 1; }
.why-num-cell:first-child { border-radius: calc(var(--r) - 4px) 0 0 0; }
.why-num-cell:nth-child(2){ border-radius: 0 calc(var(--r) - 4px) 0 0; }
.why-num-cell:nth-child(3){ border-radius: 0 0 0 calc(var(--r) - 4px); }
.why-num-cell:last-child  { border-radius: 0 0 calc(var(--r) - 4px) 0; }

/* Individual cell colors */
.why-num-cell:nth-child(1) { background: #B9FF66; }
.why-num-cell:nth-child(2) { background: #0A0A0A; }
.why-num-cell:nth-child(3) { background: #8B5CF6; }
.why-num-cell:nth-child(4) { background: #F97316; }

.why-n { font-family: 'Poppins',sans-serif; font-size: 3rem; font-weight: 900; color: var(--black); line-height: 1; }
.why-n-label { font-size: .8rem; color: rgba(0,0,0,.55); margin-top: .35rem; font-weight: 600; }

/* Per-cell text colors */
.why-num-cell:nth-child(1) .why-n        { color: #0A0A0A; }
.why-num-cell:nth-child(1) .why-n-label  { color: rgba(0,0,0,.6); }
.why-num-cell:nth-child(2) .why-n        { color: #B9FF66; }
.why-num-cell:nth-child(2) .why-n-label  { color: rgba(185,255,102,.7); }
.why-num-cell:nth-child(3) .why-n        { color: #ffffff; }
.why-num-cell:nth-child(3) .why-n-label  { color: rgba(255,255,255,.75); }
.why-num-cell:nth-child(4) .why-n        { color: #ffffff; }
.why-num-cell:nth-child(4) .why-n-label  { color: rgba(255,255,255,.8); }

.why-text .label { margin-bottom: 1rem; }
.why-text h2    { font-size: clamp(2rem,3.5vw,3rem); margin-bottom: 1.5rem; }
.why-rows { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-row-item { display: flex; gap: .85rem; align-items: flex-start; padding: 1.1rem; border-radius: var(--r-sm); transition: background var(--t); }
.why-row-item:hover { background: var(--off); }
.why-row-icon { width: 36px; height: 36px; background: var(--lime); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.why-row-item h4 { font-size: .95rem; color: var(--black); margin-bottom: .2rem; }
.why-row-item p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── Stats Band ───────────────────────────────────────────── */
.stats-band {
  background: var(--black);
  padding: 5.5rem 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(185,255,102,.07), transparent);
}
.stats-flex {
  display: flex;
  gap: 0;
  position: relative;
}
.stat-block {
  flex: 1;
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-block:last-child { border-right: none; }
.stat-big { font-family: 'Poppins',sans-serif; font-size: clamp(2.5rem,4vw,4.5rem); font-weight: 900; color: #fff; line-height: 1; margin-bottom: .35rem; }
.stat-big .lime-word { color: var(--lime); }
.stat-lbl { font-size: .82rem; color: rgba(255,255,255,.75); letter-spacing: .02em; }

/* ── Process ──────────────────────────────────────────────── */
.process-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.process-row::before {
  content: '';
  position: absolute;
  top: 20px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, #B9FF66, #60A5FA, #A78BFA, #F97316, #F472B6);
  border-radius: 2px;
}
.proc-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.proc-num {
  width: 44px; height: 44px;
  background: var(--lime); color: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins',sans-serif; font-weight: 900; font-size: .95rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.proc-num:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.proc-step:nth-child(1) .proc-num { background: #B9FF66; color: #0A0A0A; box-shadow: 0 4px 16px rgba(185,255,102,.4); }
.proc-step:nth-child(2) .proc-num { background: #60A5FA; color: #fff;    box-shadow: 0 4px 16px rgba(96,165,250,.4); }
.proc-step:nth-child(3) .proc-num { background: #A78BFA; color: #fff;    box-shadow: 0 4px 16px rgba(167,139,250,.4); }
.proc-step:nth-child(4) .proc-num { background: #F97316; color: #fff;    box-shadow: 0 4px 16px rgba(249,115,22,.4); }
.proc-step:nth-child(5) .proc-num { background: #F472B6; color: #fff;    box-shadow: 0 4px 16px rgba(244,114,182,.4); }
.proc-step h4 { font-size: .9rem; color: var(--black); margin-bottom: .35rem; font-weight: 700; }
.proc-step p  { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.testi-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: border-color var(--t);
}
.testi-card:hover { border-color: var(--lime); }
.stars { color: var(--lime); font-size: .9rem; letter-spacing: .08em; margin-bottom: 1rem; }
.testi-q { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-meta { display: flex; align-items: center; gap: .7rem; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; flex-shrink: 0; }
.testi-name { font-size: .875rem; font-weight: 700; color: #fff; }
.testi-role { font-size: .72rem; color: rgba(255,255,255,.35); }

/* ── Packages ─────────────────────────────────────────────── */
.pkg-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; align-items: stretch; }
.pkg {
  border-radius: var(--r);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.pkg:hover { transform: translateY(-4px); }

/* ── Starter — light lavender ─────────────────────────────── */
.pkg-row .pkg:nth-child(1) {
  background: #F5F3FF;
  border: 2px solid #C4B5FD;
  box-shadow: 0 4px 24px rgba(124,58,237,.1);
}
.pkg-row .pkg:nth-child(1):hover { box-shadow: 0 12px 40px rgba(124,58,237,.2); }
.pkg-row .pkg:nth-child(1) h3         { color: #5B21B6; }
.pkg-row .pkg:nth-child(1) .pkg-price { color: #5B21B6; }
.pkg-row .pkg:nth-child(1) .pkg-sub   { color: #7C3AED; opacity: .7; }
.pkg-row .pkg:nth-child(1) .pkg-period{ color: #7C3AED; opacity: .6; }
.pkg-row .pkg:nth-child(1) .pkg-ft li { color: #4C1D95; opacity: .75; }
.pkg-row .pkg:nth-child(1) .pkg-ft .y { color: #5B21B6; opacity: 1; font-weight: 800; }
.pkg-row .pkg:nth-child(1) .pkg-ft .n { color: #C4B5FD; }
.pkg-row .pkg:nth-child(1) .btn       { background: #6D28D9; color: #fff; border-color: #6D28D9; box-shadow: 0 6px 20px rgba(109,40,217,.35); }
.pkg-row .pkg:nth-child(1) .btn:hover { background: #5B21B6; border-color: #5B21B6; box-shadow: 0 10px 28px rgba(109,40,217,.5); }
.pkg-row .pkg:nth-child(1) .pkg-icon  { filter: hue-rotate(220deg); }

/* ── Growth — dark emerald (featured) ────────────────────── */
.pkg.featured {
  background: linear-gradient(145deg, #022C22 0%, #065F46 100%);
  border: 2px solid #047857;
  box-shadow: 0 0 0 4px rgba(6,95,70,.25), 0 16px 48px rgba(2,44,34,.55);
  transform: scale(1.04);
}
.pkg.featured:hover { transform: scale(1.04) translateY(-4px); }
.pkg.featured h3,
.pkg.featured .pkg-price { color: #fff; }
.pkg.featured .pkg-sub   { color: rgba(255,255,255,.6); }
.pkg.featured .pkg-period{ color: rgba(255,255,255,.5); }
.pkg.featured .pkg-ft li { color: rgba(255,255,255,.7); }
.pkg.featured .pkg-ft .y { color: #B9FF66; font-weight: 800; }
.pkg.featured .pkg-ft .n { color: rgba(255,255,255,.2); }
.pkg.featured .btn-lime  { background: #B9FF66; color: #0A0A0A; box-shadow: 0 6px 20px rgba(185,255,102,.45); }
.pkg.featured .btn-lime:hover { background: #96E84A; box-shadow: 0 10px 28px rgba(185,255,102,.6); }

.featured-tag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: #B9FF66; color: #022C22;
  font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: .3rem 1.1rem; border-radius: 0 0 12px 12px;
}

/* ── Dominator — dark indigo ──────────────────────────────── */
.pkg-row .pkg:nth-child(3) {
  background: #1E1B4B;
  border: 2px solid #312E81;
  box-shadow: 0 4px 24px rgba(30,27,75,.35);
}
.pkg-row .pkg:nth-child(3):hover { box-shadow: 0 12px 40px rgba(30,27,75,.55); }
.pkg-row .pkg:nth-child(3) h3         { color: #fff; }
.pkg-row .pkg:nth-child(3) .pkg-price { color: #fff; }
.pkg-row .pkg:nth-child(3) .pkg-sub   { color: rgba(196,181,253,.7); }
.pkg-row .pkg:nth-child(3) .pkg-period{ color: rgba(196,181,253,.55); }
.pkg-row .pkg:nth-child(3) .pkg-ft li { color: rgba(196,181,253,.65); }
.pkg-row .pkg:nth-child(3) .pkg-ft .y { color: #C4B5FD; font-weight: 800; }
.pkg-row .pkg:nth-child(3) .pkg-ft .n { color: rgba(255,255,255,.15); }
.pkg-row .pkg:nth-child(3) .btn       { background: #C4B5FD; color: #1E1B4B; border-color: #C4B5FD; box-shadow: 0 6px 20px rgba(196,181,253,.3); }
.pkg-row .pkg:nth-child(3) .btn:hover { background: #DDD6FE; border-color: #DDD6FE; box-shadow: 0 10px 28px rgba(196,181,253,.45); }

.pkg-icon { font-size: 2rem; margin-bottom: 1.1rem; }
.pkg h3   { font-size: 1.25rem; margin-bottom: .25rem; }
.pkg-sub  { font-size: .8rem; margin-bottom: 1.5rem; }
.pkg-price { font-family: 'Poppins',sans-serif; font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: .2rem; }
.pkg-period { font-size: .8rem; margin-bottom: 2rem; }
.pkg-ft { display: flex; flex-direction: column; gap: .6rem; flex: 1; margin-bottom: 2rem; }
.pkg-ft li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; }
.pkg-ft .y { font-weight: 800; }
.pkg-ft .n { }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: .6rem; }
.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); overflow: hidden; transition: border-color var(--t); }
.faq-item.open { border-color: var(--black); }
.faq-q {
  padding: 1.15rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: .9rem; color: var(--black); gap: 1rem;
}
.faq-arr { color: var(--black); transition: transform var(--t); font-size: 1.1rem; flex-shrink: 0; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 250px; }
.faq-a p { padding: 0 1.5rem 1.1rem; font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* ── CTA (lime background!) ───────────────────────────────── */
.cta-lime {
  background: var(--lime);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-lime h2  { font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--black); margin-bottom: 1rem; }
.cta-lime p   { font-size: 1.05rem; color: rgba(0,0,0,.6); max-width: 520px; margin-inline: auto; margin-bottom: 2.5rem; }
.cta-lime::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,0,0,.06); pointer-events: none;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Results / Case Studies ───────────────────────────────── */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.result-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r); padding: 2rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.result-card:hover { border-color: var(--black); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.result-type { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .75rem; }
.result-metric { font-family: 'Poppins',sans-serif; font-size: 3.2rem; font-weight: 900; color: var(--black); line-height: 1; margin-bottom: .4rem; }
.result-desc   { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: .75rem; }
.result-source { font-size: .75rem; color: var(--gray-400); font-style: italic; }

/* Case study cards */
.case-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r); overflow: hidden; margin-bottom: 1.25rem;
}
.case-card:last-child { margin-bottom: 0; }
.case-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; padding: 2.5rem; align-items: center; }
.case-type { display: inline-block; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; background: var(--lime); color: var(--black); padding: .2rem .75rem; border-radius: 100px; margin-bottom: 1rem; }
.case-card h3 { font-size: 1.4rem; color: var(--black); margin-bottom: 1.25rem; }
.case-detail { font-size: .875rem; color: var(--muted); margin-bottom: .6rem; line-height: 1.65; }
.case-detail strong { color: var(--black); }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.case-m { background: var(--off); border: 1px solid var(--gray-200); border-radius: 12px; padding: 1.25rem; text-align: center; }
.case-m-val { font-family: 'Poppins',sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--black); line-height: 1; }
.case-m-lbl { font-size: .7rem; color: var(--muted); margin-top: .2rem; }
.case-m.after .case-m-val { color: var(--black); }
.case-m.after { border-color: var(--lime); background: var(--lime-soft); }

/* ── About ────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-grid p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-info-card {
  background: var(--black); border-radius: var(--r);
  padding: 2.5rem; color: #fff; position: relative; overflow: hidden;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1rem; }
.team-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r); padding: 1.75rem 1.25rem; text-align: center;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.team-card:hover { border-color: var(--black); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-av { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; }
.team-name { font-size: .92rem; font-weight: 800; color: var(--black); margin-bottom: .2rem; }
.team-role { font-size: .72rem; font-weight: 700; color: var(--muted); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em; }
.team-bio  { font-size: .77rem; color: var(--muted); line-height: 1.55; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.c-info-item { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.75rem; }
.c-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--lime); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.c-info-item h4 { font-size: .9rem; color: var(--black); margin-bottom: .15rem; }
.c-info-item p  { font-size: .85rem; color: var(--muted); }
.contact-form-box {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r); padding: 2.5rem;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-grp { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.f-grp label { font-size: .8rem; font-weight: 700; color: var(--black); }
.f-grp input, .f-grp select, .f-grp textarea {
  background: var(--off); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm); padding: .8rem 1rem;
  color: var(--black); font-size: .9rem; font-family: inherit;
  outline: none; width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus {
  border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.f-grp textarea { resize: vertical; min-height: 110px; }
.f-grp select { cursor: pointer; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 10rem 0 5.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 30% 0%, rgba(185,255,102,.12), transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(249,115,22,.08), transparent 65%);
}
.page-hero > .container { position: relative; }
.page-hero h1 { font-size: clamp(2.5rem,5vw,4rem); color: #fff; margin-bottom: 1rem; }
.page-hero p  { font-size: 1.1rem; color: rgba(255,255,255,.45); max-width: 560px; margin-inline: auto; }

/* ── Billing Toggle ───────────────────────────────────────── */
.billing-wrap { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.b-lbl { font-size: .9rem; font-weight: 600; color: var(--muted); transition: color var(--t); }
.b-lbl.active { color: var(--black); }
.toggle-sw { position: relative; width: 48px; height: 24px; cursor: pointer; }
.toggle-sw input { display: none; }
.toggle-sl { position: absolute; inset: 0; background: var(--gray-200); border-radius: 100px; transition: var(--t); }
.toggle-sl::before { content: ''; position: absolute; width: 16px; height: 16px; top: 4px; left: 4px; background: #fff; border-radius: 50%; transition: var(--t); box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.toggle-sw input:checked + .toggle-sl { background: var(--black); }
.toggle-sw input:checked + .toggle-sl::before { transform: translateX(24px); }
.save-pill { background: var(--lime); color: var(--black); font-size: .68rem; font-weight: 800; padding: .15rem .6rem; border-radius: 100px; }

/* ── Compare Table ────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; margin-top: 3rem; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.compare-table th, .compare-table td { padding: .85rem 1.25rem; text-align: center; border-bottom: 1px solid var(--gray-100); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--muted); }
.compare-table thead th { font-size: .95rem; color: var(--black); padding-bottom: 1.25rem; }
.compare-table .feat-col { color: var(--black); font-weight: 900; }
.compare-table tbody tr:hover td { background: var(--off); }
.compare-table .cy { color: var(--black); font-weight: 800; }
.compare-table .cn { color: var(--gray-200); }

/* ── Footer ───────────────────────────────────────────────── */
#footer { background: var(--black); padding: 5rem 0 2rem; position: relative; }
#footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,102,.3), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.85); margin: .85rem 0 1.5rem; line-height: 1.75; }
.footer-socials { display: flex; gap: .6rem; }
.social-btn {
  width: 34px; height: 34px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: rgba(255,255,255,.4); transition: var(--t);
}
.social-btn:hover { background: var(--lime); border-color: var(--lime); color: var(--black); }
.footer-col h5 { font-size: .75rem; font-weight: 800; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.75); transition: color var(--t); display: flex; align-items: center; gap: .4rem; }
.footer-col ul li a:hover { color: var(--lime); }
.footer-newsletter p { font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; line-height: 1.65; }
.nl-form { display: flex; gap: .5rem; }
.nl-form input {
  flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: .65rem 1rem; color: #fff;
  font-size: .875rem; outline: none; transition: border-color var(--t);
}
.nl-form input:focus { border-color: var(--lime); }
.nl-form input::placeholder { color: rgba(255,255,255,.25); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.75); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.75); transition: color var(--t); }
.footer-bottom a:hover { color: var(--lime); }

/* ── Bento card color accents ─────────────────────────────── */
.b1.bento-card { border-top: 3px solid #B9FF66; }
.b2.bento-card { border-top: 3px solid #60A5FA; }
.b3.bento-card { border-top: 3px solid #A78BFA; }
.b4.bento-card { border-top: 3px solid #FB923C; }
.b5.bento-card { border-top: 3px solid #34D399; }
.b6.bento-card { border-top: 3px solid #F472B6; }

/* ── Why-row icon colors per step ────────────────────────── */
.why-rows .why-row-item:nth-child(1) .why-row-icon { background: #B9FF66; color: #0A0A0A; }
.why-rows .why-row-item:nth-child(2) .why-row-icon { background: #60A5FA; color: #fff; }
.why-rows .why-row-item:nth-child(3) .why-row-icon { background: #FB923C; color: #fff; }
.why-rows .why-row-item:nth-child(4) .why-row-icon { background: #A78BFA; color: #fff; }

/* ── Testimonial card color tints ────────────────────────── */
.testi-card:nth-child(1) { border-left: 3px solid #B9FF66; background: rgba(185,255,102,.04); }
.testi-card:nth-child(2) { border-left: 3px solid #60A5FA; background: rgba(96,165,250,.06); }
.testi-card:nth-child(3) { border-left: 3px solid #A78BFA; background: rgba(167,139,250,.06); }
.testi-card:nth-child(4) { border-left: 3px solid #FB923C; background: rgba(251,146,60,.06); }
.testi-card:nth-child(5) { border-left: 3px solid #34D399; background: rgba(52,211,153,.06); }
.testi-card:nth-child(6) { border-left: 3px solid #F472B6; background: rgba(244,114,182,.06); }
.testi-card:nth-child(1) .testi-av { background: rgba(185,255,102,.15); color: #B9FF66; }
.testi-card:nth-child(2) .testi-av { background: rgba(96,165,250,.15);  color: #60A5FA; }
.testi-card:nth-child(3) .testi-av { background: rgba(167,139,250,.15); color: #A78BFA; }
.testi-card:nth-child(4) .testi-av { background: rgba(251,146,60,.15);  color: #FB923C; }
.testi-card:nth-child(5) .testi-av { background: rgba(52,211,153,.15);  color: #34D399; }
.testi-card:nth-child(6) .testi-av { background: rgba(244,114,182,.15); color: #F472B6; }

/* ── Result card icon colors ──────────────────────────────── */
.result-card:nth-child(1) .result-type { color: #16A34A; }
.result-card:nth-child(2) .result-type { color: #2563EB; }
.result-card:nth-child(3) .result-type { color: #059669; }
.result-card:nth-child(4) .result-type { color: #D97706; }
.result-card:nth-child(5) .result-type { color: #7C3AED; }
.result-card:nth-child(6) .result-type { color: #DB2777; }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Service section row ──────────────────────────────────── */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ── Values / about grid ──────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* ── Responsive ───────────────────────────────────────────── */

/* ─ Large tablet (≤1100px) ─ */
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .b1,.b2 { grid-column: span 1; grid-row: span 1; min-height: 240px; }
  .b3,.b4,.b5 { grid-column: span 1; min-height: 200px; }
  .b6 { grid-column: span 2; height: auto; }
  .b6 .bento-inner { flex-direction: column; gap: 1rem; }
  .b1 .bento-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
  .pkg-row { gap: 1rem; }
  .team-grid { grid-template-columns: repeat(3,1fr); }
}

/* ─ Tablet (≤900px) ─ */
@media (max-width: 900px) {
  .section { padding: 4rem 0; }
  .stats-band { padding: 3rem 0; }
  .hero { padding: 7rem 0 4rem; }
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-dashboard { display: none; }
  .hero-sub { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .case-body { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .stats-flex { flex-wrap: wrap; }
  .stat-block { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* ─ Mobile (≤768px) ─ */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .stats-band { padding: 2.5rem 0; }
  .container { padding-inline: 1.25rem; }

  /* Nav */
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 1.75rem; z-index: 999;
  }
  .nav-links a { font-size: 1.1rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: .5rem; }
  .nav-links a:hover, .nav-links a.active { color: #fff; }
  .nav-links .nav-ico { width: 18px; height: 18px; }
  .nav-links.open { display: flex; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; z-index: 1000; }

  /* Hero */
  .hero { padding: 5.5rem 0 3.5rem; min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-dashboard { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: .95rem; max-width: 100%; margin-bottom: 1.75rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-cta .btn { justify-content: center; }
  .hero-trust { gap: 1rem; padding-top: 1.5rem; }

  /* Bento */
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; gap: .85rem; }
  .b1,.b2,.b3,.b4,.b5,.b6 { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 0 !important; height: auto !important; }
  .b6 .bento-inner { flex-direction: column; gap: 1rem; }
  .b1 .bento-inner { grid-template-columns: 1fr; }
  .b6 { height: auto !important; }
  .bento-card { padding: 1.5rem; }

  /* Stats */
  .stats-flex { flex-direction: column; }
  .stat-block { border-right: none; border-left: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 1.75rem 1.5rem; }
  .stat-big { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-numbers { margin-top: 0; }
  .why-num-cell { padding: 2rem 1.5rem; }

  /* Process */
  .process-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .process-row::before { display: none; }

  /* Packages */
  .pkg-row { grid-template-columns: 1fr; gap: 1rem; }
  .pkg.featured { transform: none; order: -1; }
  .pkg.featured:hover { transform: translateY(-4px); }
  .billing-wrap { flex-wrap: wrap; gap: .75rem; justify-content: center; }
  .compare-table { font-size: .78rem; }
  .compare-table th, .compare-table td { padding: .65rem .5rem; }
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); }

  /* Results & Testimonials */
  .results-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  /* Team & Values */
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-lime { padding: 3rem 1.5rem; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; gap: .75rem; width: 100%; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }

  /* Forms */
  .f-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .case-body { grid-template-columns: 1fr; gap: 2rem; }

  /* Services & Values */
  .svc-row { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Section headings */
  .section-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .section-sub { font-size: .9rem; margin-bottom: 2rem; }
}

/* ─ Small mobile (≤480px) ─ */
@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .container { padding-inline: 1rem; }
  .hero { padding: 5rem 0 3rem; }
  .hero-title { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }
  .hero-trust { flex-direction: column; gap: .6rem; }

  .stat-block { padding: 1.5rem 1rem; }
  .stat-big { font-size: 2.4rem; }

  .why-numbers { grid-template-columns: 1fr; }
  .why-num-cell { border-radius: 0 !important; padding: 1.5rem 1rem; }
  .why-n { font-size: 2.25rem; }

  .process-row { grid-template-columns: 1fr; gap: 1.25rem; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
  .footer-newsletter { grid-column: auto; }
  .nl-form { flex-direction: column; gap: .6rem; }
  .nl-form input, .nl-form button { width: 100%; }

  .bento-card { padding: 1.25rem; }
  .bento-metric { font-size: 2rem; }
  .result-metric { font-size: 2.5rem; }

  .cta-btns .btn { max-width: 100%; }
  .section-title { font-size: 1.75rem; }
}

/* ── Colored Stats Blocks ─────────────────────────────────── */
.stats-flex .stat-block:nth-child(1) { border-top: 3px solid #B9FF66; background: rgba(185,255,102,.06); }
.stats-flex .stat-block:nth-child(1) .stat-big { color: #B9FF66; }
.stats-flex .stat-block:nth-child(2) { border-top: 3px solid #60A5FA; background: rgba(96,165,250,.06); }
.stats-flex .stat-block:nth-child(2) .stat-big { color: #60A5FA; }
.stats-flex .stat-block:nth-child(3) { border-top: 3px solid #A78BFA; background: rgba(167,139,250,.06); }
.stats-flex .stat-block:nth-child(3) .stat-big { color: #A78BFA; }
.stats-flex .stat-block:nth-child(4) { border-top: 3px solid #FB923C; background: rgba(251,146,60,.06); }
.stats-flex .stat-block:nth-child(4) .stat-big { color: #FB923C; }

/* ── Colored Nav Icons ────────────────────────────────────── */
.nav-links a:nth-child(1) .nav-ico { color: #B9FF66; }
.nav-links a:nth-child(2) .nav-ico { color: #60A5FA; }
.nav-links a:nth-child(3) .nav-ico { color: #FB923C; }
.nav-links a:nth-child(4) .nav-ico { color: #A78BFA; }
.nav-links a:nth-child(5) .nav-ico { color: #34D399; }
.nav-links a:nth-child(6) .nav-ico { color: #F472B6; }

/* ── Colored Result Cards ─────────────────────────────────── */
.results-grid .result-card:nth-child(1) { border-top: 3px solid #B9FF66; }
.results-grid .result-card:nth-child(1) .result-metric { color: #16A34A; }
.results-grid .result-card:nth-child(2) { border-top: 3px solid #60A5FA; }
.results-grid .result-card:nth-child(2) .result-metric { color: #2563EB; }
.results-grid .result-card:nth-child(3) { border-top: 3px solid #34D399; }
.results-grid .result-card:nth-child(3) .result-metric { color: #059669; }
.results-grid .result-card:nth-child(4) { border-top: 3px solid #F59E0B; }
.results-grid .result-card:nth-child(4) .result-metric { color: #D97706; }
.results-grid .result-card:nth-child(5) { border-top: 3px solid #A78BFA; }
.results-grid .result-card:nth-child(5) .result-metric { color: #7C3AED; }
.results-grid .result-card:nth-child(6) { border-top: 3px solid #F472B6; }
.results-grid .result-card:nth-child(6) .result-metric { color: #DB2777; }

/* ── Footer Link Icons ────────────────────────────────────── */
.foot-ico { display: inline-block; width: 13px; height: 13px; vertical-align: -.1em; flex-shrink: 0; }

/* ── Orange Accent Touches ────────────────────────────────── */

/* Hero: second eyebrow dot pulses orange */
.hero-dot-2 { background: #F97316; box-shadow: 0 0 10px #F97316; animation-delay: 1s; }

/* Page-hero inner pages: orange accent streak */
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 3px;
  background: linear-gradient(90deg, #B9FF66, #F97316);
  border-radius: 2px;
}

/* Ticker: alternate separator dots orange */
.ticker-sep { color: #F97316; opacity: .7; }

/* Footer top border: lime → orange gradient */
#footer::before {
  background: linear-gradient(90deg, transparent, rgba(185,255,102,.3), rgba(249,115,22,.25), transparent);
}

/* Footer newsletter subscribe button: orange on hover */
.nl-form .btn:hover { background: #F97316; border-color: #F97316; }

/* Footer bottom hover: orange instead of lime */
.footer-bottom a:hover { color: #FB923C; }
.footer-col ul li a:hover { color: #FB923C; }

/* CTA section: orange decorative blob */
.cta-lime::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(249,115,22,.15); pointer-events: none;
}

/* Contact info icons: alternate orange */
.c-info-item:nth-child(2) .c-icon { background: #F97316; }

/* Coral section: ensure all text is legible on dark warm bg */
.section-coral .section-title  { color: #fff; }
.section-coral .section-sub    { color: rgba(255,255,255,.55); }
.section-coral .c-info-item h4 { color: #fff; }
.section-coral .c-info-item p  { color: rgba(255,255,255,.6); }
.section-coral .c-icon         { background: rgba(249,115,22,.25); }
.section-coral .c-info-item:nth-child(1) .c-icon { background: #B9FF66; }
.section-coral .c-info-item:nth-child(2) .c-icon { background: #F97316; }
.section-coral .c-info-item:nth-child(3) .c-icon { background: #60A5FA; }
.section-coral .c-info-item:nth-child(4) .c-icon { background: #A78BFA; }
/* FAQ on coral */
.section-coral .faq-item       { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section-coral .faq-q          { color: #fff; }
.section-coral .faq-a p        { color: rgba(255,255,255,.55); }
.section-coral .faq-item.open .faq-q { color: #FB923C; }
/* Process steps on coral */
.section-coral .proc-step h4   { color: #fff; }
.section-coral .proc-step p    { color: rgba(255,255,255,.55); }
.section-coral .process-row::before { opacity: .6; }
/* Telemarketing/service text on coral */
.section-coral .why-row-item h4 { color: #fff; }
.section-coral .why-row-item p  { color: rgba(255,255,255,.55); }
.section-coral .why-row-item    { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }

/* FAQ q orange on open (global, not just coral) */
.faq-item.open .faq-q { color: #F97316; }

/* Why-row icons: already have orange on nth-child(3), bump it */
.why-rows .why-row-item:nth-child(3) .why-row-icon { background: #F97316; }

/* Bento card b4: switch to orange accent (was orange already via FB923C — deepen) */
.b4.bento-card { border-top: 3px solid #F97316; }

/* Compare table featured column header: orange dot indicator */
.compare-table .feat-col { border-bottom: 2px solid #F97316; }

/* Pricing save pill: add orange tint */
.save-pill { background: linear-gradient(90deg, #B9FF66, #F9A825); }

/* Result card 4 already uses amber — remap to true orange for consistency */
.results-grid .result-card:nth-child(4) { border-top: 3px solid #F97316; }
.results-grid .result-card:nth-child(4) .result-metric { color: #EA580C; }

/* Testimonial card 4: update to orange (was FB923C ambient) */
.testi-card:nth-child(4) { border-left: 3px solid #F97316; background: rgba(249,115,22,.06); }

/* Stats block 4 already orange — ensure consistency */
.stats-flex .stat-block:nth-child(4) { border-top: 3px solid #F97316; background: rgba(249,115,22,.06); }
.stats-flex .stat-block:nth-child(4) .stat-big { color: #FB923C; }
