/* ShelfConnect v2 - light, friendly, non-techie. Green #40BA49, real logo.
   Structure DNA from Viralnetix (pills, rhythm, cards) without its dark branding. */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F9F5;
  --ink: #121712;
  --muted: #5C665C;
  --border: rgba(18, 23, 18, 0.09);
  --border-strong: rgba(18, 23, 18, 0.16);
  --green: #40BA49;
  --green-dark: #2E9C38;
  --green-ink: #1E7A28;
  --green-tint: rgba(64, 186, 73, 0.08);
  --forest: #10240F;
  --radius: 18px;
  --shadow: 0 8px 30px rgba(18, 23, 18, 0.07);
  --shadow-green: 0 8px 24px rgba(64, 186, 73, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Be Vietnam Pro', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- Nav ---- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.btn {
  display: inline-block; background: var(--green); color: #fff;
  padding: 13px 26px; border-radius: 100px; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
  box-shadow: var(--shadow-green);
}
.btn:hover { transform: translateY(-2px); background: var(--green-dark); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); box-shadow: none; }
.btn.ghost:hover { border-color: var(--green); color: var(--green-ink); background: transparent; }
.btn.big { padding: 17px 34px; font-size: 16.5px; }
.nav-links .btn { padding: 10px 20px; font-size: 14px; }

/* ---- Pills ---- */
.pill {
  display: inline-block; padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--green-tint); color: var(--green-ink); border: 1px solid rgba(64, 186, 73, 0.32);
}

/* ---- Hero (light) ---- */
.hero {
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(64, 186, 73, 0.12), transparent 60%),
    radial-gradient(700px 380px at 5% 110%, rgba(64, 186, 73, 0.08), transparent 60%),
    var(--bg);
  padding: 96px 0 84px; text-align: center;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.06; letter-spacing: -0.03em; font-weight: 800; max-width: 880px; margin: 22px auto 0; }
.hero h1 .g { color: var(--green); }
.hero p.sub { max-width: 640px; margin: 24px auto 0; font-size: 18.5px; color: var(--muted); }
.hero .cta-row { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-anchor {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 34px;
  padding: 11px 22px; background: #fff; border: 1px solid var(--border);
  border-radius: 100px; font-size: 14px; color: var(--muted); box-shadow: var(--shadow);
}
.hero-anchor strong { color: var(--green-ink); font-weight: 700; }
.vn-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 13.5px; color: var(--muted);
}
.vn-badge a { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--green); }
.vn-badge a:hover { color: var(--green-ink); }

/* ---- Logo strip ---- */
.logo-strip { padding: 44px 0 54px; border-bottom: 1px solid var(--border); }
.logo-strip .label {
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
}
.logo-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; align-items: center; }
.logo-item {
  font-weight: 800; font-size: 17px; letter-spacing: -0.01em; color: #9AA39A;
  filter: grayscale(1); transition: color .2s; white-space: nowrap; padding: 6px 4px;
}
.logo-item span { font-weight: 400; font-size: 12px; letter-spacing: 0.06em; }
.logo-item:hover { color: var(--green); }

/* ---- Sections ---- */
section { padding: 96px 0; }
section.tight { padding: 68px 0; }
section.soft { background: var(--bg-soft); }
section.dark { background: var(--forest); color: #fff; }
.section-head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.8vw, 44px); line-height: 1.12; letter-spacing: -0.025em; font-weight: 800; margin-top: 18px; }
.section-head h2 .g { color: var(--green); }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 16px; }
section.dark .section-head p { color: rgba(255, 255, 255, 0.65); }

/* ---- Cards ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 15px; margin-top: 10px; }
.card .step-num {
  width: 44px; height: 44px; border-radius: 13px; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 18px;
  box-shadow: var(--shadow-green);
}
.card .x { font-size: 22px; margin-bottom: 12px; display: block; }

/* ---- Case study cards ---- */
.case-card { display: flex; flex-direction: column; }
.case-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.case-days {
  background: var(--green); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.case-card h3 { font-size: 24px; }
.case-meta { color: var(--muted); font-size: 14px; margin: 6px 0 22px; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.case-stat { background: var(--bg-soft); border-radius: 12px; padding: 16px 8px; text-align: center; }
.case-stat .num { font-size: 30px; font-weight: 800; color: var(--green); line-height: 1; }
.case-stat .lbl { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.35; }
.case-quote {
  margin-top: auto; background: var(--forest); color: #fff; font-style: italic;
  font-size: 14px; padding: 16px 18px; border-radius: 12px; line-height: 1.55;
}

/* ---- Chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 920px; margin: 0 auto; }
.chip {
  padding: 11px 20px; border-radius: 100px; background: #fff;
  border: 1px solid var(--border-strong); font-size: 14.5px; font-weight: 500;
}
.chips-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 26px; }

/* ---- Pilot section ---- */
.pilot-box {
  background: linear-gradient(135deg, rgba(64,186,73,.1), rgba(64,186,73,.04)), #fff;
  border: 1.5px solid rgba(64, 186, 73, 0.35); border-radius: 26px;
  padding: 56px 48px; text-align: center; max-width: 880px; margin: 0 auto;
}
.pilot-box h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.025em; font-weight: 800; margin-top: 16px; }
.pilot-box .sub { color: var(--muted); font-size: 16.5px; max-width: 560px; margin: 14px auto 0; }
.pilot-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0; }
.pilot-point { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 14px; }
.pilot-point .num { font-size: 26px; font-weight: 800; color: var(--green); }
.pilot-point .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }
.pilot-small { font-size: 13px; color: var(--muted); margin-top: 18px; }

