/* ============================================================
   DentSurge — Cold-Email Landing
   Mobile-first. One accent color for ALL CTAs.
   ============================================================ */

:root {
  /* Brand / trust */
  --primary:        #0C5C73;   /* deep teal — trust, calm, medical */
  --primary-2:      #12849E;   /* lighter teal for gradients */
  --primary-ink:    #073f50;

  /* The single CTA accent — used for EVERY action button */
  --accent:         #FF6B35;   /* energetic "surge" orange */
  --accent-2:       #ff854f;
  --accent-ink:     #c64a18;

  /* Neutrals */
  --ink:            #0F2730;   /* primary text */
  --muted:          #5A7079;   /* secondary text */
  --bg:             #FFFFFF;
  --bg-soft:        #F2F8FA;   /* section alt background */
  --bg-deep:        #08323F;   /* dark sections / footer */
  --border:         #E1ECF0;
  --card:           #FFFFFF;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(8,50,63,.06), 0 2px 8px rgba(8,50,63,.05);
  --shadow-md: 0 6px 18px rgba(8,50,63,.10);
  --shadow-lg: 0 18px 50px rgba(8,50,63,.16);
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Layout */
  --maxw: 1140px;
  --gutter: clamp(18px, 5vw, 40px);

  /* Type scale (fluid) */
  --h1: clamp(2rem, 1.3rem + 3.4vw, 3.5rem);
  --h2: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
  --h3: clamp(1.15rem, 1rem + .6vw, 1.4rem);
  --lead: clamp(1.05rem, 1rem + .35vw, 1.3rem);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 700; }
p { color: var(--muted); }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 8vw, 96px); }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section__head p { margin-top: 12px; font-size: var(--lead); }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary-2); margin-bottom: 10px;
}
.center { text-align: center; }

/* ---------- Buttons (single accent) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff; font-weight: 700; font-size: 1.02rem;
  padding: 15px 26px; border: none; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255,107,53,.32); white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,107,53,.42); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 18px 34px; font-size: 1.12rem; }
.btn--sm { padding: 11px 18px; font-size: .95rem; }
.btn--ghost {
  background: transparent; color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--border);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--primary-2); transform: translateY(-2px); }
.btn__arrow { transition: transform .15s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Placeholder marker (visible in dev) ---------- */
.ph {
  outline: 2px dashed #f0a; outline-offset: 3px;
  position: relative;
}
.ph::after {
  content: "PLACEHOLDER"; position: absolute; top: -10px; left: 8px;
  background: #f0a; color: #fff; font-size: 9px; font-weight: 700;
  letter-spacing: .08em; padding: 2px 6px; border-radius: 4px; z-index: 5;
}
body.live .ph { outline: none; }
body.live .ph::after { display: none; }

