/* ==========================================================================
   Kartap v3 — dark-first, mobile-first, EN/FR
   ========================================================================== */

:root {
  color-scheme: dark;
  --bg: #04060d;
  --bg-raised: #070b16;
  --surface: #0a1020;
  --surface-2: #0d1424;
  --ink: #eef2fb;
  --muted: #98a2b8;
  --line: rgba(148, 163, 198, 0.14);
  --line-strong: rgba(148, 163, 198, 0.28);
  --blue: #0958ff;
  --blue-deep: #0038b8;
  --blue-soft: #6e9bff;
  --glow: rgba(9, 88, 255, 0.35);
  --star: #ffb950;
  --font-display: "Space Grotesk", Inter, sans-serif;
  --font-body: Inter, system-ui, -apple-system, sans-serif;
}

/* ------------------------------ base ----------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(9, 88, 255, 0.14), transparent 60%),
    radial-gradient(900px 480px at -10% 30%, rgba(9, 88, 255, 0.07), transparent 55%),
    var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

[hidden] {
  display: none !important;
}

img,
.demo-flip-card,
.demo-card-inner,
.demo-card-face {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

::selection {
  color: #ffffff;
  background: rgba(9, 88, 255, 0.55);
}

:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 700;
  transform: translateY(-300%);
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

/* --------------------------- typography -------------------------------- */

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

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 8.6vw, 4.3rem);
  line-height: 1.03;
}

.h1-line {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 5.4vw, 2.85rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue-soft);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.section {
  padding-block: clamp(64px, 9vw, 110px);
}

.section-alt {
  border-block: 1px solid var(--line);
  background: var(--bg-raised);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-sub {
  max-width: 64ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
}

/* ----------------------------- buttons --------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease,
    background-color 0.18s ease;
}

.button svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2f6bff, var(--blue) 55%, var(--blue-deep));
  box-shadow: 0 10px 30px -8px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px -8px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.button.ghost:hover {
  border-color: var(--blue-soft);
}

.button.light {
  color: #06080f;
  background: #ffffff;
}

.button.light:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.6);
}

.button.small {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 9px;
  font-size: 14px;
}

.button.big {
  min-height: 54px;
  padding: 0 30px;
  font-size: 16px;
}

.button.big svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------ header --------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 6, 13, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 70px;
}

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

.brand img {
  display: block;
  width: 112px;
  height: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 720px) {
  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 142px;
  }

  .nav {
    display: flex;
  }
}

/* --------------------------- language toggle --------------------------- */

.lang-toggle {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-toggle button {
  position: relative;
  min-width: 38px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.lang-toggle button:hover {
  color: var(--ink);
}

.lang-toggle button.is-active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 4px 12px -4px var(--glow);
}

html:not(.js) .lang-toggle {
  display: none;
}

/* ------------------------------- hero ---------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
}

/* faint dot grid echoing the card artwork */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 198, 0.22) 1px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(720px 480px at 75% 35%, rgba(0, 0, 0, 0.55), transparent 72%);
  mask-image: radial-gradient(720px 480px at 75% 35%, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 44px;
  padding-block: clamp(44px, 8vw, 104px) clamp(48px, 7vw, 88px);
}

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

.rotator {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, var(--blue-soft), #2f6bff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.rotator.is-swapping {
  opacity: 0;
  transform: translateY(0.3em);
}

.hero-text {
  max-width: 56ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18.5px);
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 600;
}

.trust-row li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 8px var(--glow);
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (min-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
  }
}

/* ---------------------------- hero visual ------------------------------ */

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(540px, 85%);
  aspect-ratio: 1.6;
  transform: translate(-50%, -56%);
  background: radial-gradient(closest-side, rgba(9, 88, 255, 0.3), transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

.demo-flip-card {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1.586 / 1;
  padding: 0;
  border: 0;
  border-radius: clamp(18px, 4vw, 26px);
  background: transparent;
  cursor: pointer;
  perspective: 1400px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
  -webkit-tap-highlight-color: transparent;
}

.demo-card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-16deg);
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.demo-flip-card:hover .demo-card-inner,
.demo-flip-card:focus-visible .demo-card-inner {
  transform: rotateX(3deg) rotateY(-9deg) translateY(-4px);
}

