:root {
  --bg: #ffffff;
  --bg-soft: #f3f8fd;
  --bg-blue: #edf5fb;
  --navy: #062553;
  --navy-2: #0a356f;
  --text: #14335f;
  --muted: #60718f;
  --border: #dbe7f2;
  --blue: #2e7df6;
  --blue-dark: #1e62cf;
  --blue-cta: #2a6cd6;
  --blue-cta-dark: #1a52ab;
  --green: #268049;
  --green-dark: #1c6b3c;
  --shadow: 0 18px 46px rgba(11, 47, 91, 0.12);
  --shadow-soft: 0 10px 28px rgba(11, 47, 91, 0.08);
  --radius: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.has-sticky-cta {
  padding-bottom: 88px;
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
details:focus-within summary {
  outline: 3px solid var(--blue-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--navy);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 242, 0.9);
  backdrop-filter: blur(14px);
  transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(11, 47, 91, 0.1);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
}

.brand {
  font-size: clamp(0.98rem, 4vw, 1.2rem);
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.brand-mark svg,
.phone-icon svg,
.hero-badge svg,
.button svg,
.icon-shell svg,
.large-call-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 11px;
  color: var(--navy);
  background: #f7fbff;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.phone-icon {
  color: var(--green);
}

.call-copy {
  display: none;
}

.call-copy strong,
.call-copy small {
  display: block;
}

.call-copy strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.call-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.1;
}

.mobile-call-label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 28px;
  background:
    radial-gradient(circle at 95% 10%, rgba(46, 125, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

/* Soft ambient "aurora" blobs behind the hero content. Purely decorative
   (pointer-events: none), disabled entirely under reduced motion via the
   global animation:none override below. */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: auroraFloat 17s ease-in-out infinite;
}

.aurora-blob-a {
  top: -140px;
  right: -90px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(46, 125, 246, 0.32), transparent 70%);
}

.aurora-blob-b {
  bottom: -160px;
  left: -110px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(38, 128, 73, 0.24), transparent 70%);
  animation-delay: -8s;
  animation-duration: 21s;
}

@keyframes auroraFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(26px, -18px) scale(1.08);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  padding: 7px 11px;
  color: var(--blue-dark);
  background: #eaf3ff;
  border: 1px solid #d8e9ff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-badge span {
  color: var(--blue);
}

.hero h1,
.section-heading h2,
.call-panel h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.15rem, 11vw, 4.35rem);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 560px;
  margin: 15px 0 0;
  color: #33496e;
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.48;
}

/* Subtle gradient accent on the outcome phrase in the headline. Both stops stay
   dark enough to keep full text contrast; @supports guards against browsers
   without background-clip:text ever getting invisible (transparent) text. */
