:root {
  --bg: #f2f6ff;
  --bg-alt: #eef3fb;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(15, 23, 42, 0.08);
  --primary: #0059b1;
  --primary-dark: #00468c;
  --secondary: #10b981;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 24px 60px rgba(15, 23, 42, 0.1);
  --radius: 18px;
  --container: 1280px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(0, 89, 177, 0.08), transparent 28%),
    linear-gradient(180deg, #f4f7fc 0%, #edf2fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.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;
}

[hidden],
.is-hidden {
  display: none !important;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.section-heading-wide,
.testimonial-heading {
  max-width: none;
  text-align: center;
}

.section-heading-wide h2,
.testimonial-heading h2 {
  max-width: none;
}

.page-shell {
  width: min(calc(100% - 1.5rem), 1440px);
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.02), 0 26px 70px rgba(15, 23, 42, 0.08);
}

.page-shell .section-alt {
  background: transparent;
}

.page-shell .container {
  width: min(calc(100% - 3rem), var(--container));
}

.page-shell > #calculator:first-child {
  padding-top: 4rem;
}

.trust-strip {
  padding: 2rem 0 0;
}

.trust-strip-shell {
  overflow: hidden;
}

.trust-strip-label {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1rem 0;
}

.trust-strip-marquee::before,
.trust-strip-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 1;
  pointer-events: none;
}

.trust-strip-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.trust-strip-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.trust-strip-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: trustStrip 26s linear infinite;
}

.trust-strip-track span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(0, 89, 177, 0.06);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes trustStrip {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.section-label {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.8);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: 4rem;
  max-width: 12ch;
}

h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  max-width: 14ch;
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

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

span {
  letter-spacing: 0;
}

h1 span,
h2 span,
.cta-copy span {
  color: var(--primary);
}

/* ========== SCROLL OFFSET FOR STICKY NAV ========== */
#stats,
#services,
#calculator,
#features,
#how-it-works,
#faq,
#reviews,
#pricing,
#contact {
  scroll-margin-top: 5.5rem;
}

/* ========== HEADER / NAV ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.94);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.brand-image-link {
  display: inline-block;
  width: 281px;
  height: 83px;
  overflow: hidden;
  line-height: 1;
}

.brand-logo {
  width: 317px;
  height: 317px;
  max-width: none;
  object-fit: contain;
  transform: translate(-17px, -114px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a:not(.button) {
  color: var(--muted);
  font-weight: 500;
  transition: color var(--transition);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--text);
}

/* ========== BUTTONS ========== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), background-color var(--transition), color var(--transition),
    box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

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

.button:active {
  transform: scale(0.98);
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-secondary {
  border-color: var(--primary);
  color: #ffffff;
  background: var(--primary);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

.button-ghost-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

/* ========== HERO ========== */

.hero {
  position: relative;
  width: min(calc(100% - 1.5rem), 1440px);
  margin: 1.5rem auto;
  padding-top: 5.5rem;
  padding-bottom: 4rem;
  overflow: clip;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 40px;
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.02), 0 26px 70px rgba(15, 23, 42, 0.08);
  --hero-pointer-x: 0px;
  --hero-pointer-y: 0px;
  --hero-scroll-y: 0px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.028) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.32;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 12rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(30rem, 1.02fr);
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-lead {
  max-width: 38rem;
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.stat-card,
.metric-card,
.feature-card,
.step-card,
.testimonial-card,
.pricing-card,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat-card {
  padding: 1.2rem;
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--text);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero .stat-card {
  padding: 1.1rem 1.2rem;
  border-color: rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(12px);
}

.hero-media {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.hero-media.reveal {
  opacity: 1;
  transform: none;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: clamp(40rem, 52vw, 50rem);
  isolation: isolate;
  flex: 1;
}

.hero-audio-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), background-color var(--transition), color var(--transition),
    box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.hero-audio-toggle:hover,
.hero-audio-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.hero-audio-toggle:focus-visible {
  outline: none;
  border-color: rgba(0, 89, 177, 0.22);
  box-shadow: 0 0 0 4px rgba(0, 89, 177, 0.12), 0 18px 38px rgba(15, 23, 42, 0.12);
}

.hero-audio-toggle.is-active {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
}

.hero-stage-motion {
  position: relative;
  height: 100%;
  transform: translate3d(
    var(--hero-pointer-x),
    calc(var(--hero-pointer-y) + var(--hero-scroll-y)),
    0
  );
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-stage-surface {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
  border: 0;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
  animation: heroStageFloat 9s ease-in-out infinite;
}

.hero-stage-surface::before {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-stage-surface::after {
  content: none;
  position: absolute;
  right: -4%;
  bottom: 3%;
  pointer-events: none;
  z-index: 0;
}

.hero-avatar-scene {
  position: relative;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background:
    54% 36% / cover no-repeat url("Avatar_IV_Video-poster.png"),
    #ffffff;
}

.hero-avatar-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.1) 12%,
      rgba(255, 255, 255, 0) 24%,
      rgba(255, 255, 255, 0) 66%,
      rgba(255, 255, 255, 0.42) 82%,
      rgba(255, 255, 255, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 10%,
      rgba(255, 255, 255, 0.48) 18%,
      rgba(255, 255, 255, 0.08) 26%,
      rgba(255, 255, 255, 0) 34%,
      rgba(255, 255, 255, 0) 76%,
      rgba(255, 255, 255, 0.12) 86%,
      rgba(255, 255, 255, 0.72) 100%
    );
  z-index: 3;
  pointer-events: none;
}

.hero-avatar-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 120px 0 90px rgba(255, 255, 255, 0.34),
    inset 0 -120px 110px rgba(255, 255, 255, 0.52),
    inset 0 0 120px rgba(255, 255, 255, 0.12);
  z-index: 3;
  pointer-events: none;
}

