/* ============================================================
   Lead With Real - shared stylesheet
   v2 brand refresh - Cooper* (free Cooper Black revival) + Lato
   Theme tokens live on :root and [data-theme="dark"]
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;700;900&display=swap');

@font-face {
  font-family: 'Cooper';
  src: url('fonts/Cooper-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cooper';
  src: url('fonts/Cooper-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cooper';
  src: url('fonts/Cooper-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cooper';
  src: url('fonts/Cooper-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}@font-face {
  font-family: 'Cooper';
  src: url('fonts/Cooper-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Light theme (default) - warm cream from the new brand kit */
  --bg: #F6F1E4;
  --bg-alt: #FFFFFF;
  --bg-inverse: #2B2A28;
  --text: #262521;
  --text-muted: #6B675E;
  --text-inverse: #F6F1E4;
  --accent: #9E32A5;
  --accent-soft: rgba(158, 50, 165, 0.12);
  --cta-bg: #D897E0;
  --cta-text: #262521;
  --cta-bg-hover: #C87ED4;
  --card-border: #E4DDCB;
  --card-bg: #FFFFFF;
  --divider: #E4DDCB;
  --shadow: rgba(38, 37, 33, 0.08);

  /* Brand accent set - used per-pillar / per-context, not all at once.
     Exact hex values from the brand kit reference - same in both themes. */
  --brand-lavender: #E4AAE8;
  --brand-yellow: #E8DD90;
  --brand-pink: #E8BBAA;
  --brand-sage: #97D0A3;
  --brand-blue: #97AED0;
  --brand-charcoal: #5E5E5E;
  --brand-cream: #F6F1E4;

  --font-display: 'Cooper', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Panel background for pillars/familiar/ticker - now theme-aware instead
     of being forced dark at all times. */
  --panel-bg: var(--bg);

  --radius-sm: 8px;
  --radius-md: 14px;
  --max-width: 1120px;

  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #1B1A18;
  --bg-alt: #232220;
  --bg-inverse: #F6F1E4;
  --text: #F0ECE1;
  --text-muted: #A8A399;
  --text-inverse: #262521;
  --accent: #E0A8E6;
  --accent-soft: rgba(224, 168, 230, 0.16);
  --cta-bg: #D897E0;
  --cta-text: #262521;
  --cta-bg-hover: #E0A8E6;
  --card-border: #35332F;
  --card-bg: #232220;
  --divider: #35332F;
  --shadow: rgba(0, 0, 0, 0.4);

  /* Force the panel dark in dark mode, matching the site's near-black
     theme rather than the lighter --bg-alt. Brand accents stay the same
     exact hex values as light mode - see :root. */
  --panel-bg: #141312;

  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--text);
}

