/* ─── Design tokens ─────────────────────────────────────────────────────── */
:root {
  --bg:      #FAFAF8;
  --bg2:     #F4F4F1;
  --card:    #FFFFFF;
  --heading: #0F172A;
  --body:    #475569;
  --muted:   #64748B;
  --border:  #E5E7EB;
  --accent:  #27C6F5;
  --urgency: #FF6B6B;
  --cta-bg:  #111111;
  --nav-bg:  rgba(250,250,248,0.96);
  --shadow:  0 1px 3px rgba(15,23,42,0.06), 0 4px 16px rgba(15,23,42,0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--body);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Highlight chips ───────────────────────────────────────────────────── */
.hl {
  display: inline-block;
  padding: 2px 12px 4px;
  border-radius: 6px;
  font-weight: 800;
}
/* urgency — losing leads, missed calls, warnings */
.hl-r { background: rgba(255,107,107,0.1); color: #D93535; border: 1px solid rgba(255,107,107,0.22); }
/* positive — Google ranking, conversions */
.hl-g { background: rgba(39,198,245,0.1); color: #0BABDB; border: 1px solid rgba(39,198,245,0.22); }

/* ─── Navigation ────────────────────────────────────────────────────────── */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%; height: 64px;
  z-index: 500;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
}

.nav-desktop { display: flex; align-items: center; padding: 0 40px; }
.nav-section { display: flex; align-items: center; }
.nav-left, .nav-right { flex: 1; min-width: 0; }
.nav-right { justify-content: flex-end; gap: 8px; }
.nav-center { flex-shrink: 0; gap: 4px; }

.nav-logo { height: 36px; min-width: 120px; display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }

.nav-link {
  font-size: 13px; font-weight: 500;
  color: var(--muted); text-decoration: none;
  padding: 7px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--heading); background: rgba(15,23,42,0.05); }

.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--cta-bg); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 10px 22px; border-radius: 100px;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #000; }

/* Mobile nav */
.nav-mobile { display: none; padding: 0 20px; }

.nav-mobile-bar {
  width: 100%; height: 64px;
  display: flex; align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-mobile-bar .nav-logo {
  position: absolute;
  left: 50%; transform: translateX(-50%);
}

.nav-hamburger {
  width: 36px; height: 36px;
  border-radius: 8px; background: transparent;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; flex-shrink: 0; padding: 0;
}
.nav-hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--heading); border-radius: 2px;
  transition: opacity 0.25s, transform 0.25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg); margin-bottom: -6.5px; }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg); margin-top: -6.5px; }

.nav-drawer {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  z-index: 499; flex-direction: column; gap: 4px;
  padding: 16px 20px 24px;
  background: rgba(250,250,248,0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
}
.nav-drawer.is-open { display: flex; }

.nav-drawer-link {
  font-size: 15px; font-weight: 600; color: var(--body);
  text-decoration: none; padding: 13px 16px;
  border-radius: 10px; border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-drawer-link:hover { color: var(--heading); background: rgba(15,23,42,0.04); border-color: var(--border); }

.nav-drawer-cta {
  display: block; text-align: center; margin-top: 8px;
  background: var(--cta-bg); color: #fff;
  font-size: 14px; font-weight: 700; padding: 14px;
  border-radius: 12px; text-decoration: none; transition: background 0.2s;
}
.nav-drawer-cta:hover { background: #000; }

@media (max-width: 767px) {
  .nav-desktop { display: none; }
  .nav-mobile { display: flex; align-items: center; }
}
@media (min-width: 768px) {
  .nav-mobile { display: none; }
  .nav-drawer { display: none !important; }
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 110px 40px 80px;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-mesh {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(39,198,245,0.07) 0%, transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto; text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  padding: 7px 18px; border-radius: 100px;
  margin-bottom: 32px; box-shadow: var(--shadow);
}
.badge-stars { color: #F59E0B; font-size: 12px; letter-spacing: 1px; }
.badge-text { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: clamp(40px, 6.5vw, 82px);
  letter-spacing: -0.04em; line-height: 1.03;
  color: var(--heading); margin-bottom: 26px;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 19px); font-weight: 400;
  color: var(--body); line-height: 1.72;
  max-width: 580px; margin: 0 auto 44px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cta-bg); color: #fff;
  font-size: 15px; font-weight: 700; padding: 16px 32px;
  border-radius: 100px; text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: #000; }
.btn-primary--lg { padding: 17px 36px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); color: var(--heading);
  font-size: 15px; font-weight: 600; padding: 16px 32px;
  border-radius: 100px; border: 1.5px solid var(--border);
  text-decoration: none; transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--heading); }
.btn-ghost--fit { width: fit-content; }

.hero-trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--muted); }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ─── Ticker ────────────────────────────────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0; background: var(--bg2); overflow: hidden;
}
.t-track { display: flex; width: max-content; animation: tick 22s linear infinite; }
.t-item {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 0 32px; white-space: nowrap;
  display: flex; align-items: center; gap: 32px;
}
.t-sep { color: var(--accent); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Shared section utilities ──────────────────────────────────────────── */
.container { max-width: 1040px; margin: 0 auto; }
.s-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.s-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: clamp(28px, 4vw, 50px);
  letter-spacing: -0.03em; line-height: 1.08;
  color: var(--heading); margin-bottom: 18px;
}
.s-sub { font-size: 15px; color: var(--body); line-height: 1.75; max-width: 560px; }
.s-header { margin-bottom: 56px; }
.s-header--center { text-align: center; }
.s-sub--center { margin-left: auto; margin-right: auto; }
.showcase-visual--center { justify-content: center; }
.cta-label { text-align: center; margin-bottom: 16px; }
.cta-actions { display: flex; justify-content: center; }

