:root {
  color-scheme: light dark;
  --bg: #f3f4f5;
  --surface: #e9eaec;
  --surface-soft: #f8f8f9;
  --ink: #241e23;
  --muted: #6c656b;
  --accent: #5c1f4b;
  --accent-readable: var(--accent);
  --accent-hover: #46163a;
  --line: rgba(36, 30, 35, 0.14);
  --shadow: 0 24px 70px rgba(64, 40, 57, 0.16);
  --radius: 20px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 96px), 1200px);
  min-height: 78px;
  margin: 0 auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 154px;
  height: auto;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0 18px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero {
  min-height: calc(100dvh - 73px);
  display: grid;
  align-items: center;
  padding: 44px 0 54px;
}

.hero-inner {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(44px, 8vw, 96px);
}

.hero-copy {
  max-width: 640px;
  animation: hero-in 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-readable);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.65rem, 5.7vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0 27px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(92, 31, 75, 0.22);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.button:active,
.header-cta:active,
.lead-widget__trigger:active,
.lead-widget__primary:active,
.lead-widget__back:active {
  transform: scale(0.98);
}

.button:focus-visible,
.header-cta:focus-visible,
.lead-widget button:focus-visible,
.lead-widget input:focus-visible,
.video-start:focus-visible,
.comparison input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 52%, #fff);
  outline-offset: 4px;
}

.consultation-note {
  max-width: 38ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.video-column {
  width: 100%;
}

.video-player {
  position: relative;
  isolation: isolate;
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #171417;
  box-shadow: var(--shadow);
  animation: video-in 760ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.video-player:not(.is-started) {
  cursor: pointer;
}

.video-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-main {
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease;
}

.video-player.is-started .video-main {
  visibility: visible;
  opacity: 1;
}

.video-player.is-started .video-preview,
.video-player.is-started .video-shade {
  opacity: 0;
  pointer-events: none;
}

.video-preview {
  z-index: 0;
  filter: saturate(0.9) contrast(1.02);
  transition: opacity 220ms ease;
}

.video-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(17, 13, 16, 0.74), rgba(17, 13, 16, 0.02) 66%);
  transition: opacity 220ms ease;
}

.video-start {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: calc(100% - 36px);
  min-height: 64px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.91);
  color: #291f27;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-player.is-started .video-start {
  opacity: 0;
  pointer-events: none;
}

.video-player.is-ended .video-start {
  opacity: 1;
  pointer-events: auto;
}

.video-start:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--accent);
}

.video-start-copy {
  display: grid;
  text-align: left;
}

.video-start-copy strong {
  font-size: 0.95rem;
}

.video-start-copy small {
  margin-top: 2px;
  color: #6a5f68;
  font-size: 0.72rem;
}

.video-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.video-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  transform-origin: left;
}

.mobile-actions {
  display: none;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-inner p {
  margin: 0;
  padding: 25px clamp(16px, 3vw, 36px);
  display: grid;
  gap: 4px;
  text-align: center;
}

.trust-inner p + p {
  border-left: 1px solid var(--line);
}

.trust-inner strong {
  font-size: 0.95rem;
}

.trust-inner span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: clamp(76px, 10vw, 130px) 0;
}

.section-compact {
  padding: 0 0 clamp(76px, 10vw, 130px);
}

.section-inner,
.mid-cta-inner,
.final-cta-inner,
.footer-inner {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
  margin-bottom: clamp(34px, 6vw, 62px);
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 52ch;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 42px);
}

.case {
  min-width: 0;
}

.comparison-labels {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.comparison-labels span:nth-child(2) {
  color: var(--accent-readable);
}

.comparison-labels span:last-child {
  text-align: right;
}

.comparison {
  position: relative;
  aspect-ratio: 470 / 788;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9d9dc;
  box-shadow: 0 18px 46px rgba(64, 40, 57, 0.12);
}

.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  position: absolute;
  inset: 0;
}