p { margin: 0; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Top bar / nav ---------- */
.topbar {
  background: var(--bg-inverse);
  color: var(--text-inverse);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { text-decoration: underline; }

nav.mainnav {
  border-bottom: 1px solid var(--divider);
  background: var(--bg);
}
nav.mainnav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.brand-stack {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.06;
  text-align: left;
  border-right: 2px solid currentColor;
  padding-right: 12px;
  display: inline-block;
}
.brand-stack .brand-accent { color: var(--accent); }
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13.5px;
  color: var(--text-muted);
  list-style: none;
  margin: 0;
  padding: 0;
}
.navlinks a:hover { color: var(--text); }
@media (max-width: 760px) {
  .navlinks { display: none; }
}

/* ---------- Theme toggle ---------- */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.theme-toggle svg { width: 18px; height: 18px; stroke: var(--text); }
.theme-toggle:hover { border-color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}
.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-primary:hover { background: var(--cta-bg-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.hero .btn-primary:hover { background: var(--brand-yellow); color: #262521; }
.btn-outline {
  background: transparent;
  border-color: var(--cta-bg);
  color: var(--text);
}
[data-theme="dark"] .btn-outline { border-color: var(--cta-bg); color: var(--text); }
.btn-outline:hover { background: var(--brand-yellow); border-color: var(--brand-yellow); color: #262521; }
.btn-sm { padding: 12px 20px; font-size: 14.5px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 76px;
  text-align: center;
  background: linear-gradient(180deg, #EFE8D6 0%, #F6F1E4 60%);
}
[data-theme="dark"] .hero {
  background: radial-gradient(ellipse at top, #2B2A28 0%, #1B1A18 65%);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 900;
  max-width: 900px;
  margin: 0 auto 16px;
}
.hero p.lede {
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 18px;
  color: var(--text-muted);
}

/* ---------- Stat carousel ---------- */
.stat-carousel {
  max-width: 720px;
  margin: -40px auto 0;
  padding: 48px 40px;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px var(--shadow);
  position: relative;
  z-index: 2;
}
.stat-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.42;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 20px;
}
.stat-attr { color: var(--accent); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; margin-bottom: 26px; }

.mini-stats { position: relative; height: 84px; }
.stat-slide {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.stat-slide.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--text); }
.stat-label { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }
.carousel-dots span { width: 22px; height: 4px; border-radius: 2px; background: var(--divider); transition: background 0.2s; }
.carousel-dots span.active { background: var(--accent); }

/* ---------- Video placeholder ---------- */
.video-card {
  max-width: 900px;
  margin: 40px auto;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  background: var(--bg-alt);
}
.video-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 26px;
  color: var(--text-muted);
}
.play-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-circle:hover { transform: scale(1.06); }
.play-circle svg { width: 20px; height: 20px; fill: var(--accent); }
.video-title { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.video-sub { font-size: 18px; color: var(--text-muted); }

/* ---------- Panel section (pillars, familiar) - now theme-aware ---------- */
.section-dark {
  background: var(--panel-bg);
  color: var(--text);
  padding: 52px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pillar h3 {
  color: var(--text);
  font-size: 24px;
  margin-bottom: 0;
}
.pillar .pillar-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 24px;
  line-height: 1.28;
  display: block;
  min-height: 2.6em;
  margin-bottom: 14px;
}
.pillar p { color: var(--text-muted); font-size: 18px; }
.pillar-voice .pillar-sub { color: var(--brand-lavender); }
.pillar-thought .pillar-sub { color: var(--brand-yellow); }
.pillar-ground .pillar-sub { color: var(--brand-sage); }

.pillars-head { color: var(--text); text-align: center; font-size: 32px; margin-bottom: 12px; }
.pillars-intro { color: var(--text-muted); text-align: center; max-width: 620px; margin: 0 auto 40px; font-size: 17px; }
.pillar-link { display: inline-block; margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--brand-sage); }
.pillar-link:hover { text-decoration: underline; }

.section-dark.familiar h2 { color: var(--text); text-align: center; margin-bottom: 26px; font-size: 32px; }
.familiar-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.familiar-item { display: flex; gap: 14px; }
.familiar-item .star { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.familiar-item p { color: var(--text-muted); font-size: 18px; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--panel-bg);
  border-top: 1px solid var(--divider);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.ticker-track span { margin: 0 20px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Research cards ---------- */
.section { padding: 56px 0; }
.section-title { text-align: center; font-size: 34px; margin-bottom: 30px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.card-tag { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { font-size: 18px; }
.card .read-link { display: inline-block; margin-top: 16px; font-size: 13.5px; color: var(--accent); font-weight: 600; }

/* ---------- Logos ---------- */
.logos-eyebrow { text-align: center; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.logos-title { text-align: center; font-size: 32px; margin-bottom: 32px; }
.logos-title em { color: var(--accent); font-style: italic; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--card-border);
}
.logo-cell {
  border: 1px solid var(--card-border);
  aspect-ratio: 1.6/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8C8C86;
  overflow: hidden;
  transition: background 0.2s ease;
}
.logo-cell:hover { background: #A8A8A2; }
.logo-cell img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  margin: auto;
  display: block;
}

/* Explicit column tiers keep the bordered grid looking tidy (12 items) rather
   than relying on auto-fit, which can leave a ragged last row. */
@media (max-width: 900px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-cell { aspect-ratio: 1.4/1; }
}
@media (max-width: 600px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cell { aspect-ratio: 1.3/1; }
}
@media (max-width: 380px) {
  .logo-cell { aspect-ratio: 1.1/1; }
}

/* ---------- Pricing ---------- */
.pricing-head { text-align: center; margin-bottom: 32px; }
.pricing-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 2px solid var(--card-border);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.pricing-avatar:hover { filter: brightness(1.15); transform: scale(1.02); }
.pricing-head h2 { font-size: 34px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.popular {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.popular-tag {
  position: absolute;
  top: -12px; right: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.price-card h3 { font-size: 20px; margin-bottom: 14px; }
.price-old { text-decoration: line-through; color: var(--text-muted); font-size: 15px; margin-right: 8px; }
.price-new { font-family: var(--font-display); font-size: 26px; color: var(--accent); font-weight: 700; }
.price-card p.desc { font-size: 18px; margin: 16px 0 24px; flex-grow: 1; }
.price-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Newsletter ---------- */
.newsletter-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.newsletter-box .formkit-powered-by-convertkit-container { display: none !important; }
.field-row { display: flex; gap: 10px; margin-bottom: 12px; }
input[type="text"], input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.chip-row { display: flex; gap: 8px; margin-bottom: 18px; }
.chip {
  flex: 1;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  background: var(--bg);
  font-weight: 600;
}
.chip.selected { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.newsletter-box .btn { width: 100%; justify-content: center; }
.fine-print { font-size: 11.5px; color: var(--text-muted); margin-top: 12px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--divider);
  padding: 40px 0;
  font-size: 13px;
  color: var(--text-muted);
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- Case for Visibility hero ---------- */
.cfv-hero {
  background: var(--panel-bg);
  color: var(--text);
  padding: 84px 0 68px;
  text-align: center;
  border-bottom: 1px solid var(--divider);
}
.cfv-hero .hero-eyebrow { color: var(--brand-yellow); margin-bottom: 20px; }
.cfv-hero h1 { color: var(--text); font-weight: 900; font-size: clamp(40px, 6.5vw, 72px); max-width: 820px; margin: 0 auto 18px; }
.cfv-hero p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 18px; }

.section-inverse {
  background: var(--bg);
  color: var(--text);
  padding: 52px 0;
}
.section-inverse .section-eyebrow { color: var(--brand-yellow); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.section-inverse h2.big { color: var(--text); font-size: 34px; margin-bottom: 28px; max-width: 700px; }
.cards-3.mixed { grid-template-columns: 1.4fr 1.4fr 1fr; }

.cfv-closing {
  background: var(--bg-alt);
  color: var(--text);
  padding: 70px 0;
  text-align: center;
}
.cfv-closing h2 { color: var(--text); font-weight: 900; font-size: clamp(30px, 4.5vw, 46px); max-width: 780px; margin: 0 auto 20px; }
.cfv-closing p { color: var(--text-muted); font-size: 18px; margin-bottom: 34px; }
.cfv-closing .btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cfv-closing .btn-outline { border-color: var(--accent2, var(--accent)); color: var(--text); }
.page-visibility .cfv-closing .btn-primary:hover {
  background: var(--brand-yellow);
  color: #262521;
}

/* ---------- RealGround page components ---------- */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ground-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  color: var(--text);
  font-size: 16.5px;
}

.sound-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.sound-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: var(--card-bg);
}
.sound-play {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sound-play svg { width: 14px; height: 14px; fill: var(--accent); }
.sound-body { flex: 1; }
.sound-title { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.sound-bar { height: 3px; background: var(--divider); border-radius: 2px; position: relative; }
.sound-bar::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--accent); border-radius: 2px; }

.client-logos-text { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.client-logos-text span {
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.testi-pair { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.testi-pair blockquote { font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.5; margin: 0 0 22px; color: var(--text); }
.testi-pair cite { display: block; font-style: normal; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 24px; }
.testi-pair img { width: 100%; border-radius: var(--radius-md); object-fit: cover; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 30px; }
.testi-card { border-left: 2px solid var(--accent); padding-left: 18px; }
.testi-card p { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--text); margin-bottom: 10px; }
.testi-card cite { font-style: normal; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; margin-bottom: 10px; }
.process-step .num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display); font-style: italic; color: var(--accent); font-size: 18px;
}
.process-step p { font-size: 15.5px; }

@media (max-width: 760px) {
  .cards-2, .testi-pair, .testi-grid, .process-steps { grid-template-columns: 1fr; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .pillars, .cards-3, .cards-3.mixed { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .field-row { flex-direction: column; }
  .hero { padding: 52px 0 56px; }
  .section { padding: 40px 0; }
  .section-dark, .section-inverse { padding: 40px 0; }
  .cfv-hero { padding: 64px 0 56px; }
  .cfv-closing { padding: 56px 0; }
  .video-card { margin: 28px auto; padding: 32px 18px; }
  .section-title, .logos-title, h2.big { font-size: 26px; margin-bottom: 24px; }
  .wrap { padding: 0 18px; }
}

@media (max-width: 620px) {
  .pillars, .cards-3, .cards-3.mixed { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .stat-quote { font-size: 19px; }
  .stat-number { font-size: 38px; }
  .pricing-avatar { width: 100px; height: 100px; }
  footer .wrap { flex-direction: column; text-align: left; gap: 8px; }
  .cfv-closing .btn-row { flex-direction: column; }
  .cfv-closing .btn-row .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