.demo-flip-card.is-flipped .demo-card-inner {
  transform: rotateX(6deg) rotateY(180deg);
}

.demo-card-face {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 198, 0.2);
  border-radius: inherit;
  background: #07090d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.demo-card-face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.demo-card-back {
  transform: rotateY(180deg);
}

.hero-visual-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 22px;
}

.demo-hint {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}

/* --------------------------- configurator ------------------------------ */

.config-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  padding: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.config-tabs::-webkit-scrollbar {
  display: none;
}

html:not(.js) .config-tabs {
  display: none;
}

.config-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.config-tab svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
}

.config-tab:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.config-tab.is-active {
  color: #ffffff;
  border-color: rgba(9, 88, 255, 0.65);
  background: linear-gradient(135deg, rgba(9, 88, 255, 0.3), rgba(9, 88, 255, 0.12));
  box-shadow: 0 6px 18px -6px var(--glow);
}

.config-panel {
  display: grid;
  gap: 30px;
  padding: clamp(22px, 4.5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface), var(--bg-raised));
}

html.js .config-panel {
  animation: panel-in 0.4s ease both;
}

html:not(.js) .config-panel + .config-panel {
  margin-top: 14px;
}

.config-copy p {
  max-width: 46ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.config-fit {
  font-size: 14px;
}

.config-fit strong {
  color: var(--ink);
  font-weight: 600;
}

.config-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: var(--blue-soft);
  font-size: 15px;
  font-weight: 700;
}

.config-cta:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 860px) {
  .config-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------------------------- phone mock ------------------------------- */

.phone {
  position: relative;
  width: min(220px, 62vw);
  margin-inline: auto;
  aspect-ratio: 9 / 18;
  padding: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: #060a13;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(9, 88, 255, 0.08);
}

.phone-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 1;
  width: 64px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 11px;
  height: 100%;
  padding: 34px 13px 13px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0c1322, #080d18);
  overflow: hidden;
}

.m-bar {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.m-stars {
  color: var(--star);
  font-size: 16px;
  letter-spacing: 2px;
  text-align: center;
}

.m-line {
  flex: 0 0 auto;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.m-line.w80 { width: 80%; }
.m-line.w70 { width: 70%; }
.m-line.w60 { width: 60%; }
.m-line.w50 { width: 50%; }
.m-line.w30 { width: 30%; }

.m-line.center {
  align-self: center;
}

.m-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.m-price {
  color: var(--blue-soft);
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.m-btn {
  margin-top: auto;
  padding: 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 16px -6px var(--glow);
}

.m-avatar {
  width: 46px;
  height: 46px;
  margin: 6px auto 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
}

.m-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.m-tile {
  display: grid;
  place-items: center;
  aspect-ratio: 1.6;
  border-radius: 10px;
  color: var(--blue-soft);
  background: rgba(255, 255, 255, 0.07);
  font-size: 10.5px;
  font-weight: 800;
}

.m-map {
  position: relative;
  flex: 1;
  border-radius: 12px;
  background:
    linear-gradient(rgba(148, 163, 198, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 198, 0.09) 1px, transparent 1px),
    linear-gradient(160deg, #0d1526, #0a101d);
  background-size: 22px 22px, 22px 22px, cover;
}

.m-pin {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  box-shadow: 0 0 16px var(--glow);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.m-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.m-cal span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
}

.m-cal .on {
  background: var(--blue);
  box-shadow: 0 0 10px var(--glow);
}

/* ------------------------------ steps ---------------------------------- */

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

.steps li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), transparent);
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.step-num {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 13px;
  border: 1px solid rgba(9, 88, 255, 0.35);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(9, 88, 255, 0.1);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .steps li {
    padding: 30px 28px;
  }
}

/* ------------------------------ quotes --------------------------------- */

.quotes {
  display: grid;
  gap: 14px;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.quote .stars {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 3px;
}

.quote blockquote {
  margin: 0;
}

.quote blockquote p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
}

.quote figcaption {
  margin-top: auto;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}

@media (min-width: 860px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .quote {
    padding: 28px;
  }
}

/* ---------------------------- travel band ------------------------------ */

.travel-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 92px);
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, #060a14, #0a1430 55%, var(--blue-deep));
}

