/* Consent Leads - conversion-first design system v4 (2026-05-19 black-and-white)
   White background, near-black ink, monochrome (black accent, no colour).
   One font: Inter.
   Premium feel via: generous spacing, confident type, motion, subtle textures. */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F7F5;          /* neutral grey-white */
  --bg-tint: #F4F4F2;          /* neutral light grey for hero accents */
  --bg-dark: #0A0A09;          /* slightly deeper for richer contrast */
  --ink: #0A0A09;
  --ink-2: #3F3F3D;
  --ink-3: #6B6B68;
  --ink-4: #9A9A95;            /* placeholder grey */
  --line: rgba(10, 10, 9, 0.07);
  --line-strong: rgba(10, 10, 9, 0.14);
  --accent: #0A0A09;           /* black - monochrome scheme */
  --accent-hover: #333330;     /* dark-grey lift for hover on black buttons */
  --accent-soft: #F0F0EE;      /* light grey for pills / eyebrow backgrounds */
  --accent-tint: rgba(10, 10, 9, 0.05);
  --green: #0A0A09;            /* alias kept so existing classes resolve - now black */
  --shadow-xs: 0 1px 2px rgba(10, 10, 9, 0.04);
  --shadow-sm: 0 2px 6px rgba(10, 10, 9, 0.05);
  --shadow-md: 0 6px 20px rgba(10, 10, 9, 0.07);
  --shadow-lg: 0 20px 60px rgba(10, 10, 9, 0.10);
  --shadow-glow: 0 0 0 1px var(--accent-soft), 0 12px 32px rgba(10, 10, 9, 0.10);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'ss01', 'cv11', 'cv02', 'cv03', 'cv04';  /* nicer 'a', 'g', '1' etc. */
  font-variant-ligatures: common-ligatures contextual;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease-out); }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 960px) {
  .container, .container-narrow { padding: 0 24px; }
}
section { padding: 120px 0; position: relative; }
@media (max-width: 700px) {
  .container, .narrow { padding: 0 20px; }
  section { padding: 72px 0; }
}

/* ---------- Motion ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  animation: fade-up 0.7s var(--ease-out) both;
}
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.25s; }
.reveal-4 { animation-delay: 0.35s; }
.reveal-5 { animation-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-1, .reveal-2, .reveal-3, .reveal-4, .reveal-5 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Background textures ---------- */
.bg-dotted {
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 10, 9, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
}
.bg-noise {
  position: relative;
}
.bg-noise::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* Nav */
.nav {
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.028em;
  color: var(--ink);
  transition: opacity 0.2s var(--ease-out);
}
.logo:hover { opacity: 0.75; }
.logo .mark { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--accent); }

/* Products dropdown */
.nav-item { position: relative; }
.nav-item .nav-toggle {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-item .nav-toggle:hover { color: var(--ink); }
.nav-item .nav-toggle .caret {
  font-size: 10px;
  transition: transform 0.15s ease;
}
.nav-item:hover .nav-toggle .caret,
.nav-item:focus-within .nav-toggle .caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 360px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  transition: background 0.1s ease;
}
.nav-dropdown a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-dropdown a strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.nav-dropdown a strong .price {
  color: var(--accent);
  font-weight: 600;
  margin-left: 6px;
}
.nav-dropdown a span {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}
.nav-dropdown .divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}
@media (max-width: 900px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta):not(.nav-mobile-keep) { display: none; }
  .nav-item { display: none; }
}

/* Hero */
.hero {
  padding: 40px 0 72px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* Subtle dotted texture top-right, fades out toward centre. Reads as "designed". */
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 10, 9, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 100% 0%, black 30%, transparent 70%);
          mask-image: radial-gradient(ellipse 80% 80% at 100% 0%, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  /* Very soft grey tint behind the right-hand tier cards. */
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, var(--accent-tint) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 700px) {
  .hero { padding: 32px 0 56px; }
}
.hero-text { animation: fade-up 0.8s var(--ease-out) both; }
.hero-tiers { animation: fade-up 0.8s var(--ease-out) 0.15s both; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  border: 1px solid rgba(10, 10, 9, 0.12);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(10, 10, 9, 0.18);
  animation: fade-in 1.2s var(--ease-out) both;
}
.hero h1 {
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 700;
  letter-spacing: -0.034em;
  line-height: 1.02;
  margin-bottom: 26px;
  color: var(--ink);
}
.hero h1 .accent { color: var(--accent); }
.hero .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 58ch;
  margin-bottom: 36px;
  line-height: 1.55;
}