.hero-avatar-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-avatar-mask::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22%;
  height: 28%;
  background: radial-gradient(100% 100% at 0% 100%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 74%);
  filter: blur(18px);
  z-index: 3;
  pointer-events: none;
}

.hero-avatar-mask::after {
  content: "";
  position: absolute;
  inset: auto 0 -1% 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.94));
  z-index: 3;
  pointer-events: none;
}

.hero-avatar-platform {
  position: absolute;
  left: 60%;
  bottom: 13%;
  width: 50%;
  height: 9%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0) 72%);
  filter: blur(14px);
  z-index: 1;
  opacity: 0.18;
  animation: heroPlatformShift 9s ease-in-out infinite;
}

.hero-avatar-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 36%;
  transform: scale(1.08);
  opacity: 1;
  background: transparent;
  filter: none;
  z-index: 2;
}

@keyframes heroStageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroPlatformShift {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    transform: translateX(-50%) scaleX(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip-track,
  .hero-stage-motion {
    animation: none;
    transition: none;
  }

  .hero-stage-surface,
  .hero-avatar-platform {
    animation: none;
  }
}

/* ========== STATS BANNER ========== */

.stats-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(0, 89, 177, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.stats-banner-text {
  max-width: 48rem;
}

.stats-banner-text h2 {
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  max-width: 12ch;
}

.stats-signal-grid,
.stats-banner-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.stats-signal-card,
.stats-banner-item {
  min-width: 0;
  padding: 1.35rem 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.stats-signal-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stats-signal-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 1.7rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(0, 89, 177, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.stats-signal-card strong {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.2;
}

.stats-signal-card span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.stats-signal-card-booked .stats-signal-pill {
  background: rgba(16, 185, 129, 0.14);
  color: #0f8f67;
}

.stats-signal-card-live .stats-signal-pill {
  background: rgba(15, 23, 42, 0.08);
  color: var(--text);
}

.stats-banner-item strong {
  display: block;
  font-size: clamp(1.95rem, 3.25vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.stats-banner-item strong[data-count="100000"] {
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
}

.stats-banner-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ========== SERVICES ========== */

.service-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.service-panel {
  width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.6rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.service-panel h3,
.service-panel > p {
  max-width: 52rem;
}

.service-panel h3,
.service-panel p,
.service-panel .service-cta-hint {
  color: var(--muted);
}

.service-panel h3 {
  color: var(--text);
}

.service-panel .service-badge {
  background: rgba(0, 89, 177, 0.1);
  color: var(--primary);
}

.service-panel .button-primary {
  background: var(--primary);
  color: #ffffff;
}

.service-panel .button-primary:hover,
.service-panel .button-primary:focus-visible {
  background: var(--primary-dark);
}

.service-badge,
.feature-kicker,
.step-index,
.rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 89, 177, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-cta {
  margin-top: 2rem;
}

.service-cta .button {
  width: auto;
}

.service-cta-hint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  text-align: left;
  color: var(--muted);
}

.service-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-benefit-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-benefit-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  min-height: 3.5rem;
  margin-bottom: 1.25rem;
  border-radius: 18px;
  background: rgba(0, 89, 177, 0.08);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.service-benefit-card h4 {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 1.65rem;
  line-height: 1.12;
}

.service-benefit-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ========== CALCULATOR ========== */

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.calculator-copy {
  display: grid;
  gap: 1rem;
  max-width: 35rem;
}

.calculator-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 2rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 89, 177, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.calculator-copy h2 {
  max-width: 13ch;
}

.calculator-lead {
  max-width: 34rem;
  font-size: 1.05rem;
}

.calculator-note {
  color: var(--text);
  font-weight: 600;
  max-width: 32rem;
}

.calculator-card {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.calculator-controls {
  display: grid;
  gap: 1rem;
}

.calculator-control {
  padding: 1rem 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.92);
}

.calculator-control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.calculator-control label {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
}

.calculator-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 2.15rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 89, 177, 0.08);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.calculator-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.6rem;
  margin: 0;
  border-radius: 999px;
  border: none;
  outline: none;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary) var(--range-progress, 0%),
    rgba(0, 89, 177, 0.12) var(--range-progress, 0%),
    rgba(0, 89, 177, 0.12) 100%
  );
  cursor: pointer;
  transition: box-shadow var(--transition);
}

.calculator-range:hover,
.calculator-range:focus-visible {
  box-shadow: 0 0 0 6px rgba(0, 89, 177, 0.08);
}

.calculator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 89, 177, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.calculator-range:hover::-webkit-slider-thumb,
.calculator-range:focus-visible::-webkit-slider-thumb {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(0, 89, 177, 0.12);
}

.calculator-range::-moz-range-track {
  height: 0.6rem;
  border: none;
  border-radius: 999px;
  background: rgba(0, 89, 177, 0.12);
}

.calculator-range::-moz-range-progress {
  height: 0.6rem;
  border-radius: 999px;
  background: var(--primary);
}

.calculator-range::-moz-range-thumb {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 89, 177, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.calculator-range:hover::-moz-range-thumb,
.calculator-range:focus-visible::-moz-range-thumb {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(0, 89, 177, 0.12);
}

.calculator-control-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
}

.calculator-periods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.4rem;
  border-radius: 20px;
  background: rgba(0, 89, 177, 0.06);
}

.calculator-period {
  min-height: 2.75rem;
  padding: 0.6rem 0.8rem;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.calculator-period:hover,
.calculator-period:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.calculator-period:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 89, 177, 0.14);
}