/* ---- Pricing ---- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; position: relative; display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--green); box-shadow: 0 14px 40px rgba(64, 186, 73, 0.16); transform: translateY(-8px); }
.badge-rec {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: 10.5px; font-weight: 800;
  padding: 5px 14px; border-radius: 100px; letter-spacing: 0.1em; text-transform: uppercase;
}
.tier { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.price { font-size: 40px; font-weight: 800; color: var(--green); letter-spacing: -0.02em; line-height: 1; }
.period { font-size: 12.5px; color: var(--muted); margin: 6px 0 20px; }
.price-card ul { list-style: none; flex: 1; }
.price-card li { position: relative; padding-left: 20px; margin-bottom: 9px; font-size: 13.5px; line-height: 1.45; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.price-note { text-align: center; margin-top: 34px; font-size: 14px; color: var(--muted); }
.price-note strong { color: var(--green-ink); }

/* ---- Testimonials ---- */
.t-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.t-card .quote { font-size: 15px; line-height: 1.65; }
.t-card .who { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.t-card .who strong { color: var(--ink); display: block; font-size: 14.5px; }
.t-card .starline { color: #E8A33D; font-size: 14px; letter-spacing: 2px; }

/* ---- Team ---- */
.team-card { text-align: center; }
.team-card img { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid rgba(64, 186, 73, 0.4); }
.team-card h3 { font-size: 18px; }
.team-card .role { color: var(--green-ink); font-size: 14px; font-weight: 700; margin-top: 3px; }
.team-card .mail { color: var(--muted); font-size: 13.5px; margin-top: 8px; display: inline-block; }
.team-card .mail:hover { color: var(--green-ink); }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--green); font-size: 22px; font-weight: 800; flex: none; }
.faq details[open] summary::after { content: '–'; }
.faq .a { padding: 0 24px 20px; color: var(--muted); font-size: 14.5px; }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 50px); letter-spacing: -0.03em; font-weight: 800; line-height: 1.08; }
.cta-band h2 .g { color: var(--green); }
section.dark .cta-band-sub, .cta-band .sub { max-width: 540px; margin: 18px auto 32px; color: var(--muted); }
section.dark .cta-band .sub { color: rgba(255,255,255,.65); }

/* ---- Prose (case study long form, legal) ---- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 28px; letter-spacing: -0.02em; margin: 52px 0 16px; }
.prose h3 { font-size: 20px; margin: 34px 0 12px; }
.prose p, .prose li { color: rgba(18, 23, 18, 0.78); font-size: 16.5px; margin-bottom: 16px; }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose blockquote {
  border-left: 4px solid var(--green); background: var(--bg-soft); border-radius: 0 14px 14px 0;
  padding: 22px 26px; margin: 28px 0; font-size: 17px; font-style: italic;
}
.prose blockquote .attr { display: block; margin-top: 12px; font-style: normal; font-size: 14px; color: var(--muted); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin: 26px 0; background: #fff; border-radius: 14px; overflow: hidden; font-size: 15px; border: 1px solid var(--border); }
.prose th, .prose td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); }
.prose th { background: var(--forest); color: #fff; font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---- Contact ---- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }

/* ---- Footer ---- */
footer { background: var(--forest); color: rgba(255, 255, 255, 0.68); padding: 60px 0 34px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 42px; }
footer .logo img { height: 30px; }
footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
footer a { display: block; margin-bottom: 9px; transition: color .2s; }
footer a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-bottom .vn a { display: inline; color: #7ADB81; font-weight: 600; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .grid-3, .contact-cards { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .grid-3, .contact-cards, .pilot-points, .case-stats { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .pilot-box { padding: 36px 22px; }
}