/* Hero tier preview column */
.hero-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-tier {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-tier:hover {
  border-color: rgba(10, 10, 9, 0.3);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.hero-tier.featured {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, #FFFFFF 0%, #F4F4F2 100%);
  box-shadow: 0 8px 24px rgba(10, 10, 9, 0.10);
}
.hero-tier.featured:hover {
  box-shadow: 0 14px 36px rgba(10, 10, 9, 0.18);
  transform: translateX(6px);
}
.ht-left { display: flex; flex-direction: column; gap: 4px; }
.ht-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ht-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ht-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.ht-price {
  text-align: right;
  flex-shrink: 0;
}
.ht-price .big {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.ht-price .unit {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 4px;
  display: block;
}
.hero-tier .arrow {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.15s ease;
}
.hero-tier:hover .arrow { transform: translateX(3px); }
@media (max-width: 480px) {
  .hero-tier {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  .hero-tier .arrow { display: none; }
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(10, 10, 9, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  letter-spacing: -0.005em;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 10, 9, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out),
              transform 0.15s var(--ease-out);
  letter-spacing: -0.005em;
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
  transform: translateY(-2px);
}
.btn-secondary:active { transform: translateY(0); }
.btn-dark {
  background: var(--ink);
  color: var(--bg);
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}
.btn-dark:hover { background: var(--accent); }
.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-meta {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-3);
}
.cta-meta strong { color: var(--ink); font-weight: 600; }

/* Trust bar / stats */
.trust-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.trust-item .num {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.028em;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-item .label {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}

/* Section heads */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  position: relative;
  padding-left: 22px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1.5px;
  background: var(--accent);
  transform: translateY(-50%);
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 28ch;
  color: var(--ink);
}
.section-title .accent { color: var(--accent); }
.section-lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 64ch;
  margin-bottom: 56px;
  line-height: 1.6;
}
.section-head-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 40px;
}
.section-head-row .section-title,
.section-head-row .section-lede { margin-bottom: 0; }
.section-head-row .section-lede { max-width: none; }
@media (max-width: 800px) {
  .section-head-row { grid-template-columns: 1fr; gap: 16px; }
}

/* Service cards */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service::before {
  /* Subtle accent line at top, only visible on hover. */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.service:hover {
  border-color: rgba(10, 10, 9, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.service:hover::before { transform: scaleX(1); }
.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.service h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.service p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-bottom: 16px;
}
.service-price .num { color: var(--accent); }
.service-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}
.service-link:hover { color: var(--accent-hover); }

/* Process / how it works */
.process-bg {
  background: var(--bg-soft);
  position: relative;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process { grid-template-columns: 1fr; } }
.step {
  background: var(--bg);
  padding: 32px 26px;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
  position: relative;
}
.step:hover {
  border-color: rgba(10, 10, 9, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(10, 10, 9, 0.3);
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin-bottom: 10px;
}
.step p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Why list */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.why-list {
  list-style: none;
}
.why-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
}
.why-list li:first-child { padding-top: 0; }
.why-list li:last-child { border-bottom: none; }
.check-box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-box svg { width: 14px; height: 14px; stroke: var(--accent); }
.why-list strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.why-list span {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

/* Pull quote */
.pull-quote {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(10, 10, 9, 0.12) 0%, transparent 50%),
    var(--bg-dark);
  color: var(--bg);
  padding: 56px 48px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 120px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}
.pull-quote .q {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  position: relative;
}
.pull-quote .who {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 600;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(10, 10, 9, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(10, 10, 9, 0.10) 0%, transparent 50%),
    var(--bg-dark);
  color: var(--bg);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  /* Subtle noise texture for depth. */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.6;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.08;
  max-width: 24ch;
  margin: 0 auto 18px;
  color: var(--bg);
}
.cta-band h2 .accent { color: var(--accent); }
.cta-band .sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 36px;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 80px 0 40px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-col h5 {
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a {
  transition: color 0.2s var(--ease-out);
}
.foot-col a:hover { color: var(--accent); }
.foot-col p { max-width: 32ch; line-height: 1.65; }
.foot-base {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
footer .logo { color: var(--bg); font-size: 20px; }
footer .logo .mark { color: var(--accent); }
.foot-base .logo { color: var(--bg); font-size: 14px; font-weight: 600; }

/* Pricing tiers */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
@media (max-width: 560px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              transform 0.25s var(--ease-out);
  position: relative;
}
.tier:hover {
  border-color: rgba(10, 10, 9, 0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.tier.featured {
  border: 2px solid var(--accent);
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-tint) 100%);
  box-shadow: 0 12px 40px rgba(10, 10, 9, 0.12);
}
.tier.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10, 10, 9, 0.18);
}
.tier.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(10, 10, 9, 0.3);
}
.tier-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.tier h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.tier-blurb {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.tier-price {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: 24px;
}
.tier-price .big {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-price .unit {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 6px;
}
.tier-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.tier-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-cta {
  background: var(--accent);
  color: white !important;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: background 0.15s ease;
}
.tier-cta:hover { background: var(--accent-hover); }
.tier-cta.alt {
  background: var(--bg);
  color: var(--ink) !important;
  border: 1.5px solid var(--line-strong);
}
.tier-cta.alt:hover { border-color: var(--ink); background: var(--bg-soft); }

/* Add-ons */
.addons {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 700px) { .addon-grid { grid-template-columns: 1fr; } }
.addon {
  background: var(--bg);
  padding: 22px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.addon-name { font-weight: 600; font-size: 16px; }
.addon-desc { color: var(--ink-2); font-size: 14px; margin-top: 4px; }
.addon-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

/* Terms strip */
.terms-strip {
  background: var(--bg-dark);
  color: var(--bg);
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 700px) { .terms-grid { grid-template-columns: 1fr; gap: 24px; } }
.term h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.term p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

/* FAQ */
details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  transition: opacity 0.2s var(--ease-out);
}
details[open] {
  opacity: 1;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.018em;
  gap: 24px;
  color: var(--ink);
  transition: color 0.2s var(--ease-out);
}
details summary:hover { color: var(--accent); }
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  color: var(--ink-2);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 60ch;
}

/* Page head */
.page-head {
  padding: 40px 0 56px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  animation: fade-up 0.7s var(--ease-out) both;
}
.page-head::before {
  /* Subtle dotted accent in the top-right of inner pages, matches hero */
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 10, 9, 0.05) 1px, transparent 0);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 100% 0%, black 20%, transparent 70%);
          mask-image: radial-gradient(ellipse 70% 80% at 100% 0%, black 20%, transparent 70%);
  pointer-events: none;
}
.page-head > .container { position: relative; z-index: 1; }
.page-head h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.034em;
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 26ch;
}
.page-head h1 .accent { color: var(--accent); }
.page-head .lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 64ch;
  line-height: 1.6;
}