.travel-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(110, 155, 255, 0.28), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.travel-grid {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}

.travel-band .eyebrow {
  color: #9db9ff;
}

.travel-band .eyebrow::before {
  background: linear-gradient(90deg, #9db9ff, transparent);
}

.travel-band h2 {
  max-width: 24ch;
  margin-bottom: 14px;
}

.travel-band p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: rgba(235, 240, 255, 0.78);
  font-size: 16.5px;
  line-height: 1.6;
}

@media (min-width: 1040px) {
  .travel-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(32px, 5vw, 64px);
  }
}

/* ------------------------------- faq ----------------------------------- */

.faq-grid {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.faq-grid .section-head {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 0.15s ease;
}

.faq-list details[open] {
  border-color: rgba(9, 88, 255, 0.4);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::marker {
  content: "";
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 5px;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 6px;
  color: var(--blue-soft);
  font-weight: 700;
}

.faq-demo-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 1040px) {
  .faq-grid {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }
}

/* ----------------------------- final cta ------------------------------- */

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 10vw, 130px);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  bottom: -55%;
  left: 50%;
  width: min(760px, 110vw);
  aspect-ratio: 1.6;
  background: radial-gradient(closest-side, rgba(9, 88, 255, 0.22), transparent 70%);
  filter: blur(20px);
  transform: translateX(-50%);
  pointer-events: none;
}

.final-cta .wrap {
  position: relative;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta .eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 1px;
  background: linear-gradient(270deg, var(--blue), transparent);
}

.final-cta h2 {
  max-width: 22ch;
  margin: 0 auto 30px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.final-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ------------------------------ footer --------------------------------- */

.site-footer {
  padding-block: 44px 30px;
  border-top: 1px solid var(--line);
  background: var(--bg-raised);
}

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

.footer-brand img {
  display: block;
  width: 116px;
  height: auto;
}

.footer-brand p {
  max-width: 40ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--ink);
}

.footer-meta {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 860px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

/* ---------------------------- hero price ------------------------------- */

.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero-price strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-price-sep {
  color: var(--line-strong);
}

/* --------------------------- proof category ---------------------------- */

.quote-cat {
  align-self: flex-start;
  padding: 5px 12px;
  border: 1px solid rgba(9, 88, 255, 0.35);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(9, 88, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.quote > p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
}

.proof-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 8px 15px;
  border: 1px solid rgba(9, 88, 255, 0.3);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(9, 88, 255, 0.08);
  font-size: 13.5px;
  font-weight: 600;
}

.proof-stat::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 8px var(--glow);
}

/* ------------------------- sticky mobile cta --------------------------- */

.sticky-wa {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #2f6bff, var(--blue) 55%, var(--blue-deep));
  box-shadow: 0 14px 30px -8px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
}

.sticky-wa svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 719px) {
  .sticky-wa {
    display: inline-flex;
  }

  /* Sticky bottom bar is the mobile CTA, so drop the redundant header button
     (both the header and the bar are persistent on small screens). */
  .site-header .header-actions .button {
    display: none;
  }

  body {
    padding-bottom: 76px;
  }
}

/* --------------------------- scroll reveal ----------------------------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------- reduced motion ---------------------------- */

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

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