/* ============================================================
   HEADER (sticky)
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand b { color: var(--ink); }
.brand span { color: var(--primary); }
.header__actions { display: flex; align-items: center; gap: 8px; }
.header__phone {
  display: none; align-items: center; gap: 8px; font-weight: 700; color: var(--primary);
  padding: 10px 14px; border-radius: 999px;
}
.header__phone:hover { background: var(--bg-soft); }
.header__phone svg { width: 18px; height: 18px; }

@media (min-width: 720px) {
  .header__phone { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(18,132,158,.18), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(12,92,115,.10), transparent 55%);
  padding-block: clamp(36px, 6vw, 72px);
  overflow: hidden;
}
.hero__grid {
  display: grid; gap: clamp(28px, 5vw, 56px); align-items: center;
  grid-template-columns: 1fr;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  color: var(--primary); font-weight: 700; font-size: .85rem;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: var(--h1); margin-bottom: 18px; }
.hero h1 .hl { color: var(--primary); }
.hero__sub { font-size: var(--lead); max-width: 38ch; margin-bottom: 26px; }
.hero__cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero__micro { font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__micro svg { width: 16px; height: 16px; color: #1aa06a; flex: none; }

/* hero visual */
.hero__visual { position: relative; }
.dashcard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 18px; position: relative;
}
.dashcard__bar { display: flex; gap: 6px; margin-bottom: 14px; }
.dashcard__bar i { width: 11px; height: 11px; border-radius: 50%; background: #dfe9ec; }
.float-stat {
  position: absolute; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-md); border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; font-weight: 700;
}
.float-stat small { display: block; color: var(--muted); font-weight: 600; font-size: .72rem; }
.float-stat .big { font-size: 1.15rem; color: var(--ink); }
.float-stat .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color:#fff; flex:none; }
.float-stat--a { right: -10px; top: 24px; }
.float-stat--b { left: -14px; bottom: 26px; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { background: var(--bg-deep); color: #cfe3e9; }
.trustbar__inner { padding-block: 26px; }
.trustbar__line { text-align: center; font-weight: 600; color: #aacad3; margin-bottom: 18px; font-size: .95rem; letter-spacing: .02em; }
.stats { display: grid; grid-template-columns: 1fr; gap: 16px; text-align: center; }
.stat .num { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat .num span { color: var(--accent-2); }
.stat .lbl { color: #9fc1cb; font-weight: 600; font-size: .92rem; }
.stat + .stat { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; }
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat + .stat { border-top: none; padding-top: 0; border-left: 1px solid rgba(255,255,255,.10); }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem__lead { max-width: 760px; margin: 0 auto; text-align: center; font-size: var(--lead); color: var(--ink); font-weight: 600; }
.painlist { display: grid; gap: 16px; margin-top: clamp(28px,4vw,44px); grid-template-columns: 1fr; }
.pain {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.pain .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: #fff1eb; color: var(--accent-ink); }
.pain h3 { font-size: 1.05rem; margin-bottom: 2px; }
.pain p { font-size: .95rem; }
@media (min-width: 820px) { .painlist { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   SOLUTION / SERVICES
   ============================================================ */
.cards { display: grid; gap: 18px; grid-template-columns: 1fr; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe2e8; }
.card .ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--primary-2), var(--primary)); color: #fff; margin-bottom: 16px;
}
.card h3 { margin-bottom: 6px; }
.card p { font-size: .96rem; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm);
}
.step__n {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 4px; }
.step p { font-size: .93rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4,1fr); } }

/* ============================================================
   RESULTS / CASE STUDY + TESTIMONIALS
   ============================================================ */
.case {
  display: grid; gap: 24px; align-items: center; grid-template-columns: minmax(0, 1fr);
  background: linear-gradient(165deg, #0c5c73, #08323f); color: #fff;
  border-radius: var(--radius-lg); padding: clamp(20px, 4vw, 44px); box-shadow: var(--shadow-lg);
}
.case__body, .case__img { min-width: 0; }
.case h3 { color: #fff; font-size: clamp(1.3rem,1rem+1.5vw,1.9rem); margin-bottom: 10px; }
.case p { color: #bcd7de; }
.case__metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 20px; }
.case__metric { min-width: 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 14px 10px; text-align: center; }
.case__metric .v { white-space: nowrap; }
.case__metric .v { font-size: clamp(1.4rem,1rem+1.6vw,2rem); font-weight: 800; color: var(--accent-2); }
.case__metric .k { font-size: .8rem; color: #a9cad2; font-weight: 600; }
.case__img { background: rgba(255,255,255,.06); border:1px dashed rgba(255,255,255,.25); border-radius: 16px; min-height: 220px; display: grid; place-items: center; color: #9fc1cb; text-align:center; padding: 20px; }
@media (min-width: 900px) { .case { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); } }
@media (max-width: 560px) {
  .case__metrics { gap: 8px; }
  .case__metric { padding: 12px 5px; }
  .case__metric .v { font-size: .92rem; }
  .case__metric .k { font-size: .66rem; }
}

.tstack { display: grid; gap: 18px; margin-top: 26px; grid-template-columns: 1fr; }
.tcard { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.tcard__stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 10px; }
.tcard p { color: var(--ink); font-size: 1rem; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.tcard__ava { width: 46px; height: 46px; border-radius: 50%; background: #dfeaed; flex:none; display:grid; place-items:center; color: var(--primary); font-weight:800; overflow:hidden; }
.tcard__ava img { width:100%; height:100%; object-fit: cover; }
.tcard__name { font-weight: 700; font-size: .95rem; }
.tcard__role { color: var(--muted); font-size: .82rem; }
@media (min-width: 820px) { .tstack { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
.tier {
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  position: relative;
}
.tier--featured {
  border: 2px solid var(--primary); box-shadow: var(--shadow-lg); transform: none;
}
.tier__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color:#fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.tier h3 { font-size: 1.25rem; }
.tier__price { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 8px 0 2px; }
.tier__price small { font-size: .9rem; color: var(--muted); font-weight: 600; }
.tier__from { font-size: .8rem; color: var(--muted); margin-bottom: 18px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink); }
.tier li svg { width: 18px; height: 18px; color: #1aa06a; flex: none; margin-top: 3px; }
.tier .btn { margin-top: auto; width: 100%; }
.pricing__note { text-align: center; margin-top: 20px; color: var(--muted); font-weight: 600; }
@media (min-width: 900px) {
  .pricing { grid-template-columns: repeat(3,1fr); }
  .tier--featured { transform: scale(1.04); }
}

/* ============================================================
   WHY US
   ============================================================ */
.why { display: grid; gap: 18px; grid-template-columns: 1fr; }
.whyitem { display:flex; gap:14px; align-items:flex-start; background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.whyitem .ic { width: 46px; height:46px; border-radius: 12px; flex:none; display:grid; place-items:center; background:#e9f4f7; color: var(--primary); }
.whyitem h3 { font-size: 1.05rem; margin-bottom: 3px; }
.whyitem p { font-size: .93rem; }
@media (min-width: 720px) { .why { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; }
.faqitem { border:1px solid var(--border); border-radius: var(--radius-sm); background:#fff; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faqitem__q {
  width:100%; text-align:left; background:none; border:none; padding: 18px 20px;
  display:flex; justify-content:space-between; align-items:center; gap: 16px;
  font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.faqitem__q .pm { flex:none; width: 22px; height:22px; position: relative; transition: transform .2s ease; color: var(--primary); }
.faqitem[aria-expanded="true"] .pm { transform: rotate(45deg); }
.faqitem__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faqitem__a p { padding: 0 20px 18px; font-size: .96rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta { background: linear-gradient(160deg, var(--primary-2), var(--primary-ink)); color:#fff; text-align:center; }
.finalcta h2 { color:#fff; max-width: 18ch; margin-inline:auto; }
.finalcta p { color:#bcdbe3; margin-top: 14px; font-size: var(--lead); }
.finalcta .btn { margin-top: 26px; }
.finalcta__contact { margin-top: 22px; display:flex; flex-wrap:wrap; gap: 10px 28px; justify-content:center; font-weight:700; }
.finalcta__contact a { color:#fff; display:inline-flex; align-items:center; gap:8px; }
.finalcta__contact a:hover { color: var(--accent-2); }
.finalcta__contact svg { width:18px; height:18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-deep); color: #8fb2bc; padding-block: 30px; }
.footer__inner { display:flex; flex-wrap:wrap; gap: 14px 24px; align-items:center; justify-content:space-between; }
.footer a:hover { color:#fff; }
.footer__links { display:flex; gap: 18px; flex-wrap:wrap; font-size:.9rem; }
.footer__legal { font-size:.85rem; }

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(8,50,63,.10);
}
.mbar .btn { flex: 1; }
.mbar__call {
  flex: none; width: 52px; border-radius: 999px; display:grid; place-items:center;
  color: var(--primary); box-shadow: inset 0 0 0 2px var(--border); background:#fff;
}
.mbar__call svg { width: 22px; height: 22px; }
@media (min-width: 720px) { .mbar { display: none; } }
body { padding-bottom: 76px; }
@media (min-width: 720px) { body { padding-bottom: 0; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .faqitem__a { transition: none; }
  .scarcity .dot { animation: none; }
}

/* ============================================================
   CONVERSION BOOSTERS
   ============================================================ */

/* Hero social proof line */
.hero__proof { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: .88rem; color: var(--muted); font-weight: 600; flex-wrap: wrap; }
.hero__proof .stars { color: #f5a623; letter-spacing: 1px; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; margin-left: -9px;
  display: grid; place-items: center; font-size: .7rem; font-weight: 800; color: #fff;
  background: linear-gradient(160deg, var(--primary-2), var(--primary)); box-shadow: var(--shadow-sm);
}
.hero__avatars span:first-child { margin-left: 0; background: linear-gradient(160deg, var(--accent-2), var(--accent)); }

/* Scarcity / exclusivity strip */
.scarcity { background: #fff4ef; border-block: 1px solid #ffd9c9; }
.scarcity__inner {
  display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
  padding: 14px var(--gutter); font-weight: 700; color: var(--accent-ink); font-size: 1rem; flex-wrap: wrap;
}
.scarcity .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex: none;
  box-shadow: 0 0 0 0 rgba(255,107,53,.6); animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,53,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

/* "What you get in your free audit" */
.audit {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 24px; max-width: 580px; margin: 26px auto 0; text-align: left;
}
.audit h3 { color: #fff; font-size: 1.08rem; margin-bottom: 16px; text-align: center; }
.audit ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.audit li { display: flex; gap: 12px; align-items: flex-start; color: #eaf4f7; font-weight: 600; font-size: 1rem; }
.audit li svg { width: 22px; height: 22px; flex: none; color: var(--accent-2); margin-top: 1px; }
.audit__foot { text-align: center; color: #bcdbe3; font-size: .9rem; margin-top: 16px; font-weight: 600; }

/* Guarantee / risk-reversal trio */
.guarantee { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: center; margin-top: 22px; }
.guarantee span { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: .95rem; }
.guarantee svg { width: 20px; height: 20px; color: #1aa06a; flex: none; }

/* Mobile hero float stats — keep fully on-screen */
@media (max-width: 560px) {
  .float-stat--a { right: 6px; top: 12px; padding: 9px 12px; }
  .float-stat--b { left: 6px; bottom: 12px; padding: 9px 12px; }
  .float-stat .big { font-size: 1rem; }
  .float-stat small { font-size: .66rem; }
  .float-stat .ic { width: 30px; height: 30px; }
  .hero__visual { margin-top: 8px; }

  /* Primary CTAs full-width on mobile — no overflow, bigger tap target, higher conversion */
  .btn { white-space: normal; }
  .btn--lg { padding: 16px 22px; font-size: 1.05rem; }
  .hero__cta { align-self: stretch; }
  .hero__cta .btn--lg,
  .finalcta .btn--lg,
  .results .btn--lg,
  #results .btn--lg { width: 100%; }
}

/* ============================================================
   HERO — "dentist near me" local-pack mockup (credibility)
   ============================================================ */
.gmock { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.gmock__bar { display: flex; align-items: center; gap: 10px; padding: 13px 15px; border-bottom: 1px solid var(--border); }
.gmock__pill { flex: 1; display: flex; align-items: center; gap: 8px; background: var(--bg-soft); border-radius: 999px; padding: 9px 14px; font-size: .9rem; color: var(--ink); font-weight: 600; }
.gmock__pill svg { width: 16px; height: 16px; color: var(--muted); flex: none; }
.gmock__map { height: 110px; position: relative; overflow: hidden;
  background: radial-gradient(circle at 32% 42%, #d8efe1, transparent 42%), linear-gradient(135deg, #e9f3ee, #e3edf5);
  border-bottom: 1px solid var(--border); }
.gmock__map i { position: absolute; background: #fff; opacity: .85; }
.gmock__map .r1 { left: 0; right: 0; top: 54%; height: 7px; transform: rotate(-8deg); }
.gmock__map .r2 { top: 0; bottom: 0; left: 60%; width: 7px; transform: rotate(6deg); }
.gmock__map .r3 { left: 0; right: 0; top: 24%; height: 5px; transform: rotate(4deg); }
.gmock__pin { position: absolute; left: 44%; top: 30%; width: 26px; height: 26px; color: var(--accent); filter: drop-shadow(0 4px 6px rgba(0,0,0,.18)); }
.gmock__list { padding: 8px; display: grid; gap: 6px; }
.gmock__row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 12px; }
.gmock__row--top { background: #eef8f1; box-shadow: inset 0 0 0 1.5px #c8ebd5; }
.gmock__row--muted { opacity: .5; }
.gmock__logo { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .72rem; background: linear-gradient(160deg, var(--primary-2), var(--primary)); }
.gmock__row--muted .gmock__logo { background: #c2cfd4; }
.gmock__meta { flex: 1; min-width: 0; }
.gmock__name { font-weight: 700; font-size: .86rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gmock__sub { font-size: .72rem; color: var(--muted); display: flex; gap: 6px; align-items: center; }
.gmock__stars { color: #f5a623; font-size: .74rem; letter-spacing: .5px; }
.gmock__rank { margin-left: auto; background: var(--accent); color: #fff; font-size: .64rem; font-weight: 800; letter-spacing: .02em; padding: 4px 9px; border-radius: 999px; white-space: nowrap; flex: none; }

/* Case study: real proof image + verify link */
.case__img img { width: 100%; height: auto; border-radius: 12px; display: block; }
.case__cap { font-size: .75rem; color: #a9cad2; margin-top: 8px; text-align: center; }

/* Step timeframe + pricing detail */
.step__when { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--primary-2); background: #e9f4f7; padding: 3px 9px; border-radius: 999px; margin-bottom: 10px; }
.tier__best { font-size: .82rem; color: var(--muted); font-weight: 600; margin: 2px 0 12px; min-height: 2.4em; }
.tier li small { color: var(--muted); font-weight: 600; }
.case__verify { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: #bfe3ec; font-weight: 700; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.35); }
.case__verify:hover { color: #fff; border-color: #fff; }
.case__verify svg { width: 15px; height: 15px; }

/* Reviews (Google-review style) */
.reviews { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 28px; }
.review { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); text-align: left; }
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review__ava { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 800; background: linear-gradient(160deg, var(--primary-2), var(--primary)); }
.review__name { font-weight: 700; font-size: .95rem; }
.review__meta { font-size: .78rem; color: var(--muted); }
.review__g { margin-left: auto; width: 22px; height: 22px; flex: none; }
.review__stars { color: #f5a623; letter-spacing: 1px; margin-bottom: 8px; font-size: .95rem; }
.review p { color: var(--ink); font-size: 1rem; }
@media (min-width: 820px) { .reviews { grid-template-columns: repeat(2, 1fr); } }

/* Founder story */
.founder { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; grid-template-columns: 1fr; }
.founder__photo { position: relative; max-width: 360px; margin-inline: auto; width: 100%; }
.founder__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.founder__photo .ph-fallback { width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: linear-gradient(160deg, #12849E, #08323f); display: grid; place-items: center; color: #cfe3e9; font-weight: 700; }
.founder__badge { position: absolute; left: -12px; bottom: 20px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md); border-radius: 14px; padding: 11px 15px; font-weight: 800; font-size: .9rem; }
.founder__badge small { display: block; color: var(--muted); font-weight: 600; font-size: .72rem; }
.founder__body h2 { text-align: left; }
.founder__body p { margin-top: 14px; font-size: 1.02rem; }
.founder__sign { margin-top: 18px; font-weight: 800; color: var(--ink); }
.founder__sign small { display: block; color: var(--muted); font-weight: 600; }
@media (min-width: 860px) { .founder { grid-template-columns: .85fr 1.15fr; } }

/* ROI value callout (pricing) */
.roi {
  max-width: 760px; margin: 0 auto clamp(28px,4vw,40px); display: flex; gap: 14px; align-items: center;
  background: #fff6f1; border: 1px solid #ffd9c9; border-radius: var(--radius); padding: 18px 22px;
}
.roi svg { width: 30px; height: 30px; color: var(--accent); flex: none; }
.roi p { color: var(--ink); font-weight: 600; font-size: .98rem; margin: 0; }
.roi strong { color: var(--accent-ink); }