/* Pills (clinics page) */
.pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.pill {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pill .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* Math band */
.math-band {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 56px 0;
}
.math-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 700px) { .math-grid { grid-template-columns: 1fr; gap: 24px; } }
.math-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.math-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}
.math-foot {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 32px;
}

/* Capabilities */
.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .caps { grid-template-columns: 1fr; } }
.cap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cap:hover { border-color: var(--accent); transform: translateY(-2px); }
.cap-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.cap h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.cap p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 48px;
  max-width: 720px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
}
.t-item {
  position: relative;
  padding: 12px 0 28px;
}
.t-item::before {
  content: '';
  position: absolute;
  left: -42px;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
}
.t-item .t-day {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.t-item h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.t-item p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
}

/* Offer card */
.offer-card {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 48px 40px;
  border-radius: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.offer-card .label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.offer-card h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-bottom: 24px;
}
@media (max-width: 600px) { .offer-grid { grid-template-columns: 1fr; gap: 16px; } }
.offer-line .big {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.offer-line .unit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}
.offer-terms {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}
.offer-terms strong { color: var(--bg); font-weight: 600; }
.offer-card .btn-primary {
  background: var(--accent);
  width: 100%;
  justify-content: center;
}

/* ---------- Scope-request form ---------- */
.scope-form,
.scope-form * { box-sizing: border-box; }

.scope-form {
  display: block;
  max-width: 520px;
  width: 100%;
  margin: 36px auto 0;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  text-align: left;
  position: relative;
}

.scope-form .honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.scope-form .field {
  display: block;
  margin-bottom: 16px;
}
.scope-form .field:last-of-type { margin-bottom: 0; }

.scope-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.scope-form input[type="email"],
.scope-form input[type="text"],
.scope-form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  outline: none;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}
.scope-form textarea {
  min-height: 112px;
  font-family: inherit;
}
.scope-form input::placeholder,
.scope-form textarea::placeholder {
  color: rgba(255,255,255,0.40);
}
.scope-form input:hover,
.scope-form textarea:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}
.scope-form input:focus,
.scope-form textarea:focus {
  background: rgba(255,255,255,0.09);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10, 10, 9, 0.28);
}

.scope-form .scope-submit {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .15s ease, transform .05s ease;
}
.scope-form .scope-submit:hover { background: var(--accent-hover); }
.scope-form .scope-submit:active { transform: translateY(1px); }
.scope-form .scope-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.scope-form .form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.scope-form .form-meta a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 1px;
}
.scope-form .form-meta a:hover { border-bottom-color: var(--accent); }
.scope-form .copy-email {
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 6px;
  padding: 3px 10px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}
.scope-form .copy-email:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}

.scope-form .form-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  text-align: center;
}
.scope-form .form-status a { color: var(--accent); border-bottom: 1px solid var(--accent); }

@media (max-width: 540px) {
  .scope-form { padding: 22px 18px; }
}

/* ---------- Proof band (above CTA) ---------- */
.proof-band {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-band .section-title,
.proof-band .section-eyebrow,
.proof-band .section-lede {
  text-align: center;
}
.proof-band .section-lede { max-width: 620px; margin: 0 auto 40px; }

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 56px;
  max-width: 900px;
}
.proof-logos .plogo {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: -0.02em;
  opacity: 0.65;
  transition: opacity .15s ease, color .15s ease;
}
.proof-logos .plogo:hover { opacity: 1; color: var(--ink); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
}
.proof-card:hover {
  border-color: rgba(10, 10, 9, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.proof-q {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.proof-attr {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: auto;
}
.proof-attr a { color: var(--ink-2); border-bottom: 1px solid var(--line-strong); }

/* Cal.com secondary CTA on the dark band */
.contact-options { margin: 0 auto 8px; display: flex; justify-content: center; }
.btn-secondary.on-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color .15s ease, border-color .15s ease;
}
.btn-secondary.on-dark:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.30);
}
.btn-secondary.on-dark .btn-icon { color: var(--accent); font-weight: 700; }