.calculator-period.is-active,
.calculator-period[aria-pressed="true"] {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.calculator-result {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: 24px;
  border: 1px solid rgba(0, 89, 177, 0.12);
  background: linear-gradient(180deg, rgba(0, 89, 177, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.calculator-result-label {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calculator-result-amount {
  display: block;
  margin-top: 0.6rem;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: var(--text);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.calculator-result-support {
  margin-top: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

.calculator-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

/* ========== FEATURES ========== */

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2.5rem;
  align-items: start;
  min-width: 0;
}

.feature-summary {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.metric-stack,
.feature-grid,
.steps-grid,
.testimonial-grid,
.footer-grid,
.cta-shell {
  display: grid;
  gap: 1rem;
}

.metric-stack {
  margin-top: 2rem;
  min-width: 0;
}

.metric-card {
  min-width: 0;
  padding: 1.4rem;
  border-radius: 20px;
  background: rgba(0, 89, 177, 0.04);
  border-color: rgba(0, 89, 177, 0.08);
}

.metric-card strong {
  display: block;
  font-size: 2.1rem;
  color: var(--primary);
  overflow-wrap: anywhere;
}

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

.feature-card,
.step-card,
.testimonial-card {
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card {
  border-radius: 24px;
  padding: 1.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.feature-card:hover,
.step-card:hover,
.pricing-card:hover,
.contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ========== HOW IT WORKS ========== */

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

.step-card {
  border-radius: 24px;
  padding: 1.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* ========== FAQ ========== */

.faq-list {
  max-width: 48rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  user-select: none;
}

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

.faq-question::marker {
  content: "";
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 300ms ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ========== TESTIMONIALS ========== */

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

/* GHL-style tile: no border box, center-aligned */
.testimonial-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.4rem 1.7rem;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  background: linear-gradient(180deg, rgba(0, 89, 177, 0.1), rgba(16, 185, 129, 0.12));
  box-shadow: inset 0 0 0 1px rgba(0, 89, 177, 0.12);
}

.testimonial-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.testimonial-stars {
  font-size: 1.2rem;
  color: #f59e0b;
  letter-spacing: 0.05em;
}

/* ========== PRICING ========== */

.pricing-shell {
  display: grid;
  place-items: center;
}

.pricing-card {
  width: min(100%, 32rem);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-name {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  margin: 1rem 0 1.5rem;
}

.pricing-amount strong {
  font-size: 3rem;
  line-height: 1;
  color: var(--text);
}

.pricing-footnote,
.pricing-offer {
  margin-top: 1.5rem;
}

.pricing-offer {
  color: var(--primary);
  font-weight: 600;
}

.pricing-button {
  margin-top: 1.5rem;
  width: 100%;
}

/* ========== CTA ========== */

.cta-section {
  background: linear-gradient(180deg, #0059b1 0%, #0059b1 100%);
  color: #ffffff;
  border-radius: 36px;
  overflow: hidden;
}

.cta-shell {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 2.5rem;
}

.cta-copy {
  max-width: 34rem;
}

.cta-copy h2,
.cta-copy p,
.cta-copy a,
.contact-panel h3,
.contact-panel p {
  color: #ffffff;
}

.cta-copy h2 span {
  color: #dcecff;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.contact-line a {
  font-weight: 600;
}

.contact-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 28px;
  backdrop-filter: none;
}

.ghl-form-embed {
  margin-top: 0;
  padding: 0.85rem;
  border-radius: 28px;
  overflow: hidden;
  min-height: 22rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.ghl-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 22rem;
  border: 0;
  outline: none;
  border-radius: 24px;
  background: #ffffff;
}

/* ---- Custom LeadKeep Form ---- */
.lk-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem;
}

.lk-form-row {
  display: flex;
  gap: 0.65rem;
}

.lk-form-row input {
  flex: 1;
}

.lk-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.2rem;
  display: block;
}

.lk-form input,
.lk-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.lk-form input:focus,
.lk-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.lk-form input::placeholder,
.lk-form textarea::placeholder {
  color: #94a3b8;
}

.lk-form textarea {
  resize: vertical;
  min-height: 5rem;
}

.lk-form button[type="submit"] {
  margin-top: 0.3rem;
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.lk-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.lk-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.lk-form-status {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  min-height: 1.4em;
  margin: 0.3rem 0 0;
}

.lk-form label.lk-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  margin: 0.2rem 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.5;
  text-align: left;
}

.lk-form label.lk-consent input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  padding: 0;
  margin: 0.2rem 0 0;
  flex: 0 0 auto;
  accent-color: #2563eb;
  cursor: pointer;
}

.lk-form label.lk-consent span {
  flex: 1 1 auto;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.lk-form label.lk-consent a {
  color: #0059B1;
  text-decoration: underline;
  font-weight: 500;
}

.lk-form label.lk-consent a:hover {
  color: #1d4ed8;
}

@media (max-width: 480px) {
  .lk-form label.lk-consent {
    font-size: 0.75rem;
    gap: 0.45rem;
  }
}

/* ========== FOOTER ========== */

.site-footer {
  padding: 3rem 0 2rem;
  background: transparent;
}

.footer-grid {
  grid-template-columns: 2fr repeat(3, 1fr);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

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

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.footer-brand {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  color: var(--muted);
}

/* ========== BACK TO TOP ========== */

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  right: calc(1rem + env(safe-area-inset-right, 0px));
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 4.4rem;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition),
    background-color var(--transition), box-shadow var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--primary-dark);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.22);
}

.back-to-top:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 89, 177, 0.16), 0 22px 46px rgba(15, 23, 42, 0.22);
}

.back-to-top svg {
  flex: 0 0 auto;
}

/* ========== MOBILE MENU ========== */

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ========== ANIMATIONS ========== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

/* ========== LEGAL PAGES ========== */

.legal-page {
  background: var(--bg-alt);
  min-height: 100vh;
}

.legal-shell {
  width: min(calc(100% - 2rem), 52rem);
  margin: 0 auto;
  padding: 6rem 0 4rem;
}

.legal-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.legal-card h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 1.2rem;
}

/* ========== RESPONSIVE: TABLET (≤960px) ========== */

@media (max-width: 960px) {
  .hero {
    width: min(calc(100% - 1rem), 100%);
    border-radius: 28px;
  }

  .page-shell {
    width: min(calc(100% - 1rem), 100%);
    border-radius: 28px 28px 0 0;
  }

  .page-shell .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  /* Show hamburger and collapse nav at tablet too */
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    z-index: 100;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.button) {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-grid .hero-copy {
    order: 1;
  }

  .hero-grid .hero-media {
    order: 2;
    margin: 0 auto;
    width: 100%;
    max-width: 42rem;
  }

  .hero-stage {
    height: clamp(36rem, 84vw, 48rem);
  }

  .hero-audio-toggle {
    top: 0.9rem;
    right: 0.9rem;
  }

  .hero-avatar-video {
    object-position: 53% 48%;
    transform: scale(1.04);
  }

  .service-showcase {
    grid-template-columns: 1fr;
  }

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

  .calculator-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .calculator-copy {
    max-width: 100%;
  }

  .feature-layout {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .cta-shell {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stats-banner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-signal-grid,
  .stats-banner-numbers {
    grid-template-columns: 1fr;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
  }

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

  .faq-list {
    max-width: 100%;
  }
}

/* ========== RESPONSIVE: MOBILE (≤600px) ========== */

@media (max-width: 600px) {
  .hero {
    width: 100%;
    margin: 0 auto 1rem;
    border-radius: 0 0 24px 24px;
  }

  .page-shell {
    width: 100%;
    border-radius: 24px 24px 0 0;
    margin-bottom: 0;
  }

  .page-shell .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .trust-strip {
    padding-top: 1.5rem;
  }

  .trust-strip-label {
    font-size: 0.68rem;
  }

  .trust-strip-track span {
    min-height: 2.25rem;
    padding: 0 0.85rem;
    font-size: 0.85rem;
  }

  .section {
    padding: 4rem 0;
  }

  .page-shell > #calculator:first-child {
    padding-top: 3rem;
  }

  h1 {
    font-size: 2.6rem;
    max-width: 100%;
  }

  h2 {
    font-size: 2rem;
    max-width: 100%;
  }

  h3 {
    font-size: 1.2rem;
  }

  .nav-shell {
    min-height: 4rem;
    position: relative;
  }

  /* Hero */
  .hero {
    padding-top: 3rem;
  }

  .eyebrow-pill {
    font-size: 0.8rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .center-actions,
  .contact-line {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .center-actions .button,
  .nav-cta,
  .pricing-button,
  .service-cta .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Stats hero mini-grid — 1 column on mobile */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid .stat-card:last-child {
    grid-column: auto;
  }

  .stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .stat-card strong {
    font-size: 1.6rem;
    white-space: nowrap;
  }

  .stat-card span {
    font-size: 0.9rem;
  }

  /* Stats banner */
  .stats-banner-numbers {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .stats-signal-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .stats-signal-card,
  .stats-banner-item {
    padding: 1.2rem 1rem;
  }

  .stats-banner-item strong {
    font-size: 2.4rem;
  }

  .service-panel {
    padding: 1.25rem;
  }

  .service-benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-benefit-card {
    padding: 1.35rem;
  }

  .service-benefit-card h4 {
    font-size: 1.35rem;
  }

  .calculator-card {
    padding: 1.1rem;
    border-radius: 24px;
  }

  .calculator-control {
    padding: 0.95rem;
    border-radius: 20px;
  }

  .calculator-control-head {
    gap: 0.75rem;
    align-items: flex-start;
  }

  .calculator-value {
    min-width: auto;
    padding-inline: 0.7rem;
  }

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

  .calculator-period {
    min-height: 3rem;
  }

  .calculator-result {
    padding: 1.2rem;
  }

  .calculator-result-amount {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .calculator-result-actions .button {
    width: 100%;
  }

  /* Media frame */
  .hero-media {
    width: 100%;
    min-height: 0;
  }

  .hero-stage {
    height: 34rem;
  }

  .hero-audio-toggle {
    top: 0.85rem;
    right: 0.85rem;
    min-height: 2.6rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }

  .hero-stage-surface {
    padding: 0;
  }

  .hero-avatar-platform {
    left: 58%;
    width: 52%;
    bottom: 12%;
  }

  .hero-avatar-video {
    object-position: 52% 48%;
    transform: scale(1.01);
  }

  /* Features */
  .feature-summary {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metric-stack {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* Steps */
  .steps-grid {
    max-width: 100%;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Pricing */
  .pricing-card {
    width: 100%;
    padding: 1.5rem;
  }

  /* CTA section */
  .cta-section .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* FAQ */
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .contact-line {
    flex-direction: column;
    gap: 0.5rem;
  }

  .back-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    right: calc(0.85rem + env(safe-area-inset-right, 0px));
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    min-width: 3.2rem;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
  }

  .back-to-top span {
    display: none;
  }
}