/* ─── Reveal animation ──────────────────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }

/* ─── Pain / problem cards ──────────────────────────────────────────────── */
.pain-section { padding: 100px 40px; background: var(--bg2); }
.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pain-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s;
}
.pain-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,0.1); transform: translateY(-3px); }

/* Unified icon slot — swap emoji for a 48×48px illustration when ready */
.card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px; flex-shrink: 0;
  font-size: 22px; font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}
.pain-title { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 8px; line-height: 1.35; }
.pain-desc { font-size: 13px; color: var(--body); line-height: 1.65; }
@media(max-width: 768px) { .pain-cards { grid-template-columns: 1fr; } }

/* ─── Showcase / services section ───────────────────────────────────────── */
.showcase-section { padding: 100px 40px; background: var(--bg); }
.showcase-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 100px;
}
.showcase-block:last-child { margin-bottom: 0; }
.showcase-block.flip .showcase-visual { order: -1; }

.showcase-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.showcase-h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--heading); margin-bottom: 16px;
}
.showcase-p { font-size: 14px; color: var(--body); line-height: 1.75; margin-bottom: 24px; }
.showcase-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.sf { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--body); }
.sf-check {
  width: 20px; height: 20px; border-radius: 6px;
  background: rgba(39,198,245,0.1); border: 1px solid rgba(39,198,245,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 10px; color: var(--accent);
}

.showcase-visual { display: flex; justify-content: center; position: relative; }

/* Mockup — browser frame */
/* Showcase videos — borderless */
.showcase-video--phone {
  width: 280px;
  height: 560px;
  object-fit: cover;
  display: block;
}
.showcase-video--laptop {
  width: 130%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  display: block;
}
@media(max-width: 767px) {
  .showcase-video--phone {
    width: 200px;
    height: 400px;
    display: block;
    margin: 0 auto;
  }
  .showcase-video--laptop {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media(max-width: 768px) {
  .showcase-block { grid-template-columns: 1fr; gap: 40px; }
  .showcase-block.flip .showcase-visual { order: 0; }
}

/* ─── Who we serve ──────────────────────────────────────────────────────── */
.serve-section { padding: 100px 40px; background: var(--bg2); }
.serve-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.serve-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 26px;
  box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s;
}
.serve-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,0.1); transform: translateY(-4px); }
.serve-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(39,198,245,0.15), var(--shadow); }
.serve-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px; font-weight: 800; color: var(--heading); margin-bottom: 10px;
}
.serve-desc { font-size: 13px; color: var(--body); line-height: 1.68; margin-bottom: 18px; }
.serve-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.serve-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--body); }
.serve-check {
  width: 18px; height: 18px; border-radius: 5px;
  background: rgba(39,198,245,0.1); border: 1px solid rgba(39,198,245,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 9px; color: var(--accent);
}
.serve-cta {
  display: block; text-align: center;
  font-size: 13px; font-weight: 700; color: var(--heading);
  text-decoration: none; padding: 10px;
  border-radius: 10px; border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.serve-cta:hover { background: rgba(15,23,42,0.04); border-color: var(--heading); }
@media(max-width: 768px) { .serve-grid { grid-template-columns: 1fr; } }

/* ─── Results ───────────────────────────────────────────────────────────── */
.results-section { padding: 100px 40px; background: var(--bg); }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  margin-bottom: 48px; box-shadow: var(--shadow);
}
.stat { background: var(--card); padding: 32px 24px; text-align: center; }
.stat-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 6px; color: var(--accent);
}
.stat-n.w { color: var(--heading); }
.stat-l { font-size: 12px; color: var(--muted); font-weight: 500; }

