/* ═══════════════════════════════════════════════════════════════
   RingMia — styles
   Design tokens first, then components top-to-bottom.
   Mobile-first; larger breakpoints layered on with min-width.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* brand */
  --emerald: #0E9F6E;
  --emerald-bright: #12B981;
  --emerald-dark: #0A7D57;
  --emerald-tint: #E7F6EF;
  --coral: #FF6B4A;
  --coral-tint: #FFEDE7;

  /* ink & neutrals (warm) */
  --ink: #0B1220;
  --ink-soft: #10141C;
  --text: #1C2530;
  --muted: #5B6770;
  --line: #E7E9E6;
  --line-soft: #F0F1EE;
  --bg: #FBFAF8;
  --bg-alt: #F4F6F4;
  --white: #FFFFFF;

  /* type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  /* shape */
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.06), 0 2px 8px rgba(11,18,32,.05);
  --shadow: 0 8px 30px rgba(11,18,32,.09);
  --shadow-lg: 0 24px 60px rgba(11,18,32,.16);
  --maxw: 1120px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--emerald);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 650; font-size: .96rem;
  padding: 12px 20px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--emerald); color: #fff; box-shadow: 0 6px 18px rgba(14,159,110,.28); }
.btn-primary:hover { background: var(--emerald-dark); box-shadow: 0 10px 26px rgba(14,159,110,.34); transform: translateY(-1px); }

.btn-outline { background: #fff; color: var(--ink-soft); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--emerald); color: var(--emerald-dark); transform: translateY(-1px); }

/* secondary CTA sitting on the emerald band — solid white reads far
   crisper there than a translucent outline */
.btn-outline-light { background: #fff; color: var(--emerald-dark); border-color: #fff; box-shadow: 0 6px 18px rgba(6,50,35,.18); }
.btn-outline-light:hover { background: #EAF8F2; border-color: #EAF8F2; color: var(--emerald-dark); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(6,50,35,.24); }

.btn-ghost { background: transparent; color: var(--ink-soft); padding: 10px 14px; }
.btn-ghost:hover { color: var(--emerald-dark); }

.btn .ico { width: 18px; height: 18px; fill: currentColor; }

/* demo button pulse dot */
.btn-demo { font-weight: 600; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-bright); box-shadow: 0 0 0 0 rgba(18,185,129,.6); animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(18,185,129,.55); } 70% { box-shadow: 0 0 0 7px rgba(18,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(18,185,129,0); } }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,248,.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 750; color: var(--ink); }
.brand-name { font-size: 1.18rem; letter-spacing: -.02em; }
.logo-mark { flex: none; }
.nav { display: none; margin-left: 12px; gap: 26px; }
.nav a { color: var(--muted); font-weight: 550; font-size: .95rem; transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header-actions { display: none; margin-left: auto; align-items: center; gap: 8px; }

.nav-toggle { margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; background: #fff; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; }
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 8px 20px 18px; border-bottom: 1px solid var(--line-soft); background: var(--bg); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 11px 6px; color: var(--text); font-weight: 600; border-radius: 10px; }
.mobile-nav a:hover { background: var(--bg-alt); }
.mobile-nav .btn { margin-top: 8px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 46px 0 8px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 82% 8%, rgba(18,185,129,.13), transparent 60%),
    radial-gradient(50% 40% at 0% 0%, rgba(255,107,74,.07), transparent 55%);
}
.hero-inner { display: grid; gap: 34px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 650; letter-spacing: .02em;
  color: var(--emerald-dark); background: var(--emerald-tint);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); animation: pulse-ring 2s infinite; }
.hero-title {
  font-size: clamp(2.25rem, 7vw, 3.7rem); line-height: 1.05;
  letter-spacing: -.035em; color: var(--ink); font-weight: 800;
}
.accent-underline { position: relative; white-space: nowrap; color: var(--coral); }
.accent-underline::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .16em;
  background: var(--coral); opacity: .28; border-radius: 3px; z-index: -1;
}
.hero-sub { margin-top: 20px; font-size: 1.12rem; color: var(--muted); max-width: 33em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-trust { margin-top: 18px; font-size: .88rem; color: var(--muted); font-weight: 550; }

/* hero visual — phone card */
.hero-visual { position: relative; display: flex; justify-content: center; padding: 8px 0 20px; }
.phone-card {
  width: 100%; max-width: 380px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.phone-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line-soft); }