.text-accent {
  color: var(--navy);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-accent {
    background: linear-gradient(90deg, var(--navy) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge,
.hero h1,
.hero-subtitle,
.hero-actions,
.hero-media {
  animation: heroEnter 640ms cubic-bezier(0.22, 0.75, 0.32, 1) both;
}

.hero-badge {
  animation-delay: 0ms;
}

.hero h1 {
  animation-delay: 70ms;
}

.hero-subtitle {
  animation-delay: 150ms;
}

.hero-actions {
  animation-delay: 220ms;
}

.hero-media {
  animation-delay: 170ms;
}

.hero-actions {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-reassurance svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.number-link {
  width: fit-content;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(19, 84, 58, 0.2);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
}

.button-secondary {
  color: #ffffff;
  background: linear-gradient(180deg, var(--blue-cta) 0%, var(--blue-cta-dark) 100%);
}

.button-light {
  color: var(--green-dark);
  background: #ffffff;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(28, 107, 60, 0.28);
  }
  50% {
    box-shadow:
      0 10px 34px rgba(28, 107, 60, 0.45),
      0 0 0 7px rgba(38, 128, 73, 0.14);
  }
}

.cta-pulse {
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.cta-pulse:hover,
.cta-pulse:focus-visible {
  animation-play-state: paused;
}

.hero-media {
  position: relative;
  isolation: isolate;
  min-height: 204px;
  border-radius: 18px;
  --mx: 50%;
  --my: 40%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(340px circle at var(--mx) var(--my), rgba(46, 125, 246, 0.28), transparent 70%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.hero-media:hover::after {
  opacity: 1;
}

.hero-media::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(46, 125, 246, 0.16), rgba(47, 155, 84, 0.12));
  border-radius: 24px;
}

.hero-media img {
  width: 100%;
  height: clamp(190px, 49vw, 500px);
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.floating-checklist {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 8px;
  width: min(238px, calc(100% - 24px));
  padding: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 231, 242, 0.9);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(6, 37, 83, 0.16);
  backdrop-filter: blur(12px);
}

.floating-checklist span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 750;
}

.floating-checklist svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.scroll-cue {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 1;
  color: var(--muted);
  opacity: 0.7;
  transform: translateX(-50%);
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  animation: scrollCueBounce 1.8s ease-in-out infinite;
}

.scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.trust-strip {
  padding: 18px 0 34px;
  background: var(--bg);
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-grid article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(11, 47, 91, 0.05);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.trust-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(11, 47, 91, 0.1);
}

.trust-grid h2,
.coverage-card h3,
.step-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

.trust-grid p,
.coverage-card p,
.step-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.48;
}

.icon-shell,
.large-call-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
}

.icon-shell {
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-grid article:hover .icon-shell,
.coverage-card:hover .icon-shell,
.step-card:hover .icon-shell {
  transform: scale(1.08) rotate(-4deg);
}

.icon-shell {
  width: 44px;
  height: 44px;
}

.icon-shell.blue {
  color: var(--blue);
  background: #eaf3ff;
}

.icon-shell.green {
  color: var(--green);
  background: #eaf8f0;
}

.icon-shell.navy {
  color: var(--navy);
  background: #eaf0f8;
}

.coverage-section,
.faq-section {
  padding: 54px 0;
  background: var(--bg-soft);
}

.steps-section,
.call-panel-section,
.final-cta {
  padding: 54px 0;
  background: var(--bg);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.call-panel h2,
.final-cta h2 {
  font-size: clamp(1.8rem, 7vw, 2.65rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 14px 0 0;
  color: #4b5f7f;
  font-size: 1rem;
}

.coverage-grid {
  display: grid;
  gap: 14px;
}

.coverage-card,
.step-card,
.faq-list details {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.coverage-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(11, 47, 91, 0.12);
}

.coverage-card {
  display: grid;
  gap: 14px;
  min-height: 188px;
  padding: 20px;
}

.steps-grid {
  display: grid;
  gap: 14px;
}

.step-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  background: var(--blue-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(30, 98, 207, 0.3);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.call-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 20%, rgba(55, 139, 248, 0.45), transparent 28%),
    linear-gradient(135deg, #062553 0%, #0b3b79 100%);
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(6, 37, 83, 0.24);
}

.call-panel h2 {
  color: #ffffff;
}

.call-panel p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #d8e8ff;
}

.call-panel small {
  color: #cce0f7;
  font-weight: 700;
}

.large-call-icon {
  width: 64px;
  height: 64px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.large-call-icon svg {
  width: 30px;
  height: 30px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}

.faq-list details {
  overflow: hidden;
}

.faq-list details:hover {
  transform: none;
  box-shadow: 0 14px 30px rgba(11, 47, 91, 0.1);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list .faq-a {
  padding: 0 20px 20px;
}

.faq-list .faq-a p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding-top: 24px;
}

.final-cta-inner {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #eef6ff 0%, #f6fbf8 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.final-cta p {
  margin: 10px 0 0;
  color: var(--muted);
}

.final-action {
  display: grid;
  gap: 8px;
}

.final-number {
  width: fit-content;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 900;
}

.final-action span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0 40px;
  color: #d9e9fb;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-brand {
  color: #ffffff;
  font-size: 1.05rem;
}

.site-footer p {
  max-width: 790px;
  margin: 12px 0 0;
  color: #c2d3e9;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 750;
}

.sticky-call-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -14px 34px rgba(11, 47, 91, 0.14);
  transform: translateY(112%);
  transition: transform 220ms ease;
}

.sticky-call-bar.is-visible {
  transform: translateY(0);
}

.sticky-call-bar strong,
.sticky-call-bar span {
  display: block;
}

.sticky-call-bar strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.sticky-call-bar span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.sticky-call-bar .button {
  min-height: 48px;
  padding: 12px 15px;
  border-radius: 13px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.legal-page {
  background: var(--bg-soft);
}

.legal-main {
  padding: 46px 0 72px;
}

.legal-card {
  max-width: 900px;
  margin-inline: auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.05;
}

.legal-card h2 {
  margin: 30px 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: #4b5f7f;
}

.legal-card a {
  color: var(--blue-dark);
  font-weight: 800;
}

/* Scroll-reveal: below-the-fold content eases in; hero stays instantly visible.
   The hidden state only exists once JS opts in via "reveal-ready" on <html>, so a
   blocked/broken script can never leave this content invisible. */
html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-grid .reveal:nth-child(1),
.coverage-grid .reveal:nth-child(1),
.steps-grid .reveal:nth-child(1),
.faq-list .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.trust-grid .reveal:nth-child(2),
.coverage-grid .reveal:nth-child(2),
.steps-grid .reveal:nth-child(2),
.faq-list .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.trust-grid .reveal:nth-child(3),
.coverage-grid .reveal:nth-child(3),
.steps-grid .reveal:nth-child(3),
.faq-list .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.trust-grid .reveal:nth-child(4),
.coverage-grid .reveal:nth-child(4),
.faq-list .reveal:nth-child(4) {
  transition-delay: 240ms;
}

.faq-list .reveal:nth-child(5) {
  transition-delay: 300ms;
}

@media (min-width: 620px) {
  .call-copy {
    display: block;
  }

  .mobile-call-label {
    display: none;
  }

  .trust-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .call-panel,
  .final-cta-inner {
    padding: 32px;
  }
}

@media (min-width: 880px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    padding-inline: 32px;
  }

  .hero {
    padding: 64px 0 50px;
  }

  .scroll-cue {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: 46px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
  }

  .coverage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .step-card:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -19px;
    width: 24px;
    height: 24px;
    color: var(--blue);
    content: "→";
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
  }

  .call-panel {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .call-panel small {
    grid-column: 3;
    margin-top: -18px;
    text-align: center;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 34px 38px;
  }

  .final-action {
    justify-items: end;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .sticky-call-bar {
    display: none;
  }
}

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

  .brand {
    max-width: 220px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
    padding-inline: 14px;
  }

  .floating-checklist {
    position: static;
    width: 100%;
    margin-top: -16px;
  }
}

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

  html.reveal-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