.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; box-shadow: var(--shadow);
}
.review-stars { color: #F59E0B; font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 13px; color: var(--body); line-height: 1.72; margin-bottom: 14px; font-style: italic; }
.review-name { font-size: 13px; font-weight: 700; color: var(--heading); }
.review-biz { font-size: 11px; color: var(--muted); margin-top: 2px; }

@media(max-width: 900px) { .stats-row, .reviews { grid-template-columns: 1fr 1fr; } }
@media(max-width: 560px) { .stats-row, .reviews { grid-template-columns: 1fr; } }

/* ─── CTA section ───────────────────────────────────────────────────────── */
.cta-section {
  padding: 120px 40px;
  background: var(--heading);
}
.cta-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.cta-section .s-label { color: var(--accent); }
.cta-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.035em; line-height: 1.05;
  color: #fff; margin-bottom: 20px;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.72; margin-bottom: 40px; }
.cta-section .btn-primary { background: #fff; color: var(--heading); }
.cta-section .btn-primary:hover { background: rgba(255,255,255,0.9); }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.32); margin-top: 16px; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 40px 32px; }
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 48px;
}
.footer-logo-slot { margin-bottom: 16px; }
.footer-about { font-size: 12px; color: var(--muted); line-height: 1.7; max-width: 220px; }
.f-col-title { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-link { font-size: 13px; color: var(--body); text-decoration: none; transition: color .2s; }
.f-link:hover { color: var(--heading); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.f-copy { font-size: 11px; color: var(--muted); }
@media(max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }

/* ─── Technology Partners ───────────────────────────────────────────────── */
.partners-section {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.partners-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.partners-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(39,198,245,0.08);
  border: 1px solid rgba(39,198,245,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.partners-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 16px;
}
.partners-sub {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  max-width: 400px;
}

/* Logo grid — 3 cols, 2 rows + Shopify badge spanning below */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
  align-items: center;
  justify-items: center;
}

/* Individual logo node */
.partner-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}

/* Shopify badge spans all 3 columns, centred on all screen sizes */
.partner-node--shopify {
  grid-column: 1 / -1;
  justify-self: center;
}

/* Logo images — no bg, no border */
.partner-logo {
  width: 72px; height: 72px;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 2px 6px rgba(15,23,42,0.10));
}
.partner-logo--rounded {
  border-radius: 18px;
}
.partner-logo--sq {
  border-radius: 16px;
}
.partner-node:hover .partner-logo {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 8px 18px rgba(15,23,42,0.18));
}

/* Shopify Partner badge */
.shopify-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #d4edaa;
  border-radius: 16px;
  padding: 12px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.partner-node--shopify:hover .shopify-badge {
  border-color: #96bf48;
  box-shadow: 0 8px 28px rgba(150,191,72,0.18);
}
.shopify-logo {
  width: 44px; height: 44px;
  object-fit: contain;
}
.shopify-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shopify-eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #7ab52e;
}
.shopify-partner {
  font-size: 17px; font-weight: 700;
  color: #111;
  line-height: 1;
}

/* Hover labels */
.partner-label {
  font-size: 11px;
  color: #bbb;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.partner-node:hover .partner-label {
  opacity: 1;
}

@media(max-width: 900px) {
  .partners-inner { grid-template-columns: 1fr; gap: 40px; }
  .partners-sub { max-width: 100%; }
}
@media(max-width: 480px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 12px; }
  .partner-logo { width: 56px; height: 56px; }
}

/* ─── Mobile padding fix ────────────────────────────────────────────────── */
@media(max-width: 767px) {
  .hero               { padding: 100px 20px 72px; }
  .pain-section       { padding: 72px 20px; }
  .showcase-section   { padding: 72px 20px; }
  .serve-section      { padding: 72px 20px; }
  .partners-section   { padding: 72px 20px; }
  .results-section    { padding: 72px 20px; }
  .container          { padding-left: 0; padding-right: 0; }
}