.live-badge { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 650; color: var(--emerald-dark); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: pulse-ring 1.6s infinite; box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
.phone-time { font-variant-numeric: tabular-nums; font-size: .82rem; color: var(--muted); font-weight: 600; }
.chat { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.bubble { max-width: 82%; padding: 10px 14px; border-radius: 15px; font-size: .92rem; line-height: 1.45; animation: rise .5s var(--ease) both; }
.bubble.caller { align-self: flex-start; background: var(--bg-alt); border-bottom-left-radius: 5px; }
.bubble.ai { align-self: flex-end; background: var(--emerald); color: #fff; border-bottom-right-radius: 5px; }
.bubble.ai strong { color: #fff; }
.bubble:nth-child(2) { animation-delay: .5s; }
.bubble:nth-child(3) { animation-delay: 1s; }
.bubble:nth-child(4) { animation-delay: 1.5s; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.phone-foot { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--line-soft); background: var(--bg); }
.wave { display: flex; align-items: center; gap: 3px; height: 22px; }
.wave span { width: 3px; height: 40%; background: var(--emerald); border-radius: 3px; animation: eq 1s ease-in-out infinite; }
.wave span:nth-child(2){animation-delay:.1s} .wave span:nth-child(3){animation-delay:.2s} .wave span:nth-child(4){animation-delay:.3s} .wave span:nth-child(5){animation-delay:.4s} .wave span:nth-child(6){animation-delay:.5s} .wave span:nth-child(7){animation-delay:.6s}
@keyframes eq { 0%,100% { height: 25%; } 50% { height: 95%; } }
.foot-label { font-size: .8rem; color: var(--muted); font-weight: 600; }

.float-chip {
  position: absolute; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 9px 13px; border-radius: 12px; font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  animation: floaty 4s ease-in-out infinite;
}
.chip-ticket { top: 14%; left: -2%; }
.chip-sms { bottom: 16%; right: -2%; animation-delay: 1.5s; }
/* On narrow screens the phone card is full-width, so the floating chips
   overlap the chat — hide them there and let them return on wider layouts. */
@media (max-width: 700px) { .float-chip { display: none; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* proof strip */
.proof-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; padding: 18px 20px; margin-top: 10px; border-top: 1px solid var(--line-soft); }
.proof-label { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.proof-logo { font-weight: 750; color: var(--ink); font-size: 1.05rem; letter-spacing: -.01em; }
a.proof-logo { text-decoration: none; transition: color .15s ease; }
a.proof-logo:hover { color: var(--emerald-dark); }
/* thin vertical rule between brands — the old faint middot was invisible,
   so the names read as one run-on phrase */
.proof-sep { flex: none; width: 1px; height: 15px; border-radius: 1px; background: rgba(11,18,32,.22); font-size: 0; line-height: 0; }
.proof-note { font-size: .86rem; color: var(--muted); }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 68px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.kicker { font-size: .84rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--emerald-dark); }
.kicker-warm { color: var(--coral); }
.section-title { font-size: clamp(1.7rem, 4.2vw, 2.5rem); line-height: 1.12; letter-spacing: -.03em; color: var(--ink); font-weight: 800; margin-top: 8px; }
.section-lead { margin-top: 16px; font-size: 1.08rem; color: var(--muted); }
.center { text-align: center; }
.section-lead.center { margin-left: auto; margin-right: auto; }
.footnote { margin-top: 20px; font-size: .82rem; color: var(--muted); font-style: italic; }

/* ── Pain / stats ──────────────────────────────────────────── */
.pain .stat-row { display: grid; gap: 16px; margin-top: 34px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.stat-num { font-size: 2.6rem; font-weight: 850; letter-spacing: -.04em; color: var(--coral); line-height: 1; }
.stat-label { margin-top: 10px; color: var(--muted); font-size: .98rem; }

/* ── How it works / steps ──────────────────────────────────── */
.steps { display: grid; gap: 20px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 26px; box-shadow: var(--shadow-sm); }
.step-n { width: 44px; height: 44px; border-radius: 13px; background: var(--emerald-tint); color: var(--emerald-dark); font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 1.2rem; letter-spacing: -.01em; color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ── Features ──────────────────────────────────────────────── */
.feature-grid { display: grid; gap: 18px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-icon { width: 48px; height: 48px; border-radius: 13px; background: var(--emerald-tint); color: var(--emerald-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.16rem; color: var(--ink); letter-spacing: -.01em; margin-bottom: 14px; }

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 27px; color: var(--muted); font-size: .96rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .28em; width: 17px; height: 17px;
  border-radius: 50%; background: var(--emerald-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A7D57' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ── Customer band (homepage: who's already live) ──────────── */
.cust-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cust-band-sub { text-align: center; color: var(--muted); margin: 6px auto 0; max-width: 620px; font-size: 1rem; }
.cust-row { display: flex; justify-content: center; align-items: stretch; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.cust-item {
  flex: 1 1 160px; max-width: 210px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 22px 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
a.cust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--emerald); }
.cust-item-logo { height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.cust-item-logo img { max-width: 140px; max-height: 90px; object-fit: contain; }
.cust-item-name { font-weight: 750; color: var(--ink); font-size: 1rem; letter-spacing: -.01em; }
.cust-item-type { color: var(--muted); font-size: .86rem; line-height: 1.35; }
@media (max-width: 640px) {
  .cust-row { flex-direction: column; gap: 12px; margin-top: 24px; }
  .cust-item { flex: 1 1 auto; max-width: 100%; width: 100%; flex-direction: row;
    align-items: center; text-align: left; gap: 16px; padding: 16px 18px; }
  .cust-item-logo { height: 56px; width: 76px; flex: none; margin-bottom: 0; }
  .cust-item-logo img { max-height: 56px; max-width: 76px; }
}

/* ── Case studies ──────────────────────────────────────────── */
.case-grid { display: grid; gap: 20px; }
.case-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.case-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.case-avatar { width: 58px; height: 58px; border-radius: 14px; background: linear-gradient(135deg, var(--emerald-bright), var(--emerald-dark)); color: #fff; font-weight: 800; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; flex: none; overflow: hidden; }
.case-avatar img { width: 100%; height: 100%; object-fit: contain; background: #fff; padding: 3px; }
.case-head h3 { font-size: 1.25rem; color: var(--ink); letter-spacing: -.01em; }
.case-type { font-size: .88rem; color: var(--muted); }
.case-since { margin-left: auto; font-size: .76rem; font-weight: 650; color: var(--emerald-dark); background: var(--emerald-tint); padding: 5px 10px; border-radius: 999px; white-space: nowrap; align-self: flex-start; }
.case-persona { font-size: .84rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.case-card blockquote { font-size: 1.06rem; color: var(--text); line-height: 1.5; margin-bottom: 18px; }

.flow { margin-top: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.flow-title { text-align: center; font-size: 1.15rem; color: var(--ink); margin-bottom: 22px; }
.flow-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 6px; }
.flow-steps li { display: flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 600; color: var(--ink-soft); background: var(--bg-alt); padding: 9px 15px 9px 9px; border-radius: 999px; }
.flow-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--emerald); color: #fff; font-size: .78rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }

/* ── Audience ──────────────────────────────────────────────── */
.audience-cols { display: grid; gap: 18px; }
.audience-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.audience-col.primary { border-color: var(--emerald); box-shadow: 0 8px 26px rgba(14,159,110,.14); }
.audience-tag { display: inline-block; font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; color: var(--emerald-dark); background: var(--emerald-tint); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.audience-tag.muted { color: var(--muted); background: var(--bg-alt); }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; }
.pill-list li { font-weight: 600; font-size: .94rem; color: var(--ink-soft); background: var(--bg-alt); padding: 9px 15px; border-radius: 11px; }
.audience-col.primary .pill-list li { background: var(--emerald-tint); color: var(--emerald-dark); }

/* ── Pricing ───────────────────────────────────────────────── */
.price-grid { display: grid; gap: 20px; }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--emerald); box-shadow: var(--shadow); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--emerald); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.price-name { font-size: 1.15rem; color: var(--ink); }
.price-amount { font-size: 2.7rem; font-weight: 850; letter-spacing: -.04em; color: var(--ink); margin-top: 6px; line-height: 1; }
.price-period { font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
/* Reserve consistent space so the CTA + feature lists line up across cards
   regardless of how the setup/blurb lines wrap. */
.price-setup { font-size: .86rem; color: var(--muted); margin-top: 8px; min-height: 3.2em; }
.price-blurb { color: var(--muted); margin: 14px 0 20px; font-size: .96rem; min-height: 3.2em; }
.price-card .btn { margin-bottom: 22px; }
.price-card .check-list { margin-top: 0; }
.overage-note { text-align: center; margin-top: 26px; color: var(--muted); font-size: .95rem; font-weight: 550; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; padding: 20px 22px; font-weight: 650; color: var(--ink); font-size: 1.04rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { flex: none; width: 20px; height: 20px; position: relative; }
.faq-chevron::before, .faq-chevron::after { content: ""; position: absolute; top: 9px; width: 11px; height: 2px; background: var(--emerald); border-radius: 2px; transition: transform .25s var(--ease); }
.faq-chevron::before { left: 1px; transform: rotate(45deg); }
.faq-chevron::after { right: 1px; transform: rotate(-45deg); }
.faq-item[open] .faq-chevron::before { transform: rotate(-45deg); }
.faq-item[open] .faq-chevron::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }
.faq-item[open] summary { color: var(--emerald-dark); }

/* ── Final CTA + lead form ─────────────────────────────────── */
.cta-final {
  position: relative; overflow: hidden;
  background: linear-gradient(147deg, #13bd85 0%, #0e9f6e 44%, #0a7d57 100%);
}
/* faded dot grid for subtle texture */
.cta-final::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(74% 66% at 50% 40%, #000 0%, transparent 82%);
  mask-image: radial-gradient(74% 66% at 50% 40%, #000 0%, transparent 82%);
}
/* soft white sheen top-right */
.cta-final::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  width: 540px; height: 540px; right: -110px; top: -180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.20), transparent 66%);
  filter: blur(26px);
}
.cta-grid { position: relative; z-index: 1; display: grid; gap: 34px; align-items: center; }
.section-title.light, .cta-copy .section-title { color: #fff; }
.section-lead.light { color: rgba(255,255,255,.72); }
.cta-points { margin: 22px 0; display: flex; flex-direction: column; gap: 10px; }
.cta-points li { position: relative; padding-left: 27px; color: rgba(255,255,255,.85); font-weight: 550; }
.cta-points li::before { content: ""; position: absolute; left: 0; top: .3em; width: 17px; height: 17px; border-radius: 50%; background: rgba(255,255,255,.95) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A7D57' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat; }
.cta-demo { margin-top: 6px; }
.demo-note { margin-top: 12px; font-size: .82rem; color: rgba(255,255,255,.62); }

.lead-card { background: #fff; border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06); }
.lead-card h3 { font-size: 1.4rem; color: var(--ink); letter-spacing: -.02em; }
.lead-sub { color: var(--muted); margin: 8px 0 22px; font-size: .96rem; }
.field { margin-bottom: 15px; }
.field-row { display: grid; gap: 15px; }
.field label { display: block; font-size: .85rem; font-weight: 650; color: var(--ink-soft); margin-bottom: 6px; }
.field input { width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); transition: border-color .15s, box-shadow .15s; }
.field input:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(14,159,110,.12); background: #fff; }
.field input.invalid { border-color: var(--coral); }
.field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 40px 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background-color: var(--bg); cursor: pointer;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6770' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 13px;
  transition: border-color .15s, box-shadow .15s;
}
.field select:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(14,159,110,.12); background-color: #fff; }
.field select.invalid { border-color: var(--coral); }
/* muted look while the optional placeholder is selected (progressive enhancement) */
.field select:has(option[value=""]:checked) { color: var(--muted); }
.field-error { display: block; font-size: .8rem; color: var(--coral); margin-top: 5px; min-height: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-fineprint { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 12px; }
.form-success { margin-top: 16px; padding: 16px 18px; background: var(--emerald-tint); border: 1px solid var(--emerald); border-radius: var(--radius-sm); color: var(--emerald-dark); font-weight: 600; text-align: center; }
.form-success.is-error { background: #FEF2F2; border-color: #EF4444; color: #B91C1C; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--ink-soft); color: rgba(255,255,255,.7); padding: 24px 0 16px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { display: grid; gap: 14px 40px; align-items: center; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; }
.footer-brand .logo-mark { width: 24px; height: 24px; }
.footer-brand .brand-name { color: #fff; font-weight: 750; font-size: 1.02rem; }
.footer-tag { font-size: .86rem; color: rgba(255,255,255,.55); margin: 0; }
/* Goultra Peak mark sits inline inside the copyright line */
.footer-parent { color: inherit; text-decoration: none; transition: color .15s ease; white-space: nowrap; }
a.footer-parent:hover { color: rgba(255,255,255,.8); }
a.footer-parent:hover .footer-parent-mark { opacity: 1; }
/* nudged up ~.11em: vertical-align:middle centres on the x-height, which
   leaves the mark sitting slightly below the copyright text's centre */
.footer-parent-mark { display: inline-block; height: 14px; width: auto; opacity: .8; vertical-align: middle; position: relative; top: -.11em; margin-right: 6px; transition: opacity .15s ease; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .94rem; font-weight: 550; }
.footer-links a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 14px; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-legal-copy { display: block; line-height: 1.7; }

/* ── Legal pages ───────────────────────────────────────────── */
.legal { max-width: 760px; padding-top: 48px; padding-bottom: 64px; }
.legal-title { font-size: clamp(1.8rem, 4vw, 2.4rem); letter-spacing: -.03em; color: var(--ink); font-weight: 800; }
.legal-updated { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.legal-intro { margin-top: 18px; font-size: 1.08rem; color: var(--text); }
.legal-section { margin-top: 26px; }
.legal-section h2 { font-size: 1.15rem; color: var(--ink); letter-spacing: -.01em; margin-bottom: 8px; }
.legal-section p { color: var(--text); }
.legal-foot { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); }
.legal-foot a, .footer-legal a { color: var(--emerald-dark); font-weight: 600; }

/* ── Toast ─────────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(20px);
  width: min(440px, calc(100vw - 32px)); background: var(--ink); color: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px; z-index: 80;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s var(--ease);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast strong { font-size: .98rem; }
.toast span { font-size: .88rem; color: rgba(255,255,255,.72); }
.toast-cta { margin-top: 8px; font-weight: 700; color: var(--emerald-bright); align-self: flex-start; }

/* ═══════════════ Responsive ═══════════════ */
@media (min-width: 720px) {
  .pain .stat-row { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-cols { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 940px) {
  .nav, .header-actions { display: flex; }
  .nav-toggle { display: none; }
  .hero { padding: 70px 0 8px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 48px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .section { padding: 88px 0; }
}

@media (min-width: 1060px) {
  /* four pricing tiers side by side once there's room */
  .price-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* ── Motion / a11y ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 3px solid rgba(14,159,110,.5); outline-offset: 2px; border-radius: 6px; }

/* ── ROI calculator ── */
.roi-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow-sm); }
.roi-inputs { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; align-items:end; }
.roi-inputs label { display:flex; flex-direction:column; gap:5px; font-size:.82rem; font-weight:650; color:var(--ink); }
.roi-help { font-size:.72rem; font-weight:500; color:var(--muted); line-height:1.25; margin-bottom:3px; }
.roi-inputs input { width:100%; font:inherit; font-size:1rem; font-weight:700; padding:11px 12px; border:1px solid var(--line); border-radius:var(--radius-sm); background:var(--bg); color:var(--ink); }
.roi-inputs input:focus { outline:none; border-color:var(--emerald); box-shadow:0 0 0 3px rgba(14,159,110,.12); background:#fff; }
.roi-field { display:flex; align-items:center; border:1px solid var(--line); border-radius:var(--radius-sm); background:var(--bg); overflow:hidden; }
.roi-field:focus-within { border-color:var(--emerald); box-shadow:0 0 0 3px rgba(14,159,110,.12); background:#fff; }
.roi-field input { border:0; background:transparent; box-shadow:none; }
.roi-field input:focus { box-shadow:none; }
.roi-prefix, .roi-suffix { padding:0 4px 0 11px; color:var(--muted); font-weight:700; }
.roi-suffix { padding:0 11px 0 4px; }
.roi-out { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:24px; padding-top:24px; border-top:1px solid var(--line-soft); text-align:center; }
.roi-metric { display:flex; flex-direction:column; gap:4px; }
.roi-num { font-size:clamp(1.5rem,4vw,2.1rem); font-weight:800; letter-spacing:-.02em; color:var(--ink); }
.roi-net .roi-num { color:var(--emerald-dark); }
.roi-net.neg .roi-num { color:var(--coral); }
.roi-lbl { font-size:.8rem; color:var(--muted); font-weight:600; }
.roi-note { margin-top:16px; font-size:.85rem; color:var(--muted); }

/* ── Founding program ── */
.founding-card { background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:40px; text-align:center; }
.founding-card .kicker { color:var(--emerald-bright); }
.founding-title { font-size:clamp(1.6rem,3.8vw,2.3rem); font-weight:800; letter-spacing:-.03em; margin-top:10px; line-height:1.14; }
.founding-body { margin:16px auto 0; max-width:560px; color:rgba(255,255,255,.78); font-size:1.05rem; }
.founding-measures-title { margin-top:26px; font-weight:700; font-size:.9rem; color:rgba(255,255,255,.9); }
.founding-measures { list-style:none; padding:0; margin:14px 0 0; display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.founding-measures li { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:999px; padding:8px 16px; font-size:.9rem; font-weight:600; }
.founding-close { margin-top:24px; font-size:1.05rem; font-weight:650; }
.founding-actions { margin-top:22px; }
.founding-referral { margin-top:20px; font-size:.92rem; color:rgba(255,255,255,.72); }

@media (max-width:720px) {
  .roi-inputs { grid-template-columns:repeat(2,1fr); }
  .roi-out { grid-template-columns:1fr; gap:20px; }
  .founding-card { padding:28px 20px; }
}

/* ── Vertical landing pages ── */
.vhero { max-width:720px; margin:0 auto; text-align:center; padding:24px 0 8px; }
.vhero .hero-sub { margin-left:auto; margin-right:auto; }
.vhero .hero-ctas { justify-content:center; }
.does-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.does-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px; box-shadow:var(--shadow-sm); }
.does-t { font-size:1.1rem; font-weight:750; color:var(--ink); }
.does-d { margin-top:8px; color:var(--muted); font-size:.96rem; }
@media (max-width:820px) { .does-grid { grid-template-columns:1fr; } }

/* ── Footer vertical links (homepage) ── */
.footer-verticals { display:flex; flex-wrap:wrap; align-items:center; gap:14px; }
.footer-verticals-label { font-size:.82rem; color:var(--muted); font-weight:650; }
.footer-verticals a { font-size:.86rem; color:var(--muted); font-weight:550; }
.footer-verticals a:hover { color:var(--emerald-dark); }

/* ── Header industries dropdown ── */
.nav-drop { position:relative; display:inline-flex; align-items:center; }
.nav-drop-btn { font:inherit; font-weight:550; font-size:.95rem; color:var(--muted); background:none; border:0; cursor:pointer; padding:0; display:inline-flex; align-items:center; gap:5px; }
.nav-drop-btn:hover { color:var(--ink); }
.nav-caret { transition:transform .18s var(--ease); }
.nav-drop:hover .nav-caret, .nav-drop:focus-within .nav-caret { transform:rotate(180deg); }
.nav-drop-menu { position:absolute; top:100%; left:50%; transform:translateX(-50%); margin-top:14px; background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow); padding:8px; min-width:210px; display:none; z-index:60; }
.nav-drop-menu::before { content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display:block; }
.nav-drop-menu a { display:block; padding:9px 12px; border-radius:8px; font-size:.92rem; font-weight:550; color:var(--text); white-space:nowrap; }
.nav-drop-menu a:hover { background:var(--bg-alt); color:var(--emerald-dark); }
.mobile-nav-label { padding:12px 6px 4px; font-size:.72rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--muted); }

/* ── Vertical capabilities line ── */
.vcaps { margin-top:26px; text-align:center; color:var(--muted); font-size:.98rem; font-weight:500; line-height:1.6; }
.vcaps strong { color:var(--emerald-dark); font-weight:700; }

/* ── Vertical customer proof ────────────────────────────────── */
.vcust {
  display:flex; align-items:center; gap:36px;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px 40px; box-shadow:var(--shadow-sm); margin:0;
}
.vcust-logo {
  flex:none; width:172px; height:172px;
  display:flex; align-items:center; justify-content:center;
  border-radius:var(--radius); background:var(--bg-alt); border:1px solid var(--line-soft);
}
.vcust-logo img { width:80%; height:80%; object-fit:contain; }
.vcust-body { flex:1; min-width:0; }
.vcust-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.82rem; font-weight:650; letter-spacing:.02em;
  color:var(--emerald-dark); background:var(--emerald-tint);
  padding:6px 13px; border-radius:999px; margin-bottom:16px;
}
.vcust-quote {
  font-size:1.16rem; line-height:1.5; color:var(--ink);
  font-weight:500; letter-spacing:-.01em; margin:0 0 18px;
}
.vcust-points { margin:0 0 18px; }
.vcust-name { font-weight:750; color:var(--ink); font-size:1rem; }
@media (max-width:760px) {
  .vcust { flex-direction:column; text-align:center; gap:24px; padding:28px 22px; }
  .vcust-logo { width:150px; height:150px; }
  .vcust-quote { font-size:1.06rem; }
  .vcust-points { width:fit-content; margin-left:auto; margin-right:auto; text-align:left; }
}