/* ---- Compatibility for subpages built on v1 markup ---- */
:root { --grad: linear-gradient(135deg, #40BA49, #2E9C38); --green-old: #40BA49; }
.grad, .h-grad { color: var(--green); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px; }
.stat .num { font-size: 32px; font-weight: 800; color: var(--green); letter-spacing: -0.02em; }
.stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }
section.white { background: var(--bg); }
section.dark .section-head h2, section.dark h2 { color: #fff; }
.case-strip { background: var(--forest); color: #fff; border-radius: 24px; padding: 54px 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.case-strip h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
.case-strip p { color: rgba(255,255,255,0.72); margin-top: 14px; font-size: 16px; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.case-metrics .m { background: rgba(255,255,255,0.08); border-radius: 14px; padding: 18px; }
.case-metrics .m .num { font-size: 26px; font-weight: 800; }
.case-metrics .m .lbl { font-size: 12.5px; color: rgba(255,255,255,0.65); margin-top: 2px; }
section.dark .card, section.cta-band.dark .pill { background: rgba(255,255,255,0.05); }
section.dark .t-card, section.dark .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
section.dark .card h3 { color: #fff; }
section.dark .card p { color: rgba(255,255,255,0.65); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: 1fr 1fr; } .stats { grid-template-columns: 1fr 1fr; } .case-strip { grid-template-columns: 1fr; padding: 40px 28px; } }
@media (max-width: 560px) { .grid-4, .stats, .case-metrics { grid-template-columns: 1fr; } }

/* ---- v3: hero icons, brand pill, contrast pass ---- */
.btn { padding: 12px 22px; font-size: 14.5px; border-radius: 16px; background: linear-gradient(135deg, #40BA49, #2E9C38); }
.btn.big { padding: 14px 28px; font-size: 15.5px; }
.btn.ghost { background: transparent; }

.brand-of {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: 100px; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  transition: box-shadow .2s, border-color .2s;
}
.brand-of img { height: 17px; width: auto; }
.brand-of:hover { border-color: rgba(64,186,73,.4); box-shadow: 0 8px 24px rgba(18,23,18,.1); }

.hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero h1 .g { position: relative; display: inline-block; }
.hero h1 .g::after {
  content: ''; position: absolute; left: 2%; right: 2%; bottom: -6px; height: 5px;
  border-radius: 100px; background: linear-gradient(90deg, #40BA49, #8FD65B);
}
.hero p.sub strong { color: var(--ink); font-weight: 600; }

.float-icon {
  position: absolute; display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 1; animation: floaty 6s ease-in-out infinite;
}
.float-icon .tile {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border); box-shadow: 0 6px 18px rgba(18, 23, 18, 0.08);
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.float-icon .cap { font-size: 10.5px; font-weight: 700; color: var(--green-ink); opacity: .8; }
.float-icon:nth-child(2n) { animation-delay: -2s; }
.float-icon:nth-child(3n) { animation-delay: -4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 1020px) { .float-icon { display: none; } }

/* dark results section: white cards pop on forest */
section.dark .card { background: #fff; border-color: transparent; }
section.dark .card h3 { color: var(--ink); }
section.dark .card p { color: var(--muted); }
section.dark .pill { background: rgba(255,255,255,.1); color: #8FE096; border-color: rgba(143,224,150,.35); }
section.dark a { color: #8FE096; }

/* gradient pilot block */
.pilot-box.grad {
  background: radial-gradient(700px 300px at 85% -20%, rgba(143, 214, 91, 0.25), transparent 60%), linear-gradient(135deg, #17501C, #0F2E12);
  border: none; color: #fff;
}
.pilot-box.grad h2, .pilot-box.grad h2 span { color: #fff !important; }
.pilot-box.grad .sub, .pilot-box.grad .pilot-small { color: rgba(255,255,255,.72); }
.pilot-box.grad .pill { background: rgba(255,255,255,.1); color: #8FE096; border-color: rgba(143,224,150,.35); }
.pilot-box.grad .pilot-point { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.pilot-box.grad .pilot-point .num { color: #8FE096; }
.pilot-box.grad .pilot-point .lbl { color: rgba(255,255,255,.65); }
.pilot-box.grad .btn { background: #fff; color: var(--green-ink); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* ================= v4 - Viralnetix-pattern pass ================= */

/* Alive hero gradient: green → white → soft purple */
.hero {
  background:
    radial-gradient(820px 520px at -4% -12%, rgba(64, 186, 73, 0.17), transparent 55%),
    radial-gradient(720px 480px at 104% 8%, rgba(139, 41, 163, 0.075), transparent 60%),
    radial-gradient(640px 420px at 92% 100%, rgba(64, 186, 73, 0.10), transparent 60%),
    radial-gradient(520px 380px at 12% 105%, rgba(82, 140, 235, 0.06), transparent 60%),
    #FFFFFF;
  padding: 150px 0 90px;
}

/* Floating pill nav (Viralnetix functionality) */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.35s ease; padding: 16px 0;
  background: transparent; border-bottom: none; backdrop-filter: none;
}
nav.top .inner {
  max-width: 1140px; margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 18px; border: 1px solid var(--border);
  transition: all 0.35s ease;
}
nav.top.scrolled { padding: 10px 0; }
nav.top.scrolled .inner {
  max-width: 880px; padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 14px 40px rgba(18, 23, 18, 0.10);
  background: rgba(255, 255, 255, 0.96);
}
nav.top .inner { margin-left: 24px; margin-right: 24px; }
@media (min-width: 1188px) { nav.top .inner { margin-left: auto; margin-right: auto; } }
nav.top .logo img { height: 30px; }

/* Logo marquee (same mechanics as Viralnetix) */
.logo-band { padding: 54px 0; background: #fff; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logo-band .logo-label {
  text-align: center; font-size: 12px; color: var(--muted); font-weight: 700;
  margin-bottom: 30px; letter-spacing: 0.14em; text-transform: uppercase;
}
.logo-track-wrap {
  overflow: hidden; padding: 8px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.logo-track { display: flex; gap: 56px; animation: scMarquee 32s linear infinite; width: max-content; align-items: center; }
@keyframes scMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-slot {
  display: flex; align-items: center; justify-content: center;
  min-width: 180px; padding: 14px 22px; border-radius: 14px;
  border: 1px solid var(--border); background: #fff; white-space: nowrap;
  font-weight: 700; font-size: 17px; color: #8A938A; transition: all .2s;
}
.logo-slot:hover { border-color: rgba(64,186,73,.45); color: var(--green-ink); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(18,23,18,.08); }

/* Timeline (How it works) */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 10px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(64,186,73,.15), var(--green) 20%, var(--green) 80%, rgba(64,186,73,.15));
  border-radius: 100px;
}
.t-row { position: relative; width: 50%; padding: 8px 48px 34px; }
.t-row:nth-child(odd) { left: 50%; text-align: left; }
.t-row:nth-child(even) { left: 0; text-align: right; }
.t-dot {
  position: absolute; top: 14px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px #fff, var(--shadow-green); z-index: 2;
}
.t-row:nth-child(odd) .t-dot { left: -23px; }
.t-row:nth-child(even) .t-dot { right: -23px; }
.t-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 24px; display: inline-block; text-align: left; box-shadow: var(--shadow);
}
.t-card h3 { font-size: 18.5px; font-weight: 700; }
.t-card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
@media (max-width: 760px) {
  .timeline::before { left: 22px; }
  .t-row, .t-row:nth-child(odd), .t-row:nth-child(even) { width: 100%; left: 0; text-align: left; padding: 8px 0 30px 62px; }
  .t-row:nth-child(odd) .t-dot, .t-row:nth-child(even) .t-dot { left: 0; right: auto; }
}

/* Old way vs ShelfConnect comparison diagram */
.compare { display: grid; grid-template-columns: 1fr 64px 1fr; gap: 0; align-items: stretch; max-width: 1000px; margin: 0 auto; }
.compare-col { border-radius: 20px; padding: 34px 30px; }
.compare-col.old { background: #fff; border: 1px solid var(--border); }
.compare-col.new { background: linear-gradient(160deg, #17501C, #0F2E12); color: #fff; box-shadow: 0 18px 50px rgba(16, 46, 18, 0.35); }
.compare-col h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.compare-col .tag { font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; display: inline-block; padding: 4px 12px; border-radius: 100px; }
.compare-col.old .tag { background: rgba(214, 69, 69, .08); color: #C0392B; border: 1px solid rgba(214,69,69,.3); }
.compare-col.new .tag { background: rgba(143, 224, 150, .12); color: #8FE096; border: 1px solid rgba(143,224,150,.35); }
.compare-col ul { list-style: none; margin-top: 14px; }
.compare-col li { position: relative; padding: 9px 0 9px 30px; font-size: 15px; border-bottom: 1px dashed rgba(18,23,18,.08); }
.compare-col.new li { border-bottom-color: rgba(255,255,255,.1); }
.compare-col li:last-child { border-bottom: none; }
.compare-col.old li::before { content: '✕'; position: absolute; left: 2px; color: #C0392B; font-weight: 800; }
.compare-col.old li { color: var(--muted); }
.compare-col.new li::before { content: '✓'; position: absolute; left: 2px; color: #8FE096; font-weight: 800; }
.compare-arrow { display: flex; align-items: center; justify-content: center; color: var(--green); }
.compare-arrow svg { width: 34px; height: 34px; }
@media (max-width: 820px) {
  .compare { grid-template-columns: 1fr; gap: 8px; }
  .compare-arrow { transform: rotate(90deg); padding: 6px 0; }
}

/* Quotes row (what businesses say) */
.quotes-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1040px; margin: 0 auto; }
.q-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; position: relative; }
.q-card::before { content: '“'; position: absolute; top: 6px; left: 18px; font-size: 64px; line-height: 1; color: rgba(64,186,73,.22); font-family: Georgia, serif; }
.q-card .quote { font-size: 15px; line-height: 1.65; position: relative; z-index: 1; padding-top: 14px; }
.q-card .who { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 14px; }
.q-card .who strong { color: var(--ink); display: block; font-size: 14px; }
.q-card:nth-child(2) { transform: translateY(14px); }
@media (max-width: 820px) { .quotes-row { grid-template-columns: 1fr; } .q-card:nth-child(2) { transform: none; } }

/* Let's Get Started CTA (Viralnetix pattern) */
.started {
  background:
    radial-gradient(700px 380px at 20% 20%, rgba(64,186,73,.14), transparent 60%),
    radial-gradient(600px 360px at 85% 85%, rgba(139,41,163,.10), transparent 60%),
    var(--forest);
  color: #fff; text-align: center;
}
.started .onboard-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  font-size: 11.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.85);
}
.started .onboard-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #40BA49; box-shadow: 0 0 10px #40BA49; animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.avatar-stack { display: flex; justify-content: center; margin: 26px 0 8px; }
.avatar-stack img, .avatar-stack .more {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--forest); margin: 0 -7px;
}
.avatar-stack .more {
  background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.started h2 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -0.03em; margin-top: 10px; }
.started h2 .g { color: #40BA49; }
.started .sub { max-width: 520px; margin: 18px auto 32px; color: rgba(255,255,255,.68); font-size: 16.5px; }
.cta-form {
  display: flex; align-items: stretch; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: 6px; max-width: 440px; margin: 0 auto;
}
.cta-form input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 12px 18px; font-family: inherit; font-size: 14.5px; color: #fff; min-width: 0;
}
.cta-form input::placeholder { color: rgba(255,255,255,.4); }
.cta-form button {
  border: none; cursor: pointer; padding: 12px 24px; border-radius: 999px;
  background: linear-gradient(135deg, #40BA49, #2E9C38); color: #fff;
  font-weight: 700; font-size: 14px; font-family: inherit; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.cta-form button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(64,186,73,.4); }

/* Viralnetix-style footer */
footer.vnf {
  background: #0D120D; color: rgba(255,255,255,.78);
  padding: 80px 0 32px; position: relative; overflow: hidden;
}
footer.vnf::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 15% 30%, rgba(64, 186, 73, 0.10), transparent 60%);
  pointer-events: none;
}
footer.vnf .container { position: relative; z-index: 1; }
footer.vnf .foot-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 56px; align-items: flex-start; }
.foot-cta-title { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: #fff; margin: 26px 0 20px; line-height: 1.12; max-width: 340px; }
footer.vnf .cta-form { margin: 0; max-width: 400px; }
footer.vnf h4 { margin-bottom: 16px; }
footer.vnf a { color: rgba(255,255,255,.62); font-size: 14px; margin-bottom: 10px; }
footer.vnf a:hover { color: #fff; }
.foot-operators { display: flex; flex-direction: column; gap: 14px; }
.operator { display: flex !important; align-items: center; gap: 12px; margin-bottom: 0 !important; }
.op-avatar img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.op-meta .nm { color: #fff; font-weight: 700; font-size: 14px; line-height: 1.25; }
.op-meta .rl { font-size: 12.5px; color: rgba(255,255,255,.55); }
@media (max-width: 900px) { footer.vnf .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { footer.vnf .foot-grid { grid-template-columns: 1fr; } }

/* v4.1: compact timeline */
.t-row { padding: 4px 42px 18px; }
.t-card { padding: 18px 20px; max-width: 400px; }
.t-card p { font-size: 14px; margin-top: 6px; }
.t-dot { width: 40px; height: 40px; font-size: 16px; top: 10px; }
.t-row:nth-child(odd) .t-dot { left: -20px; }
.t-row:nth-child(even) .t-dot { right: -20px; }
@media (max-width: 760px) { .t-row, .t-row:nth-child(odd), .t-row:nth-child(even) { padding: 4px 0 20px 58px; } }

/* v5: compact 3x2 steps grid (replaces tall timeline) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 22px; max-width: 1060px; margin: 14px auto 0; }
.step {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 22px 22px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(18,23,18,.1); }
.step .dot {
  position: absolute; top: -19px; left: 20px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px #fff, var(--shadow-green);
}
.step h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -0.01em; }
.step p { font-size: 13.5px; color: var(--muted); margin-top: 7px; line-height: 1.55; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; gap: 34px; } }

/* v6: interactive steps */
.step { opacity: 0; transform: translateY(26px); }
.step.in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; transition-delay: calc(var(--i, 0) * 90ms); }
.step.in:hover { transition-delay: 0s; }
.step-icon {
  position: absolute; top: 18px; right: 18px; color: rgba(64, 186, 73, 0.45);
  transition: color .25s, transform .25s;
}
.step:hover .step-icon, .step.active .step-icon { color: var(--green); transform: rotate(-8deg) scale(1.18); }
.step:hover, .step.active { transform: translateY(-5px); border-color: rgba(64, 186, 73, 0.5); box-shadow: 0 16px 40px rgba(64, 186, 73, 0.16); }
.step.active { background: linear-gradient(160deg, rgba(64,186,73,.07), #fff 55%); }
.step:hover .dot, .step.active .dot { transform: scale(1.14); }
.step .dot { transition: transform .25s; }
@media (prefers-reduced-motion: reduce) { .step { opacity: 1; transform: none; } }

/* dark-section ghost button */
section.dark .btn.ghost { color: #fff; border-color: rgba(255,255,255,.3); }
section.dark .btn.ghost:hover { border-color: #8FE096; color: #8FE096; }

/* ================= v7 - audit fixes ================= */

/* Mobile hamburger nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { display: block; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: calc(100% + 10px); left: 24px; right: 24px;
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    box-shadow: 0 24px 60px rgba(18, 23, 18, 0.18);
    flex-direction: column; align-items: stretch; padding: 10px; gap: 2px;
    display: none;
  }
  nav.top .inner { position: relative; }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { display: block; padding: 12px 14px; border-radius: 10px; color: var(--ink); }
  .nav-links a:not(.btn):hover { background: var(--green-tint); }
  .nav-links .btn { text-align: center; margin-top: 6px; }
}

/* Hero stat: plain text, kills the triple-pill stack */
.hero-anchor { background: transparent; border: none; box-shadow: none; padding: 4px 0; font-size: 13.5px; }

/* Keyboard focus */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid rgba(64, 186, 73, 0.55); outline-offset: 2px; border-radius: 8px;
}

/* Compare arrow nudge */
.compare-arrow svg { animation: nudgeX 1.7s ease-in-out infinite; }
@keyframes nudgeX { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(7px); } }

/* Type scale unify */
.card h3 { font-size: 18px; }
.step h3 { font-size: 17px; }
.case-card h3 { font-size: 22px; }

/* Respect reduced motion everywhere */
@media (prefers-reduced-motion: reduce) {
  .logo-track, .float-icon, .started .onboard-pill .dot, .compare-arrow svg { animation: none !important; }
  .step, .step.in { transition: none !important; }
  .btn, .card, .step { transition: none !important; }
}

/* Footer minus the duplicate form */
.foot-tagline { margin-top: 16px; max-width: 300px; font-size: 14px; color: rgba(255,255,255,.6); }
.foot-mail { display: inline-block; margin-top: 14px; color: #8FE096 !important; font-weight: 700; }

/* 4-column steps variant (retailer page) */
.steps-grid.cols-4 { grid-template-columns: repeat(4, 1fr); max-width: 1120px; }
@media (max-width: 1000px) { .steps-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid.cols-4 { grid-template-columns: 1fr; } }
.quotes-row.flat .q-card { transform: none; }

/* v8: hero breathing room */
.hero { padding: 178px 0 118px; }
.hero h1 { font-size: clamp(38px, 5.4vw, 60px); }
.hero p.sub { font-size: 17.5px; margin-top: 26px; max-width: 620px; }
.hero .cta-row { margin-top: 40px; }
.hero-anchor { margin-top: 42px; }

/* ================= v9 - Book-a-call page (contact) ================= */
.book-hero { padding: 150px 0 90px; background:
  radial-gradient(700px 420px at -5% -10%, rgba(64,186,73,.14), transparent 55%),
  radial-gradient(600px 380px at 105% 20%, rgba(139,41,163,.06), transparent 60%), #fff; }
.book-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start; }
.book-h1 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin: 18px 0 26px; }
.book-h1 .g { color: var(--green); }

.cta-form.light { background: #fff; border: 1px solid var(--border-strong); box-shadow: var(--shadow); margin: 0; max-width: 460px; }
.cta-form.light input { color: var(--ink); }
.cta-form.light input::placeholder { color: rgba(18,23,18,.4); }

.expect-block { max-width: 560px; margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--border); }
.expect-block .label, .below-block .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 18px; }
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.expect-list li { display: flex; align-items: flex-start; gap: 14px; }
.expect-check { width: 24px; height: 24px; border-radius: 50%; background: var(--green-tint); color: var(--green-ink); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 12px; font-weight: 800; }
.expect-h { font-size: 14.5px; font-weight: 700; line-height: 1.3; margin-bottom: 2px; }
.expect-p { font-size: 13.5px; color: var(--muted); line-height: 1.45; }

.pilot-alt { margin-top: 30px; padding: 18px 20px; border: 1.5px dashed rgba(64,186,73,.45); border-radius: 14px; max-width: 560px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pilot-alt p { font-size: 14px; color: var(--muted); margin: 0; }
.pilot-alt p strong { color: var(--ink); }

.below-block { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--border); }
.founders-list { display: flex; flex-direction: column; gap: 14px; }
.founder-row { display: flex; align-items: center; gap: 12px; }
.founder-avatar img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.founder-name { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 6px; }
.verified-check { display: inline-flex; width: 16px; height: 16px; border-radius: 50%; background: var(--green); color: #fff; align-items: center; justify-content: center; }
.verified-check svg { width: 9px; height: 9px; }
.founder-role { font-size: 13px; color: var(--muted); }

.proof-stack { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 110px; }
.proof-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px 26px; box-shadow: var(--shadow); }
.proof-card .cat { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--green-ink); background: var(--green-tint); border: 1px solid rgba(64,186,73,.3); display: inline-block; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.proof-card .big { font-size: 42px; font-weight: 800; color: var(--green); letter-spacing: -0.02em; line-height: 1; }
.proof-card .big-lbl { font-size: 13.5px; color: var(--muted); margin: 6px 0 16px; }
.proof-card .quote { font-size: 14.5px; line-height: 1.6; font-style: italic; border-left: 3px solid rgba(64,186,73,.4); padding-left: 14px; }
.proof-card .attr { margin-top: 12px; font-size: 13px; color: var(--muted); font-weight: 600; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; gap: 48px; } .proof-stack { position: static; } }

/* ================= v10 - contrast + badges + unified chrome ================= */
.pill.plum { background: rgba(139, 41, 163, 0.07); color: #8B29A3; border-color: rgba(139, 41, 163, 0.3); }
.pill.amber { background: rgba(232, 163, 61, 0.1); color: #B47516; border-color: rgba(232, 163, 61, 0.4); }

.proof-card.dark { background: linear-gradient(160deg, #17501C, #0F2E12); border: none; color: #fff; box-shadow: 0 18px 50px rgba(16, 46, 18, 0.35); }
.proof-card.dark .big { color: #8FE096; }
.proof-card.dark .big-lbl, .proof-card.dark .attr { color: rgba(255, 255, 255, 0.68); }
.proof-card.dark .quote { border-left-color: rgba(143, 224, 150, 0.5); }
.proof-card.dark .cat { background: rgba(255,255,255,.1); color: #8FE096; border-color: rgba(143,224,150,.35); }

.certs-block { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--border); }
.certs-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.certs-row img { height: 46px; width: auto; border-radius: 8px; }

footer .foot-certs { margin-top: 20px; }
footer .foot-certs .certs-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 700; margin-bottom: 10px; }
footer .foot-certs img { height: 34px; width: auto; border-radius: 6px; margin: 0 8px 6px 0; display: inline-block; vertical-align: middle; }

.audience-back {
  background: var(--green-tint); border: 1px solid rgba(64, 186, 73, 0.4);
  color: var(--green-ink) !important; padding: 7px 14px !important;
  border-radius: 100px; font-weight: 700 !important;
}
.audience-back:hover { background: rgba(64, 186, 73, 0.15); }

/* dark section support for case cards */
section.dark .case-card { background: #fff; }
section.dark .case-top .pill { background: rgba(139, 41, 163, 0.07); color: #8B29A3; border-color: rgba(139, 41, 163, 0.3); }

/* retailer contact page */
.rc-hero { padding: 170px 0 100px; text-align: center; background:
  radial-gradient(760px 460px at -5% -10%, rgba(64,186,73,.15), transparent 55%),
  radial-gradient(600px 400px at 105% 30%, rgba(139,41,163,.07), transparent 60%), #fff; }
.rc-box { max-width: 620px; margin: 44px auto 0; background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 40px 36px; box-shadow: var(--shadow); text-align: center; }
.rc-box h3 { font-size: 19px; margin-bottom: 8px; }
.rc-box p { color: var(--muted); font-size: 15px; }

/* ================= v11 - pressable chip, inbox, full pilot ================= */

/* Case-study chip: clearly clickable */
.hero-anchor {
  background: #fff; border: 1.5px solid rgba(64, 186, 73, 0.4);
  box-shadow: 0 8px 26px rgba(18, 23, 18, 0.08);
  padding: 12px 24px; border-radius: 100px; font-size: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.hero-anchor:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: 0 14px 34px rgba(64, 186, 73, 0.22); }
.hero-anchor:hover strong { color: var(--green); }

/* One-line compare heading */
.oneline { white-space: nowrap; }
@media (max-width: 760px) { .oneline { white-space: normal; } }

/* Inbox mockup - replies land in your inbox */
.inbox { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 26px 70px rgba(18, 23, 18, 0.12); overflow: hidden; }
.inbox-bar { display: flex; align-items: center; gap: 7px; padding: 13px 18px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.inbox-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.inbox-bar .ttl { margin-left: 10px; font-size: 12.5px; font-weight: 700; color: var(--muted); letter-spacing: .05em; }
.inbox-row { display: flex; gap: 14px; padding: 18px 20px; border-bottom: 1px solid var(--border); transition: background .25s; align-items: flex-start; }
.inbox-row:last-child { border-bottom: none; }
.inbox-row:hover, .inbox-row.active { background: var(--green-tint); }
.inbox-av { width: 40px; height: 40px; border-radius: 50%; color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; font-size: 14px; }
.inbox-meta { flex: 1; min-width: 0; }
.inbox-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; flex-wrap: wrap; }
.inbox-name { font-weight: 700; font-size: 14.5px; }
.inbox-name span { font-weight: 600; font-size: 12px; color: var(--muted); margin-left: 6px; }
.inbox-snippet { font-size: 14px; color: rgba(18, 23, 18, 0.78); margin-top: 6px; line-height: 1.55; }
.inbox-tag { font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; flex: none; }
.tag-green { background: var(--green-tint); color: var(--green-ink); border: 1px solid rgba(64, 186, 73, 0.35); }
.tag-amber { background: rgba(232, 163, 61, 0.12); color: #B47516; border: 1px solid rgba(232, 163, 61, 0.4); }
.tag-plum { background: rgba(139, 41, 163, 0.08); color: #8B29A3; border: 1px solid rgba(139, 41, 163, 0.3); }
.inbox-foot { text-align: center; padding: 14px; background: var(--bg-soft); border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.inbox-foot a { color: var(--green-ink); font-weight: 700; }

/* Pilot as a full-bleed section */
.pilot-full {
  background:
    radial-gradient(760px 420px at 82% -12%, rgba(143, 214, 91, 0.22), transparent 60%),
    radial-gradient(620px 380px at 8% 112%, rgba(139, 41, 163, 0.13), transparent 60%),
    linear-gradient(135deg, #17501C, #0F2E12);
  color: #fff; text-align: center; padding: 120px 0;
}
.pilot-full .pill { background: rgba(255, 255, 255, 0.1); color: #8FE096; border-color: rgba(143, 224, 150, 0.35); }
.pilot-full h2 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -0.03em; margin-top: 18px; }
.pilot-full h2 span { color: #8FE096; }
.pilot-full .sub { max-width: 540px; margin: 18px auto 0; color: rgba(255, 255, 255, 0.7); font-size: 17px; }
.pilot-full .pilot-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 660px; margin: 38px auto; }
.pilot-full .pilot-point { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; padding: 22px 14px; }
.pilot-full .pilot-point .num { font-size: 30px; font-weight: 800; color: #8FE096; }
.pilot-full .pilot-point .lbl { font-size: 13px; color: rgba(255, 255, 255, 0.65); margin-top: 4px; }
.pilot-full .btn { background: #fff; color: var(--green-ink); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28); }
.pilot-full .btn:hover { background: #f2f7f2; }
.pilot-full .pilot-small { font-size: 13.5px; color: rgba(255, 255, 255, 0.6); margin-top: 20px; }
@media (max-width: 560px) { .pilot-full { padding: 80px 0; } .pilot-full .pilot-points { grid-template-columns: 1fr; } }

/* v12: certs single row */
footer .foot-certs > div:last-child { display: flex; flex-wrap: nowrap; gap: 6px; align-items: center; }
footer .foot-certs img { height: 27px; margin: 0; }

/* ================= v13 - dark accents round ================= */

/* 3. pilot-alt: dark green pop */
.pilot-alt {
  background: linear-gradient(135deg, #17501C, #0F2E12);
  border: none; box-shadow: 0 16px 40px rgba(16, 46, 18, 0.3);
  border-radius: 16px; padding: 22px 24px;
}
.pilot-alt p { color: rgba(255, 255, 255, 0.75); }
.pilot-alt p strong { color: #fff; }
.pilot-alt .btn { background: #fff; color: var(--green-ink); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.pilot-alt .btn:hover { background: #eef6ee; }

/* 5. step dots: green progression 1→6 */
.step:nth-child(1) .dot { background: #74CE7A; }
.step:nth-child(2) .dot { background: #58C360; }
.step:nth-child(3) .dot { background: #40BA49; }
.step:nth-child(4) .dot { background: #35A03D; }
.step:nth-child(5) .dot { background: #2A8632; }
.step:nth-child(6) .dot { background: #1F6B26; }

/* 6. nav Book a call: white text (was inheriting muted) */
.nav-links a.btn { color: #fff; }
.nav-links a.btn:hover { color: #fff; }

/* 7. featured pricing card dark */
.price-card.featured {
  background: linear-gradient(160deg, #17501C, #0F2E12);
  border: none; color: #fff;
  box-shadow: 0 20px 55px rgba(16, 46, 18, 0.4);
}
.price-card.featured .tier { color: #fff; }
.price-card.featured .price { color: #8FE096; }
.price-card.featured .period { color: rgba(255, 255, 255, 0.6); }
.price-card.featured li { color: rgba(255, 255, 255, 0.88); border-bottom: none; }
.price-card.featured li::before { color: #8FE096; }

/* 2. contact plain email line */
.contact-mail-line { margin-top: 6px; }
.contact-mail-line a { font-weight: 800; font-size: 16px; color: var(--green-ink); }
.contact-mail-line p { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* 4. footer form spacing */
footer .foot-cta .cta-form { margin-top: 18px; max-width: 380px; }

/* ================= v14 - white dark-form buttons, VN-style FAQ ================= */
footer .cta-form button, .started .cta-form button {
  background: #fff; color: var(--green-ink); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
footer .cta-form button:hover, .started .cta-form button:hover { background: #eef6ee; box-shadow: 0 10px 26px rgba(0,0,0,.32); }

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; background: none; }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 17px; font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; font-weight: 300;
  color: var(--green); transition: transform 0.3s; flex: none; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 560px) { .faq-item summary { font-size: 15.5px; } }

/* dark sections: buttons keep white text */
section.dark a.btn, .started a.btn, .pilot-alt a.btn { color: #fff; }
section.dark a.btn.ghost { color: #fff; }
.pilot-alt a.btn, .pilot-full a.btn { color: var(--green-ink); }

/* solo retailer nav: only the back pill */
.nav-links.solo { display: flex !important; position: static; background: none; border: none; box-shadow: none; padding: 0; flex-direction: row; }
.nav-links.solo .audience-back { display: inline-block !important; }

/* featured pricing card lifts above the row */
.price-grid { align-items: stretch; padding-top: 18px; }
.price-card.featured { transform: translateY(-24px); }
.price-card.featured:hover { transform: translateY(-28px); }
@media (max-width: 900px) { .price-card.featured, .price-card.featured:hover { transform: none; } }

/* all pricing boxes pop on hover */
.price-card { transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(18, 23, 18, 0.12); }
.price-card.featured:hover { transform: translateY(-30px); box-shadow: 0 26px 60px rgba(16, 46, 18, 0.45); }
a.case-card { cursor: pointer; }

/* dark proof cards: white text, only the big number stays green */
.proof-card.dark .big-lbl { color: #fff; }
.proof-card.dark .quote { color: #fff; }
.proof-card.dark .attr { color: rgba(255, 255, 255, 0.85); }

/* ROI calculator CTA: inviting */
.calc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(64,186,73,.12), rgba(64,186,73,.05)), #fff;
  border: 1.5px solid rgba(64, 186, 73, 0.55);
  color: var(--green-ink); font-weight: 700; font-size: 15.5px;
  padding: 15px 30px; border-radius: 100px;
  box-shadow: 0 8px 26px rgba(64, 186, 73, 0.18);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.calc-btn svg { flex: none; }
.calc-btn .arr { transition: transform .2s; font-weight: 800; }
.calc-btn:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: 0 14px 36px rgba(64, 186, 73, 0.3); }
.calc-btn:hover .arr { transform: translateX(5px); }

/* dark proof cards: category pill white too */
.proof-card.dark .cat { color: #fff; border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.08); }

/* co-founder pass: no underline on hero accent, softer headline weights */
.hero h1 .g::after { display: none; }
.hero h1 { font-weight: 700; }
.section-head h2 { font-weight: 700; }
.cta-band h2 { font-weight: 700; }
.started h2 { font-weight: 700; }
.pilot-full h2 { font-weight: 700; }
.book-h1 { font-weight: 700; }