/* ─── Booking modal ─────────────────────────────────────────────────────── */
.booking-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
}
.booking-modal[hidden] { display: none; }
.booking-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.booking-modal-box {
  position: relative; z-index: 1;
  background: var(--card);
  border-radius: 20px;
  width: min(680px, 95vw);
  height: min(860px, 94vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 32px 80px rgba(15,23,42,0.22);
  display: flex; flex-direction: column;
}
.booking-modal-box iframe {
  flex: 1; width: 100%; min-height: 800px; border: none;
}
.booking-modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 50%; width: 32px; height: 32px;
  font-size: 18px; line-height: 1; cursor: pointer;
  color: var(--heading); display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.booking-modal-close:hover { background: var(--border); }

/* Make booking buttons look identical to their anchor counterparts */
button.nav-cta, button.nav-drawer-cta,
button.serve-cta, button.btn-primary,
button.btn-primary--lg {
  cursor: pointer;
  font-family: inherit;
}

/* ─── Pain card icons ───────────────────────────────────────────────────── */
.pain-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(210,53,53,0.08); border: 1px solid rgba(210,53,53,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: #D93535; }

/* ─── Niche grid ────────────────────────────────────────────────────────── */
.niche-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 2.5rem 0 3rem; }
.niche-item { display: flex; align-items: center; gap: 7px; background: #f4f4f0; border: 1px solid #e0ddd6; border-radius: 999px; padding: 9px 18px; font-size: 0.9rem; font-family: 'Outfit', sans-serif; color: #1a1a2e; font-weight: 500; }
.niche-item svg { flex-shrink: 0; color: #0BABDB; }

/* ─── Single serve card ─────────────────────────────────────────────────── */
.serve-card-single { background: #fff; border: 1.5px solid #e0ddd6; border-radius: 20px; padding: 2.5rem; max-width: 780px; margin: 0 auto; text-align: left; }
.serve-list--two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 1.5rem 0 2rem; }

/* ─── How It Works ──────────────────────────────────────────────────────── */
.hiw-section { padding: 100px 20px; }
.hiw-steps { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; }
.hiw-step { display: flex; gap: 16px; align-items: flex-start; }
.hiw-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 40px; }
.hiw-dot { width: 40px; height: 40px; border-radius: 50%; background: #1a1a2e; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hiw-dot span { font-size: 14px; font-weight: 600; color: #fff; font-family: 'Outfit', sans-serif; }
.hiw-connector { width: 2px; height: 40px; background: #e0ddd6; margin: 6px 0; }
.hiw-body { flex: 1; padding-bottom: 32px; }
.hiw-day { font-size: 11px; font-weight: 600; color: #0BABDB; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 5px; font-family: 'Outfit', sans-serif; }
.hiw-title { font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; font-family: 'Bricolage Grotesque', sans-serif; }
.hiw-desc { font-size: 0.9rem; color: #5f5e5a; line-height: 1.65; font-family: 'Outfit', sans-serif; }
.hiw-tag { display: inline-block; font-size: 11px; font-weight: 600; background: #E1F5EE; color: #085041; border-radius: 999px; padding: 3px 12px; margin-top: 8px; font-family: 'Outfit', sans-serif; }

/* ─── Lead Journey Stepper ──────────────────────────────────────────────── */
.journey-section { padding: 100px 20px; }
.journey-stepper { max-width: 560px; margin: 0 auto; }
.stp-progress { display: flex; gap: 4px; margin-bottom: 1rem; }
.stp-pip { flex: 1; height: 3px; border-radius: 999px; background: #e0ddd6; transition: background 0.3s; }
.stp-pip--done { background: #5DCAA5; } .stp-pip--bad { background: #E24B4A; } .stp-pip--good { background: #1D9E75; }
.stp-counter { font-size: 12px; color: #888780; font-family: 'Outfit', sans-serif; margin-bottom: 1rem; }
.stp-card { border-radius: 12px; border: 0.5px solid #e0ddd6; padding: 1.5rem; min-height: 170px; background: #fff; transition: background 0.2s, border-color 0.2s; }
.stp-card--bad { background: #FCEBEB; border-color: #F09595; } .stp-card--good { background: #E1F5EE; border-color: #5DCAA5; }
.stp-type { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; font-family: 'Outfit', sans-serif; }
.stp-title { font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: #1a1a2e; font-family: 'Bricolage Grotesque', sans-serif; }
.stp-sub { font-size: 0.9rem; line-height: 1.65; color: #5f5e5a; font-family: 'Outfit', sans-serif; }
.stp-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; margin-top: 12px; font-family: 'Outfit', sans-serif; }
.stp-nav { display: flex; align-items: center; gap: 10px; margin-top: 1rem; }
.stp-btn { flex: 1; padding: 12px; font-size: 0.9rem; font-weight: 600; border-radius: 8px; border: 1.5px solid #e0ddd6; cursor: pointer; background: transparent; color: #1a1a2e; font-family: 'Outfit', sans-serif; transition: all 0.15s; }
.stp-btn:hover { background: #f4f4f0; } .stp-btn:disabled { opacity: 0.3; cursor: default; }
.stp-btn--next { background: #1a1a2e; border-color: #1a1a2e; color: #fff; } .stp-btn--next:hover { background: #2d2d4a; }
.stp-btn--good { background: #1D9E75; border-color: #1D9E75; color: #fff; } .stp-btn--good:hover { background: #0F6E56; }
.stp-step-label { font-size: 11px; color: #888780; text-align: center; min-width: 52px; font-family: 'Outfit', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.stp-cta { display: none; margin-top: 1.5rem; padding: 1.5rem; background: #E1F5EE; border: 0.5px solid #5DCAA5; border-radius: 12px; text-align: center; }
.stp-cta-title { font-size: 1.05rem; font-weight: 700; color: #085041; margin-bottom: 6px; font-family: 'Bricolage Grotesque', sans-serif; }
.stp-cta-sub { font-size: 0.875rem; color: #0F6E56; margin-bottom: 1rem; line-height: 1.55; font-family: 'Outfit', sans-serif; }
.stp-cta-btn { display: block; width: 100%; background: #1D9E75; color: #fff; font-size: 0.9rem; font-weight: 700; padding: 12px 24px; border-radius: 8px; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; transition: background 0.15s; }
.stp-cta-btn:hover { background: #0F6E56; }

/* ─── Pricing ───────────────────────────────────────────────────────────── */
.pricing-section { padding: 100px 20px; }
.pricing-wrap { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.pricing-card { background: #fff; border: 0.5px solid #e0ddd6; border-radius: 20px; overflow: hidden; }
.pricing-card-top { padding: 1.75rem; border-bottom: 0.5px solid #e0ddd6; }
.pricing-badge { display: inline-block; font-size: 11px; font-weight: 600; background: #E1F5EE; color: #085041; border-radius: 999px; padding: 3px 12px; margin-bottom: 14px; font-family: 'Outfit', sans-serif; }
.pricing-name { font-size: 1.2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; font-family: 'Bricolage Grotesque', sans-serif; }
.pricing-desc { font-size: 0.9rem; color: #5f5e5a; line-height: 1.6; margin-bottom: 1.25rem; font-family: 'Outfit', sans-serif; }
.pricing-price-row { display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.pricing-amount-wrap { display: flex; align-items: baseline; gap: 4px; }
.pricing-amount { font-size: 42px; font-weight: 700; color: #1a1a2e; font-family: 'Bricolage Grotesque', sans-serif; line-height: 1; }
.pricing-period { font-size: 15px; color: #5f5e5a; font-family: 'Outfit', sans-serif; }
.pricing-setup { font-size: 13px; color: #5f5e5a; padding: 5px 12px; background: #f4f4f0; border-radius: 6px; border: 0.5px solid #e0ddd6; font-family: 'Outfit', sans-serif; }
.pricing-guarantee { font-size: 12px; color: #888780; display: flex; align-items: center; gap: 6px; font-family: 'Outfit', sans-serif; }
.pricing-list { padding: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pricing-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #1a1a2e; line-height: 1.4; font-family: 'Outfit', sans-serif; }
.pricing-check { width: 18px; height: 18px; border-radius: 50%; background: #E1F5EE; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pricing-cta-row { padding: 1.25rem 1.5rem; border-top: 0.5px solid #e0ddd6; display: flex; flex-direction: column; gap: 12px; }
.pricing-btn { width: 100%; padding: 14px; font-size: 0.95rem; font-weight: 700; border-radius: 10px; border: none; cursor: pointer; background: #1a1a2e; color: #fff; font-family: 'Outfit', sans-serif; transition: background 0.15s; }
.pricing-btn:hover { background: #2d2d4a; }
.pricing-reassure { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.pricing-re-item { font-size: 12px; color: #888780; display: flex; align-items: center; gap: 5px; font-family: 'Outfit', sans-serif; }
.pricing-roi { background: #f4f4f0; border-radius: 14px; padding: 1.25rem; border: 0.5px solid #e0ddd6; }
.pricing-roi-title { font-size: 13px; font-weight: 600; color: #1a1a2e; margin-bottom: 12px; font-family: 'Outfit', sans-serif; }
.pricing-roi-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 0.5px solid #e0ddd6; gap: 12px; }
.pricing-roi-row--last { border-bottom: none; }
.pricing-roi-label { font-size: 13px; color: #5f5e5a; font-family: 'Outfit', sans-serif; flex: 1; }
.pricing-roi-val { font-size: 13px; font-weight: 600; font-family: 'Outfit', sans-serif; white-space: nowrap; color: #1a1a2e; }
.pricing-roi-val--bad { color: #A32D2D; } .pricing-roi-val--good { color: #085041; }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq-section { padding: 100px 20px; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 0.5px solid #e0ddd6; }
.faq-item:first-child { border-top: 0.5px solid #e0ddd6; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 1rem; font-weight: 600; color: #1a1a2e; background: transparent; border: none; cursor: pointer; text-align: left; gap: 16px; font-family: 'Outfit', sans-serif; }
.faq-icon { flex-shrink: 0; font-size: 22px; color: #888780; transition: transform 0.2s; line-height: 1; font-weight: 400; }
.faq-a { font-size: 0.9rem; color: #5f5e5a; line-height: 1.75; padding: 0 0 16px; font-family: 'Outfit', sans-serif; }

/* ─── Sticky mobile CTA ─────────────────────────────────────────────────── */
.sticky-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: #1a1a2e; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; transform: translateY(100%); transition: transform 0.3s ease; }
.sticky-cta-bar--visible { transform: translateY(0); }
.sticky-cta-text { font-size: 14px; color: rgba(255,255,255,0.85); font-family: 'Outfit', sans-serif; }
.sticky-cta-btn { background: #0BABDB; color: #fff; font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 6px; border: none; cursor: pointer; white-space: nowrap; font-family: 'Outfit', sans-serif; flex-shrink: 0; }
.sticky-cta-btn:hover { background: #0991bb; }
@media (min-width: 768px) { .sticky-cta-bar { display: none; } }
@media (max-width: 767px) { footer { padding-bottom: 72px; } }

/* ─── Responsive overrides ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .serve-list--two-col { grid-template-columns: 1fr; }
  .niche-item { font-size: 0.85rem; padding: 8px 14px; }
  .serve-card-single { padding: 1.5rem; }
  .pricing-list { grid-template-columns: 1fr; }
  .pricing-price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hiw-section { padding: 72px 20px; }
  .journey-section { padding: 72px 20px; }
  .pricing-section { padding: 72px 20px; }
  .faq-section { padding: 72px 20px; }
  .stp-card { padding: 1.25rem; }
  .stp-title { font-size: 1rem; }
}

/* ─── Phosphor icon overrides ───────────────────────────────────────────── */
.pain-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(210,53,53,0.08);
  border: 1px solid rgba(210,53,53,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: #D93535; font-size: 26px;
}
.niche-item i { flex-shrink: 0; color: #0BABDB; font-size: 15px; }
.hiw-dot { width: 44px; height: 44px; border-radius: 50%; background: #1a1a2e; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; color: #fff; }
.faq-q-inner { display: flex; align-items: center; gap: 10px; flex: 1; }
.faq-q-inner i { font-size: 18px; color: #0BABDB; flex-shrink: 0; }
.f-copy-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; opacity: 0.7; transition: opacity .15s; }
.f-copy-link:hover { opacity: 1; }

/* ─── Hero eyebrow + hook ───────────────────────────────────────────────── */
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #0BABDB;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
}
.hero-hook {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0 auto 16px;
  max-width: 640px;
}
@media (max-width: 600px) {
  .hero-eyebrow { font-size: 11px; }
  .hero-hook { font-size: 1.05rem; }
}
