:root {
  --ink: #15213d;
  --ink-soft: #364162;
  --muted: #68718f;
  --paper: #fffdf8;
  --paper-2: #f6f3ec;
  --line: rgba(21, 33, 61, 0.12);
  --blue: #3457ff;
  --blue-dark: #2438a8;
  --aqua: #66d6c5;
  --lavender: #f3c7ff;
  --lilac: #e9ddff;
  --peach: #ffe1cf;
  --navy: #111936;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(21, 33, 61, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  transform: translateY(-200%);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 110px 0;
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(21, 33, 61, 0.08);
}

.nav-shell {
  width: min(1260px, calc(100% - 34px));
  margin: 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #2a2a78 58%, var(--blue));
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 35px rgba(52, 87, 255, 0.24);
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.98rem;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 25px rgba(21, 33, 61, 0.08);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    radial-gradient(circle at 83% 10%, rgba(102, 214, 197, 0.32), transparent 30%),
    linear-gradient(130deg, #eff4ff 0%, #dfe7ff 46%, #cdd8ff 100%);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.78;
  pointer-events: none;
}

.orb-one {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -120px;
  background: rgba(52, 87, 255, 0.18);
}

.orb-two {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: 70px;
  background: rgba(243, 199, 255, 0.46);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.hero-subtitle,
.narrow p,
.split-copy p,
.local-card p,
.cta-copy p {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions,
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 38px rgba(52, 87, 255, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(21, 33, 61, 0.14);
}

.button-secondary.dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(17, 25, 54, 0.18);
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(21, 33, 61, 0.12);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.48);
  font-weight: 800;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-card {
  position: relative;
  width: min(330px, 78vw);
  min-height: 610px;
  border: 12px solid #0d1028;
  border-radius: 46px;
  background: linear-gradient(180deg, #ffffff, #f4f6ff);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: auto -25% -18% -25%;
  height: 260px;
  background: radial-gradient(circle, rgba(52, 87, 255, 0.28), transparent 66%);
}

.phone-top {
  display: flex;
  justify-content: center;
  padding: 12px 0 0;
}

.phone-top span {
  width: 76px;
  height: 7px;
  border-radius: 999px;
  background: #0d1028;
  opacity: 0.72;
}

.phone-content {
  position: relative;
  z-index: 1;
  padding: 38px 26px 28px;
}

.phone-label {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.phone-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--blue), var(--aqua), var(--lavender), var(--blue));
  box-shadow: inset 0 0 0 26px #f4f6ff, 0 24px 50px rgba(52, 87, 255, 0.2);
}

.progress-ring span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(21, 33, 61, 0.12);
}

.phone-content ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.phone-content li {
  padding: 13px 14px;
  border: 1px solid rgba(21, 33, 61, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-weight: 800;
}

.ai-badge,
.mini-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(21, 33, 61, 0.14);
}

.ai-badge {
  top: 56px;
  right: 16px;
  max-width: 280px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.spark {
  color: var(--blue);
  margin-right: 6px;
}

.mini-card {
  display: grid;
  gap: 4px;
  width: 218px;
  padding: 18px;
  border-radius: 22px;
}

.mini-card span {
  color: var(--muted);
  font-weight: 700;
}

.mini-card-left {
  left: 0;
  bottom: 90px;
}

.mini-card-right {
  right: 0;
  bottom: 12px;
}

.signal-strip {
  padding: 28px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.feature-grid {
  display: grid;
  gap: 24px;
  margin-top: 54px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.step-card,
.quote-card,
.form-wrap,
.panel-card,
.accordion-card,
.local-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(21, 33, 61, 0.07);
}

.feature-card {
  padding: 32px;
  min-height: 260px;
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--lilac);
  color: var(--blue-dark);
  font-weight: 950;
}

.feature-card p,
.step-card p,
.quote-card p,
.panel-card li,
.footer-grid p,
.privacy-note,
.accordion-card p {
  color: var(--ink-soft);
}

.split-section {
  padding: 100px 0;
}

.soft-bg {
  background: linear-gradient(180deg, var(--paper-2), #ffffff);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 60px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.split-copy {
  max-width: 590px;
}

.accordion-card,
.panel-card {
  padding: 28px;
}

.accordion-card details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.accordion-card details:first-child {
  padding-top: 0;
}

.accordion-card details:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.accordion-card summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.accordion-card p {
  margin: 12px 0 0;
}

.panel-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #eff3ff 100%);
}

.panel-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 214, 197, 0.58), transparent 64%);
}