.comparison-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(30, 20, 28, 0.14);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(32, 19, 29, 0.28);
  pointer-events: none;
}

.comparison-handle::before,
.comparison-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.comparison-handle::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.comparison-handle::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}

.comparison input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.case h3 {
  margin: 20px 0 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.case p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.results-disclaimer {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.mid-cta-inner {
  min-height: 162px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  padding: clamp(28px, 5vw, 54px);
}

.mid-cta-inner p {
  max-width: 25ch;
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.mid-cta .button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.testimonials {
  border-top: 1px solid var(--line);
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 42px);
}

.testimonial {
  margin: 0;
}

.testimonial video {
  width: 100%;
  max-height: 680px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  object-fit: cover;
  background: #171417;
  box-shadow: 0 18px 46px rgba(64, 40, 57, 0.12);
}

.testimonial p {
  max-width: 44ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.final-cta {
  border-top: 1px solid var(--line);
}

.final-cta-inner {
  display: grid;
  justify-items: start;
}

.final-cta img {
  width: 190px;
  height: auto;
  margin-bottom: 30px;
}

.final-cta h2 {
  max-width: 16ch;
}

.final-cta p {
  max-width: 58ch;
  margin: 20px 0 30px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 90px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  margin-left: auto;
}

.lead-widget,
.lead-widget * {
  box-sizing: border-box;
}

.lead-widget {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.lead-widget__trigger {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  margin: 0;
  padding: 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(145deg, #25d366, #128c4a);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.lead-widget__trigger:hover {
  transform: translateY(-2px);
}

.lead-widget__trigger::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: inherit;
  animation: lead-widget-pulse 1.9s ease-out infinite;
  pointer-events: none;
}

.lead-widget__trigger img {
  width: 30px;
  height: 30px;
}

@keyframes lead-widget-pulse {
  0% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.lead-widget__invite {
  width: 300px;
  min-height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #211d21;
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.lead-widget.is-open .lead-widget__invite,
.lead-widget__invite.is-dismissed {
  display: none;
}

.lead-widget__invite-open,
.lead-widget__invite-close {
  margin: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lead-widget__invite-open {
  min-width: 0;
  min-height: 58px;
  padding: 9px 6px 9px 15px;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 11px;
  text-align: left;
}

.lead-widget__status {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.12);
}

.lead-widget__invite-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.lead-widget__invite-copy strong {
  color: #70f0a0;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-widget__invite-copy span {
  overflow: hidden;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-widget__invite-close {
  width: 36px;
  height: 36px;
  margin-right: 8px;
  padding: 0 0 2px;
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  line-height: 1;
}

.lead-widget__panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(390px, calc(100vw - 32px));
  max-height: min(720px, calc(100dvh - 112px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  animation: lead-panel-in 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lead-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lead-widget__header {
  min-height: 72px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  color: #fff;
}

.lead-widget__header div {
  display: grid;
  gap: 3px;
}

.lead-widget__header strong {
  font-size: 1rem;
}

.lead-widget__header span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.lead-widget__header button {
  width: 36px;
  height: 36px;
  padding: 0 0 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.lead-widget__body {
  max-height: calc(min(720px, 100dvh - 112px) - 72px);
  padding: 16px 18px 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lead-widget__notice {
  margin-bottom: 14px;
  padding: 11px 13px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.45;
}

.lead-widget__notice strong {
  color: var(--accent-readable);
}

.lead-widget__progress {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.lead-widget__progress i {
  display: block;
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.lead-widget__progress b {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-widget__step {
  opacity: 0;
  transform: translateY(4px);
}

.lead-widget__step.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-widget__step > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.lead-widget label:not(.lead-choice):not(.lead-consent) {
  margin-bottom: 11px;
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.lead-widget input[type="text"],
.lead-widget input[type="tel"],
.lead-widget input[type="email"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.lead-widget input::placeholder {
  color: var(--muted);
  opacity: 0.82;
}

.lead-widget input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.lead-widget input[aria-invalid="true"] {
  border-color: #b74f46;
}

.lead-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.lead-widget fieldset {
  min-width: 0;
  margin: 0 0 15px;
  padding: 0;
  border: 0;
}

.lead-widget legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.lead-choice {
  position: relative;
  display: block;
  margin-bottom: 7px;
  cursor: pointer;
}

.lead-choice input {
  position: absolute;
  opacity: 0;
}

.lead-choice span {
  min-height: 42px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.35;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.lead-choice input:checked + span {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
}

.lead-choice input:focus-visible + span {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.lead-consent {
  margin: 2px 0 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.lead-consent input {
  margin-top: 2px;
}

.lead-consent a {
  color: var(--accent-readable);
}

.lead-widget__error {
  min-height: 18px;
  margin: 2px 0 8px;
  color: #d66d64;
  font-size: 0.75rem;
  font-weight: 700;
}

.lead-widget__actions {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
}

.lead-widget__primary,
.lead-widget__back {
  min-height: 46px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.lead-widget__primary {
  width: 100%;
  border: 0;
  background: var(--accent);
  color: #fff;
}

.lead-widget__primary:hover {
  background: var(--accent-hover);
}

.lead-widget__primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lead-widget__back {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.lead-widget__success {
  padding: 10px 0 4px;
}

.lead-widget__success strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.lead-widget__success p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.lead-widget__success a {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #25d366, #128c4a);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes video-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .header-inner {
    width: min(calc(100% - 32px), var(--content));
    min-height: 64px;
    padding: 5px 0;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: calc(100dvh - 65px);
    padding: 30px 0 42px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero-copy {
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 0.66rem;
  }

  h1 {
    max-width: 17ch;
    font-size: clamp(2.25rem, 10.5vw, 3.25rem);
    line-height: 1;
  }

  .hero-description {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .desktop-actions {
    display: none;
  }

  .mobile-actions {
    display: grid;
    justify-items: stretch;
    margin-top: 20px;
  }

  .mobile-actions .button {
    width: 100%;
  }

  .mobile-actions .consultation-note {
    text-align: center;
  }

  .video-player {
    width: min(100%, 365px);
    max-height: 66dvh;
  }

  .video-start {
    min-height: 58px;
  }

  .trust-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-inner p {
    padding: 18px 16px;
  }

  .trust-inner p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-compact {
    padding-bottom: 76px;
  }

  .comparison-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .comparison {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .mid-cta-inner {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
  }

  .mid-cta .button {
    width: 100%;
  }

  .testimonial-track {
    width: calc(100% + 16px);
    grid-template-columns: repeat(2, minmax(270px, 84vw));
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-right: 16px;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial {
    scroll-snap-align: start;
  }

  .testimonial video {
    max-height: none;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-inner {
    display: grid;
  }

  .footer-inner a {
    margin: 8px 0 0;
  }

  .lead-widget {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 8px;
  }

  .lead-widget__trigger {
    width: 56px;
    height: 56px;
    padding: 14px;
  }

  .lead-widget__invite {
    width: min(266px, calc(100vw - 84px));
  }

  .lead-widget__invite-copy span {
    font-size: 0.74rem;
  }

  .lead-widget__panel {
    position: fixed;
    right: 10px;
    bottom: 78px;
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 92px);
  }

  .lead-widget__body {
    max-height: calc(100dvh - 164px);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171417;
    --surface: #211d21;
    --surface-soft: #1c191c;
    --ink: #f4f1f3;
    --muted: #beb7bc;
    --accent: #8f3f78;
    --accent-readable: #dc93ca;
    --accent-hover: #a84e8e;
    --line: rgba(244, 241, 243, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  .brand img,
  .final-cta img {
    filter: brightness(0) invert(1) opacity(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .lead-widget__trigger::before {
    display: none;
  }

}