.panel-kicker {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--navy);
  font-size: 0.8rem;
}

.metrics-band {
  background: var(--navy);
  color: var(--white);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.metric-grid div {
  min-height: 150px;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-grid div:last-child {
  border-right: 0;
}

.metric-grid strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.step-card {
  padding: 26px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--navy);
  font-weight: 950;
}

.local-section {
  padding: 0 0 110px;
}

.local-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 38px;
  align-items: center;
  padding: 46px;
  background:
    radial-gradient(circle at 88% 10%, rgba(52, 87, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #fff, #f4f7ff);
}

.local-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.local-list span {
  display: inline-flex;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.testimonials {
  background: var(--paper-2);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) repeat(2, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.quote-intro {
  padding-right: 20px;
}

.text-link {
  color: var(--blue-dark);
  font-weight: 950;
}

.quote-card {
  padding: 28px;
  background: linear-gradient(145deg, #ffffff, #f6ecff);
}

.quote-card p {
  font-size: 1.18rem;
  font-weight: 800;
}

.quote-card span {
  color: var(--muted);
  font-weight: 900;
}

.cta-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(102, 214, 197, 0.22), transparent 26%),
    linear-gradient(135deg, var(--navy), #1a2451);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) repeat(2, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.cta-copy p,
.cta-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.form-wrap {
  padding: 28px;
  color: var(--ink);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0 14px;
  background: #fbfbff;
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(52, 87, 255, 0.16);
  border-color: rgba(52, 87, 255, 0.52);
}

.privacy-note {
  margin: 0;
  font-size: 0.84rem;
}

.site-footer {
  padding: 54px 0;
  background: #0c1024;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(180px, 0.7fr) minmax(240px, 0.8fr);
  gap: 36px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 10px;
  font-weight: 800;
}

.footer-grid p,
.footer-grid small {
  color: rgba(255, 255, 255, 0.66);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .local-card,
  .cta-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .three-up,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 40px;
    background: rgba(255, 253, 248, 0.98);
    font-size: 1.4rem;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section-pad,
  .split-section,
  .cta-section {
    padding: 78px 0;
  }

  .local-section {
    padding-bottom: 78px;
  }

  .metric-grid,
  .three-up,
  .steps-grid,
  .strip-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .metric-grid div:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-card {
    min-height: 520px;
  }

  .mini-card-left,
  .mini-card-right,
  .ai-badge {
    position: static;
    width: min(330px, 78vw);
    margin: 12px auto 0;
  }

  .hero-visual {
    display: block;
  }

  .phone-card {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand small {
    font-size: 0.73rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero-actions .button,
  .lead-form .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .local-card,
  .feature-card,
  .step-card,
  .quote-card,
  .form-wrap,
  .panel-card,
  .accordion-card {
    border-radius: 22px;
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Mobile polish patch: tighter hero, no horizontal overflow, compact phone mockup --- */
html,
body {
  overflow-x: hidden;
}

@media (max-width: 840px) {
  .site-header {
    position: sticky;
  }

  .nav-shell {
    height: 72px;
  }

  .nav-links {
    padding: 34px 24px;
  }

  .hero.section-pad {
    padding: 54px 0 62px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    max-width: 620px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 13vw, 4.4rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
  }

  .hero-subtitle {
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .hero-visual {
    min-height: auto;
    padding: 0 0 6px;
  }

  .phone-card {
    width: min(320px, 86vw);
    min-height: 500px;
    border-width: 10px;
    border-radius: 38px;
  }

  .phone-content {
    padding: 30px 20px 22px;
  }

  .phone-content h2 {
    font-size: 1.95rem;
    letter-spacing: -0.055em;
  }

  .progress-ring {
    width: 148px;
    height: 148px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 0 22px #f4f6ff, 0 18px 38px rgba(52, 87, 255, 0.18);
  }

  .progress-ring span {
    width: 38px;
    height: 38px;
  }

  .phone-content li {
    padding: 11px 12px;
    font-size: 0.93rem;
  }

  .ai-badge,
  .mini-card {
    width: min(320px, 86vw);
    max-width: none;
    margin-top: 10px;
    padding: 13px 15px;
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .mini-card {
    gap: 2px;
  }

  .strip-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    text-align: left;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .strip-grid span {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.72rem;
    letter-spacing: 0.01em;
  }

  .hero.section-pad {
    padding: 42px 0 52px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: clamp(2.72rem, 12.4vw, 3.45rem);
    line-height: 0.94;
    letter-spacing: -0.068em;
  }

  h2 {
    font-size: clamp(2rem, 9.6vw, 2.85rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-subtitle,
  .narrow p,
  .split-copy p,
  .local-card p,
  .cta-copy p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 20px;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
  }

  .trust-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-pills span {
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
    text-align: center;
  }

  .phone-card {
    width: min(292px, 88vw);
    min-height: 440px;
    border-width: 8px;
    border-radius: 34px;
  }

  .phone-top span {
    width: 62px;
    height: 6px;
  }

  .phone-content {
    padding: 24px 17px 18px;
  }

  .phone-label {
    font-size: 0.68rem;
  }

  .phone-content h2 {
    font-size: 1.68rem;
    margin-bottom: 16px;
  }

  .progress-ring {
    width: 124px;
    height: 124px;
    margin-bottom: 17px;
    box-shadow: inset 0 0 0 18px #f4f6ff, 0 14px 30px rgba(52, 87, 255, 0.16);
  }

  .progress-ring span {
    width: 32px;
    height: 32px;
  }

  .phone-content ul {
    gap: 9px;
  }

  .phone-content li {
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 0.86rem;
  }

  .ai-badge,
  .mini-card {
    width: min(292px, 88vw);
    padding: 11px 13px;
    font-size: 0.86rem;
  }

  .section-pad,
  .split-section,
  .cta-section {
    padding: 62px 0;
  }

  .local-section {
    padding-bottom: 62px;
  }

  .feature-grid,
  .steps-grid {
    margin-top: 32px;
  }

  .local-card,
  .feature-card,
  .step-card,
  .quote-card,
  .form-wrap,
  .panel-card,
  .accordion-card {
    padding: 22px;
  }

  .local-list span {
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .metric-grid div {
    min-height: 124px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.52rem;
  }

  .brand small {
    display: none;
  }

  .phone-card,
  .ai-badge,
  .mini-card {
    width: min(274px, 90vw);
  }
}

/* --- Desktop/tablet phone-preview cleanup: use the clean mobile-style stack for labels --- */
@media (min-width: 841px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    align-items: center;
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 0;
  }

  .phone-card {
    width: min(320px, 100%);
    min-height: 540px;
    margin: 0 auto;
  }

  .phone-content {
    padding-top: 34px;
  }

  .phone-content h2 {
    font-size: 2rem;
  }

  .progress-ring {
    width: 158px;
    height: 158px;
    margin-bottom: 22px;
  }

  .phone-content li {
    padding: 11px 12px;
  }

  .ai-badge,
  .mini-card,
  .mini-card-left,
  .mini-card-right {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(330px, 100%);
    max-width: 100%;
    margin: 0 auto;
  }

  .ai-badge {
    border-radius: 24px;
    line-height: 1.3;
  }
}
