:root {
  --bg: #eef2f7;
  --bg-white: #ffffff;
  --bg-soft: #e4eaf3;
  --surface: #ffffff;
  --ink: #10151d;
  --muted: #5a6472;
  --line: #d5dde8;
  --accent: #3b6fe3;
  --accent-hover: #2f5bc9;
  --accent-soft: #e9effc;
  --accent-ink: #ffffff;
  --brand-green: #22c55e;
  --brand-violet: #7c3aed;
  --brand-gold: #ffd166;
  --brand-grad: linear-gradient(118deg, #22c55e 0%, #3b6fe3 48%, #7c3aed 100%);
  --warm: #e8912d;
  --warm-ink: #1c1206;
  --ok: #14865f;
  --radius: 18px;
  --radius-lg: 24px;
  --btn-radius: 999px;
  --max: 1120px;
  --font: "Onest", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.45s;
  --dur-fast: 0.22s;
  --space-section: clamp(3.75rem, 7.5vw, 6rem);
  --space-block: clamp(1.25rem, 2.5vw, 1.75rem);
  --header-h: 4.35rem;
  --shadow-soft: 0 18px 50px rgba(16, 21, 29, 0.07);
  --shadow-card: 0 14px 40px rgba(16, 21, 29, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 0% -10%, rgba(42, 91, 215, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 145, 45, 0.07), transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, var(--bg) 28%, #e9eef6 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(16, 21, 29, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 29, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%);
}

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 249, 252, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(213, 221, 232, 0.85);
  box-shadow: 0 8px 24px rgba(16, 21, 29, 0.03);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-block__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow:
    0 6px 16px color-mix(in srgb, var(--accent) 28%, transparent),
    0 0 0 1px color-mix(in srgb, var(--brand-violet) 12%, transparent);
}

.logo-block strong span {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-block__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.logo-block strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.logo-block small {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* Lucide icons */
i[data-lucide],
svg.lucide {
  display: inline-block;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  vertical-align: -0.2em;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 15px;
  background:
    linear-gradient(145deg, #fff, var(--accent-soft));
  color: var(--accent);
  margin-bottom: 0.9rem;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 10%, transparent);
}

.icon-badge svg.lucide {
  width: 1.3rem;
  height: 1.3rem;
}

.icon-badge--warm {
  background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--warm) 18%, white));
  color: #b86a12;
  border-color: color-mix(in srgb, var(--warm) 22%, var(--line));
}

.nav {
  display: none;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
  transition: color var(--dur-fast);
}

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

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }
}

/* Buttons — same rhythm as designdebitcard */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--btn-radius);
  transition:
    transform var(--dur-fast) var(--ease),
    background var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    filter var(--dur-fast) ease;
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--accent-ink);
  border-radius: 22px;
  min-height: 56px;
  padding: 0 1.75rem 0 1.85rem;
  font-size: 1.0625rem;
  background: var(--accent);
  box-shadow:
    0 10px 28px color-mix(in srgb, var(--accent) 36%, transparent),
    0 0 0 1px color-mix(in srgb, #fff 18%, transparent) inset;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) ease,
    filter var(--dur-fast) ease;
}

.btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow:
    0 14px 34px color-mix(in srgb, var(--accent) 48%, transparent),
    0 0 0 1px color-mix(in srgb, #fff 22%, transparent) inset;
}

/* CTA breathe — scale всей кнопки с текстом, как JuniorCard */
.hero__actions .btn--primary,
.page-hero .cta-row .btn--primary,
.final .cta-row .btn--primary {
  animation: cta-invite 2.1s ease-in-out infinite;
  transition: filter 0.45s ease, box-shadow 0.35s ease;
}

.hero__actions .btn--primary:hover,
.hero__actions .btn--primary:focus-visible,
.page-hero .cta-row .btn--primary:hover,
.page-hero .cta-row .btn--primary:focus-visible,
.final .cta-row .btn--primary:hover,
.final .cta-row .btn--primary:focus-visible {
  animation: none;
  filter: brightness(1.06);
  transform: none;
  box-shadow:
    0 14px 34px color-mix(in srgb, var(--accent) 48%, transparent),
    0 0 0 1px color-mix(in srgb, #fff 22%, transparent) inset;
}

.scenario .btn--primary {
  min-height: 52px;
  font-size: 1rem;
  border-radius: 22px;
  animation: none;
  transform: scale(1);
}

.scenario--featured:hover .btn--primary,
.scenario--featured:focus-within .btn--primary {
  animation: cta-invite 2.1s ease-in-out infinite;
}

.scenario--featured .btn--primary:hover,
.scenario--featured .btn--primary:focus-visible {
  animation: none;
  transform: none;
  filter: brightness(1.06);
  box-shadow:
    0 14px 32px color-mix(in srgb, var(--accent) 46%, transparent),
    0 0 0 1px color-mix(in srgb, #fff 22%, transparent) inset;
}

@keyframes cta-invite {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (hover: none) {
  .scenario--featured:active .btn--primary {
    animation: cta-invite 2.1s ease-in-out infinite;
  }
}

.btn--warm {
  color: var(--warm-ink);
  padding: 0.95rem 1.45rem;
  background: var(--warm);
  animation: cta-invite 2.1s ease-in-out infinite;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--warm) 35%, transparent);
  transition: filter 0.45s ease, box-shadow 0.35s ease;
}

.btn--warm:hover,
.btn--warm:focus-visible {
  animation: none;
  filter: brightness(1.05);
  transform: none;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--warm) 42%, transparent);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.88rem 1.3rem;
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-green) 10%, transparent), color-mix(in srgb, var(--accent) 10%, transparent));
  filter: none;
  box-shadow: none;
}

.btn--sm {
  padding: 0.68rem 1.15rem;
  font-size: 0.95rem;
  min-height: 48px;
}

.btn--sm.btn--primary {
  min-height: 52px;
  padding: 0 1.35rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 32%, transparent);
}

.btn--sm.btn--warm {
  box-shadow: 0 8px 20px color-mix(in srgb, var(--warm) 28%, transparent);
}

.btn--primary::after,
.btn--warm::after {
  content: "";
  width: 1.1em;
  height: 1.1em;
  margin-left: 0.35rem;
  flex-shrink: 0;
  background-color: currentColor;
  opacity: 0.95;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.22s var(--ease), opacity 0.22s ease;
}

.btn--primary:hover::after,
.btn--warm:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

.btn--text {
  background: none;
  border: 0;
  color: var(--accent);
  padding: 0.35rem 0;
  min-height: auto;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
}

.btn--text:hover {
  transform: none;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  filter: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero__actions {
  gap: 1.5rem;
  margin: 0.15rem 0 0.35rem;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) 0.4s forwards;
}

.hero__actions .btn--primary {
  min-height: 64px;
  padding: 0 2rem 0 2.1rem;
  font-size: 1.125rem;
  border-radius: 24px;
  box-shadow:
    0 14px 36px color-mix(in srgb, var(--accent) 42%, transparent),
    0 6px 14px color-mix(in srgb, var(--brand-green) 18%, transparent),
    0 0 0 1px color-mix(in srgb, #fff 22%, transparent) inset;
}

.hero__actions .btn--ghost {
  min-height: 64px;
  padding: 0 1.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  box-shadow: 0 10px 24px rgba(16, 21, 29, 0.06);
}

.hero__actions .btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: #fff;
  box-shadow: 0 14px 28px rgba(42, 91, 215, 0.12);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.75rem, 9vh, 6.25rem) 0 clamp(3.5rem, 8vh, 5.5rem);
  background:
    radial-gradient(ellipse 48% 70% at 88% 18%, rgba(42, 91, 215, 0.28), transparent 60%),
    radial-gradient(ellipse 36% 48% at 6% 82%, rgba(232, 145, 45, 0.16), transparent 56%),
    radial-gradient(ellipse 28% 32% at 48% 100%, rgba(42, 91, 215, 0.1), transparent 70%),
    linear-gradient(165deg, #dfe8f6 0%, #f4f7fb 38%, #e8eef8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% 35%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.5), transparent 72%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    min-height: min(640px, calc(100svh - var(--header-h) - 3.5rem));
  }
}

.hero__copy {
  max-width: 34rem;
}

.hero__brand {
  margin: 0 0 0.85rem;
  font-size: clamp(2.85rem, 7.2vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.94;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) 0.05s forwards;
  text-wrap: balance;
}

.hero__brand em {
  font-style: normal;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.35rem, 2.8vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
  max-width: 24ch;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) 0.16s forwards;
}

.hero__lead {
  margin: 0 0 1.85rem;
  color: #4a5565;
  max-width: 34ch;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) 0.28s forwards;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2.15rem 0 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.5s forwards;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  font-size: 0.84rem;
  font-weight: 600;
  color: #3a4453;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(16, 21, 29, 0.06);
}

.hero__trust .icon,
.hero__trust svg.lucide {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--accent);
}

.hero__meta {
  margin: 0.95rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.58s forwards;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 1.35rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.48s forwards;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-proof svg.lucide {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.hero__brands {
  margin: 1rem 0 0;
  max-width: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: #647084;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.55s forwards;
}

.hero-receipt {
  position: absolute;
  right: 4%;
  bottom: 6%;
  z-index: 4;
  min-width: 9.5rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(16, 21, 29, 0.14);
  backdrop-filter: blur(10px);
}

.hero-receipt__app {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.hero-receipt__sum {
  margin: 0.2rem 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-receipt__ok {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ok);
}

.hero-receipt__ok svg.lucide {
  width: 0.9rem;
  height: 0.9rem;
}

@media (max-width: 959px) {
  .hero-receipt {
    right: 8%;
    bottom: 0;
  }
}

.scenario__price {
  margin: 0 0 0.55rem !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  color: var(--accent) !important;
}

.promo--accent {
  padding: clamp(1.85rem, 4vw, 2.75rem);
  box-shadow: 0 28px 60px color-mix(in srgb, var(--warm) 22%, transparent);
  border-width: 1.5px;
}

.promo__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.promo__deal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1rem;
}

.promo__deal span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 9rem;
  padding: 0.85rem 1.05rem;
  border-radius: 16px;
  background: color-mix(in srgb, var(--warm) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--warm) 28%, #f0d7b0);
}

.promo__deal strong {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #b56a12;
}

.promo__deal small {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.promo__lead {
  margin: 0 0 1.35rem;
  max-width: none;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.eyebrow--warm {
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--warm) 18%, white));
  color: #b56a12;
  border-color: color-mix(in srgb, var(--warm) 28%, var(--line));
}

.mechanics {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

@media (min-width: 980px) {
  .mechanics {
    grid-template-columns: 1fr 2.75rem 1fr 2.75rem 1fr;
    gap: 0.5rem;
    align-items: stretch;
  }

  .mechanics--xl {
    grid-template-columns: 1fr 2.75rem 1fr 2.75rem 1fr 2.75rem 1fr;
  }
}

.section--mechanics {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(59, 111, 227, 0.16), transparent 58%),
    linear-gradient(180deg, #e8eef8 0%, #f7f9fc 48%, #eef2f7 100%);
  border-block: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line));
}

.mechanics--xl .mechanics__node {
  min-height: 14.5rem;
  padding: 1.65rem 1.25rem 1.45rem;
}

.mechanics--xl .mechanics__node strong {
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
}

.mechanics--xl .mechanics__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.95rem;
}

.mechanics--xl .mechanics__icon svg.lucide {
  width: 1.45rem;
  height: 1.45rem;
}

.mechanics--xl .mechanics__arrow {
  color: var(--accent);
  opacity: 1;
}

.mechanics--xl .mechanics__arrow svg.lucide {
  width: 1.85rem;
  height: 1.85rem;
  stroke-width: 2.4;
}

.mechanics__node--pay {
  background:
    linear-gradient(165deg, #fff 0%, #f3f7ff 100%);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
}

.mechanics__cta-note {
  margin: 1.5rem 0 0.85rem;
  text-align: center;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.mechanics__cta {
  margin-top: 0;
  justify-content: center;
}

.mechanics__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 11.5rem;
  padding: 1.35rem 1.15rem 1.25rem;
  border-radius: calc(var(--radius-lg) - 2px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(16, 21, 29, 0.05);
  text-align: center;
}

.mechanics__step {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.mechanics__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, var(--accent-soft));
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  color: var(--accent);
}

.mechanics__icon svg.lucide {
  width: 1.25rem;
  height: 1.25rem;
}

.mechanics__node strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
}

.mechanics__node > span:not(.mechanics__step):not(.mechanics__icon) {
  display: block;
  margin-top: 0.45rem;
  max-width: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

.mechanics__node > span b {
  color: var(--ok);
  font-weight: 800;
}

.mechanics__node--card {
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(59, 111, 227, 0.14), transparent 60%),
    linear-gradient(180deg, #f4f7ff 0%, #fff 100%);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow:
    0 18px 42px color-mix(in srgb, var(--accent) 12%, transparent),
    0 14px 36px rgba(16, 21, 29, 0.04);
}

.mechanics__node--card strong {
  color: var(--accent);
}

.mechanics__node--card .mechanics__icon {
  background: linear-gradient(145deg, var(--accent), #5b8aef);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 35%, transparent);
}

.mechanics__arrow {
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--accent) 70%, #94a3b8);
  list-style: none;
  opacity: 0.85;
}

.mechanics__arrow svg.lucide {
  width: 1.35rem;
  height: 1.35rem;
}

@media (max-width: 979px) {
  .mechanics__arrow {
    transform: rotate(90deg);
    padding: 0.15rem 0;
  }
}

.mechanics__rates {
  margin: 1.35rem auto 0;
  max-width: 44rem;
  padding: 1.25rem 1.25rem 1.15rem;
  border-radius: calc(var(--radius-lg) - 2px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(16, 21, 29, 0.04);
}

.mechanics__rates-title {
  margin: 0 0 0.95rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.mechanics__rates ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 700px) {
  .mechanics__rates ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
}

.mechanics__rates li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 0.9rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #f7f9fc, #fff);
  border: 1px solid var(--line);
  text-align: center;
}

.mechanics__rates li span {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
}

.mechanics__rates li em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.mechanics__rates li strong {
  margin-top: 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.mechanics__note {
  margin: 0.95rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.mechanics__pays {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.mechanics__pays span {
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
  color: #3a4453;
  box-shadow: 0 6px 14px rgba(16, 21, 29, 0.03);
}

.pay-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 800px) {
  .pay-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-block);
  }
}

.pay-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.pay-card h3 {
  margin: 0 0 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.pay-card h3 svg.lucide {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
}

.pay-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.use-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 700px) {
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .use-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.use-card {
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #fff, #f7f9fc);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.use-card:hover,
.use-card.is-in:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 18px 40px color-mix(in srgb, var(--ink) 6%, transparent);
}

.use-card h3 {
  margin: 0 0 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.use-card h3 svg.lucide {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
}

.use-card p {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.35;
}

.use-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
  color: #3a4453;
  box-shadow: 0 8px 20px rgba(16, 21, 29, 0.04);
}

.trust-strip svg.lucide {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.journeys {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .journeys {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.journey {
  padding: 1.45rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.journey--featured {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
  box-shadow:
    0 22px 48px color-mix(in srgb, var(--accent) 12%, transparent),
    var(--shadow-soft);
}

.journey:hover,
.journey.is-in:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  box-shadow: 0 18px 40px color-mix(in srgb, var(--ink) 6%, transparent);
}

.journey--featured:hover {
  box-shadow:
    0 28px 58px color-mix(in srgb, var(--accent) 16%, transparent),
    0 16px 36px color-mix(in srgb, var(--ink) 6%, transparent);
}

.journey__who {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
}

.journey__who span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.journey__need {
  margin: 0 0 0.95rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}

.journey ol {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.journey li {
  position: relative;
  padding-left: 1.55rem;
  color: #3a4453;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.journey li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.journey__result {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ok);
}

.get-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .get-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .get-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.get-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.get-item svg.lucide {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.get-item strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.get-item span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(247, 249, 252, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 -12px 28px rgba(16, 21, 29, 0.08);
}

.sticky-cta .btn {
  min-height: 52px;
  border-radius: 18px;
}

@media (max-width: 859px) {
  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 5.5rem;
  }

  .site-footer {
    padding-bottom: 1.5rem;
  }
}

/* Card stage — fan of product card images */
.hero__stage {
  position: relative;
  height: clamp(320px, 46vw, 480px);
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.22s forwards;
  --px: 0;
  --py: 0;
  --scroll-y: 0px;
}

.hero__glow {
  position: absolute;
  inset: 2% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(42, 91, 215, 0.38), transparent 65%),
    radial-gradient(circle at 70% 70%, rgba(232, 145, 45, 0.18), transparent 50%);
  filter: blur(16px);
  animation: pulse-glow 5.5s ease-in-out infinite alternate;
  transform: translate3d(calc(var(--px) * 12px), calc(var(--py) * 8px + var(--scroll-y) * 0.35), 0);
  transition: transform 0.35s var(--ease);
}

.hero-card {
  position: absolute;
  width: min(88%, 440px);
  height: auto;
  aspect-ratio: 1.6;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  padding: 0;
  border: 0;
  left: 50%;
  top: 50%;
  display: block;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.28);
  transition: transform 0.4s var(--ease);
  background: transparent;
  color: inherit;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-card--back {
  transform:
    translate(
      calc(-70% + var(--px) * -22px),
      calc(-54% + var(--py) * -12px + var(--scroll-y) * 0.45)
    )
    rotate(calc(-16deg + var(--px) * -3deg))
    scale(0.9);
  z-index: 1;
}

.hero-card--front {
  transform:
    translate(
      calc(-30% + var(--px) * 22px),
      calc(-54% + var(--py) * -10px + var(--scroll-y) * 0.35)
    )
    rotate(calc(16deg + var(--px) * 3deg))
    scale(0.9);
  z-index: 2;
}

.hero-card--main {
  transform:
    translate(
      calc(-50% + var(--px) * 8px),
      calc(-38% + var(--py) * 10px - var(--scroll-y) * 0.2)
    )
    scale(1);
  z-index: 3;
  box-shadow:
    0 32px 64px rgba(30, 58, 138, 0.38),
    0 8px 20px rgba(15, 23, 42, 0.18);
}

.hero__stage:hover .hero-card--back {
  transform:
    translate(
      calc(-76% + var(--px) * -26px),
      calc(-56% + var(--py) * -14px + var(--scroll-y) * 0.45)
    )
    rotate(calc(-18deg + var(--px) * -3deg))
    scale(0.92);
}

.hero__stage:hover .hero-card--front {
  transform:
    translate(
      calc(-24% + var(--px) * 26px),
      calc(-56% + var(--py) * -12px + var(--scroll-y) * 0.35)
    )
    rotate(calc(18deg + var(--px) * 3deg))
    scale(0.92);
}

.hero__stage:hover .hero-card--main {
  transform:
    translate(
      calc(-50% + var(--px) * 10px),
      calc(-40% + var(--py) * 12px - var(--scroll-y) * 0.2)
    )
    scale(1.03);
}

@media (max-width: 959px) {
  .hero__stage {
    order: -1;
    height: 260px;
    max-width: 440px;
  }
}

@keyframes pulse-glow {
  from {
    opacity: 0.7;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Sections */
.section {
  padding: var(--space-section) 0;
}

.section--white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), #fff 40%),
    #fff;
  border-block: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}

.section--soft {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(42, 91, 215, 0.05), transparent 60%),
    var(--bg-soft);
}

.section--tint {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(59, 111, 227, 0.06), transparent 55%),
    #f3f6fb;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: none;
  margin-bottom: clamp(1.5rem, 3vw, 2.1rem);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  max-width: none;
}

.section-head--center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.section-head .eyebrow {
  margin: 0 0 0.2rem;
}

.split__lead {
  margin: 0 0 1rem;
  max-width: 36ch;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.15rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, var(--accent-soft));
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 8%, transparent);
}

/* Steps */
.steps {
  display: grid;
  gap: 0.9rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-block);
  }
}

.step {
  position: relative;
  background:
    linear-gradient(165deg, #fff 0%, #f5f8fc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 1.3rem;
  opacity: 0;
  transform: translateY(12px);
  box-shadow: var(--shadow-soft);
  counter-increment: step;
  transition:
    opacity 0.55s var(--ease),
    transform var(--dur-fast) var(--ease),
    border-color var(--dur-fast),
    box-shadow var(--dur) var(--ease);
}

.step::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0.95rem;
  right: 1rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--accent) 18%, transparent);
  line-height: 1;
  pointer-events: none;
}

.step.is-in {
  opacity: 1;
  transform: none;
}

.step:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: 0 18px 40px color-mix(in srgb, var(--ink) 6%, transparent);
}

.step.is-in:hover {
  transform: translateY(-3px);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.step .icon-badge {
  margin-bottom: 0.75rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Scenarios */
.scenarios {
  display: grid;
  gap: var(--space-block);
  padding-top: 0.85rem;
}

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

.scenario {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(165deg, #fff 0%, #f7f9fc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 1.25rem 1.35rem;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur-fast),
    box-shadow var(--dur) var(--ease);
}

.scenario__media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  aspect-ratio: 1.55;
  overflow: hidden;
  padding: 1.1rem 1rem 0.85rem;
  background: #fff;
  margin: 0 -1.25rem 1.05rem;
  width: calc(100% + 2.5rem);
}

.scenario__media img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.scenario__actions {
  margin-top: auto;
}

.scenario:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  box-shadow: 0 22px 48px rgba(16, 21, 29, 0.1);
}

.scenario--featured {
  overflow: visible;
  background:
    linear-gradient(165deg, #f3f7ff 0%, #fff 42%, #f8fafc 100%);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  border-width: 2px;
  box-shadow:
    0 22px 52px color-mix(in srgb, var(--accent) 16%, transparent),
    var(--shadow-card);
}

.scenario--featured:hover {
  transform: translateY(-6px);
}

.scenario--featured .scenario__media {
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
}

.scenario__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.34rem 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 35%, transparent);
}

.scenario p:not(.scenario__badge) {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 960px) {
  .scenario--featured {
    transform: translateY(-10px) scale(1.03);
    z-index: 2;
  }

  .scenario--featured.is-in:hover,
  .scenario--featured:hover {
    transform: translateY(-14px) scale(1.03);
  }

  .scenario--featured .scenario__badge {
    transform: translate(-50%, -50%);
  }
}

.scenario__label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scenario__label .icon,
.scenario__label svg.lucide {
  width: 0.85rem;
  height: 0.85rem;
}

.scenario h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.scenario ul {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: #3a4453;
}

.scenario li {
  padding: 0.28rem 0 0.28rem 0.95rem;
  position: relative;
}

.scenario li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.scenario__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: center;
  margin-top: auto;
}

/* Split */
.split {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 820px) {
  .split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.75rem;
    align-items: stretch;
  }

  .split--flip {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .split--flip .split__body {
    order: 2;
  }
}

.split__panel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.35rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 48px rgba(16, 21, 29, 0.08);
}

.split__panel--services {
  background: #fff;
}

.split__card-img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0.35rem auto 0;
  object-fit: contain;
  border-radius: 14px;
}

.split__caption {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.2rem 0.15rem 1.25rem;
  background: none;
}

.split__caption strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.split__caption span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.split__viz {
  position: absolute;
  inset: 1rem 1rem auto 1rem;
  height: 58%;
  z-index: 1;
}

.viz-orb {
  position: absolute;
  width: 140px;
  height: 140px;
  right: 8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 91, 215, 0.35), transparent 70%);
  filter: blur(8px);
}

.viz-orb--warm {
  background: radial-gradient(circle, rgba(232, 145, 45, 0.35), transparent 70%);
  left: 10%;
  right: auto;
}

.viz-card {
  position: absolute;
  width: 148px;
  aspect-ratio: 1.6;
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
}

.viz-card span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 0;
  color: inherit;
}

.viz-card b {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.viz-card--a {
  left: 8%;
  top: 18%;
  background: linear-gradient(145deg, #1e3a8a, #2a5bd7 55%, #60a5fa);
  transform: rotate(-8deg);
}

.viz-card--b {
  right: 10%;
  top: 34%;
  background: linear-gradient(145deg, #0f172a, #334155);
  transform: rotate(10deg);
}

.split__viz--services {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.55rem;
  padding-top: 0.5rem;
}

.viz-chip {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(16, 21, 29, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.viz-chip:nth-child(2) { transform: translateY(4px); }
.viz-chip:nth-child(3) { transform: translateY(-6px); }
.viz-chip:nth-child(4) { transform: translateY(8px); }
.viz-chip:nth-child(5) { transform: translateY(-2px); }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 600;
  color: #3a4453;
  box-shadow: 0 6px 14px rgba(16, 21, 29, 0.04);
  transition: border-color var(--dur-fast), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast);
}

.tag-list li:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(42, 91, 215, 0.1);
}

/* Promo */
.promo {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.45rem, 3vw, 1.9rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(232, 145, 45, 0.14), transparent 55%),
    linear-gradient(145deg, #fffaf3, #fff);
  border: 1px solid #f0d7b0;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--warm) 12%, transparent);
}

@media (min-width: 800px) {
  .promo {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.promo-codes {
  display: grid;
  gap: 0.75rem;
}

.promo-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color var(--dur-fast), transform var(--dur-fast) var(--ease);
}

.promo-code:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  transform: translateX(3px);
}

.promo-code strong {
  letter-spacing: 0.03em;
}

.promo-code span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.copy-btn {
  flex-shrink: 0;
  padding: 0.68rem 1.05rem;
  border-radius: var(--btn-radius);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  background: #fff;
  color: var(--accent);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease),
    background var(--dur-fast),
    box-shadow var(--dur-fast);
}

.copy-btn:hover,
.copy-btn.is-copied {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 18%, transparent);
}

.copy-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Benefits */
.benefits {
  display: grid;
  gap: var(--space-block);
}

@media (min-width: 800px) {
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit {
  background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur-fast),
    box-shadow var(--dur) var(--ease);
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 18px 40px color-mix(in srgb, var(--ink) 6%, transparent);
}

.benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Materials links */
.seo-links {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 700px) {
  .seo-links {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #fff, #f6f8fc);
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur-fast),
    box-shadow var(--dur) var(--ease);
}

.seo-link:hover {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(16, 21, 29, 0.09);
}

.seo-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
}

.seo-link__icon--warm {
  background: color-mix(in srgb, var(--warm) 18%, white);
  color: #b86a12;
}

.seo-link__body {
  min-width: 0;
}

.seo-link strong {
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.seo-link__body > span,
.seo-link span:not(.seo-link__icon):not(.seo-link__body) {
  color: var(--muted);
  font-size: 0.9rem;
}

.seo-link > svg.lucide {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--accent);
  opacity: 0.75;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: 0 12px 28px transparent;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.faq details[open],
.faq details:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--ink) 4%, transparent);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease);
}

.faq details[open] summary::after,
.faq details.is-closing summary::after {
  transform: rotate(45deg);
}

.faq__panel {
  overflow: hidden;
  height: 0;
  transition: height 0.34s var(--ease);
}

.faq__panel p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

@media (prefers-reduced-motion: reduce) {
  .faq__panel,
  .faq summary::after {
    transition: none;
  }
}

/* Reviews */
.reviews {
  display: grid;
  gap: var(--space-block);
}

@media (min-width: 800px) {
  .reviews {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .review--featured {
    grid-row: 1 / span 2;
  }
}

.review {
  margin: 0;
  padding: 1.35rem 1.3rem 1.25rem;
  background: linear-gradient(165deg, #fff, #f7f9fc);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur-fast),
    box-shadow var(--dur) var(--ease);
}

.review--featured {
  padding: 1.65rem 1.55rem 1.45rem;
  background:
    linear-gradient(160deg, #f3f7ff 0%, #fff 48%, #f8fafc 100%);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
  box-shadow:
    0 22px 48px color-mix(in srgb, var(--accent) 10%, transparent),
    var(--shadow-soft);
}

.review__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

.review--featured .review__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, var(--accent-soft));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 14%, transparent);
}

.review__icon svg.lucide {
  width: 1.15rem;
  height: 1.15rem;
}

.review--featured .review__icon svg.lucide {
  width: 1.35rem;
  height: 1.35rem;
}

.review:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  box-shadow: 0 18px 40px color-mix(in srgb, var(--ink) 6%, transparent);
}

.review--featured:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
  box-shadow:
    0 28px 58px color-mix(in srgb, var(--accent) 16%, transparent),
    0 16px 36px color-mix(in srgb, var(--ink) 6%, transparent);
}

.review.is-in:hover {
  transform: translateY(-4px);
}

.review--featured.is-in:hover {
  transform: translateY(-5px);
}

.review p {
  margin: 0 0 0.85rem;
  color: #1f2733;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
}

.review--featured p {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--ink);
}

.review cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

.reviews__more {
  margin: 1.4rem 0 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Final */
.final {
  text-align: center;
  padding: var(--space-section) 0;
  color: #e8eef8;
  background:
    radial-gradient(ellipse 55% 80% at 50% -10%, rgba(96, 165, 250, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(232, 145, 45, 0.16), transparent 55%),
    linear-gradient(160deg, #0f172a 0%, #15233d 48%, #1e3a5f 100%);
  border-top: 0;
}

.final h2 {
  margin: 0 auto 0.55rem;
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: none;
  color: #fff;
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .final h2 {
    white-space: normal;
    max-width: 16ch;
    font-size: clamp(1.65rem, 6.5vw, 2.05rem);
  }
}

.final__lead {
  margin: 0 auto 1.5rem !important;
  max-width: none !important;
  color: rgba(232, 238, 248, 0.88) !important;
  font-size: 1.12rem !important;
  font-weight: 600 !important;
}

.final__trust {
  margin: 1.35rem auto 0 !important;
  max-width: none !important;
  color: rgba(232, 238, 248, 0.55) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

.final p {
  margin: 0 auto 1.5rem;
  color: rgba(232, 238, 248, 0.7);
  max-width: none;
  font-size: 0.98rem;
  font-weight: 500;
}

.final .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.final .btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

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

/* Footer */
.site-footer {
  padding: 2.25rem 0 2.6rem;
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}

.site-footer__grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.site-footer a {
  color: #3a4453;
  text-decoration: none;
  transition: color var(--dur-fast);
}

.site-footer a:hover {
  color: var(--accent);
}

.legal {
  margin: 0.75rem 0 0;
  max-width: 68ch;
  line-height: 1.45;
}

/* —— Inner pages —— */
.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(2.75rem, 6vh, 4rem) 0 clamp(2.25rem, 4.5vh, 3rem);
  background:
    radial-gradient(ellipse 50% 70% at 92% 0%, rgba(42, 91, 215, 0.18), transparent 55%),
    radial-gradient(ellipse 35% 45% at 0% 80%, rgba(232, 145, 45, 0.08), transparent 55%),
    linear-gradient(165deg, #e8eef8 0%, #f5f7fb 55%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #b0b8c4;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  max-width: 18ch;
}

.page-hero__lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
  line-height: 1.6;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  letter-spacing: -0.025em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1rem;
  color: #2c3542;
  line-height: 1.65;
}

.prose ul {
  margin: 0 0 1.15rem;
  padding: 0 0 0 1.15rem;
  color: #2c3542;
}

.prose li {
  margin: 0.35rem 0;
  line-height: 1.55;
}

.prose a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.prose a:not(.btn):hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.prose a.btn {
  text-decoration: none;
}

.prose a.btn:hover {
  text-decoration: none;
}

.page-cta {
  margin: 2rem 0;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--ink) 4%, transparent);
}

.page-cta p {
  margin: 0 0 1rem;
  color: var(--muted);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes card-in {
  to {
    opacity: 1;
  }
}

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

  .hero__brand,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .hero__trust,
  .hero__meta,
  .hero-proof,
  .hero__brands,
  .hero__stage,
  .step,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__glow,
  .hero-card,
  .hero-card--back,
  .hero-card--front,
  .hero-card--main,
  .hero__stage:hover .hero-card--back,
  .hero__stage:hover .hero-card--front,
  .hero__stage:hover .hero-card--main {
    transform: none !important;
  }

  .hero-card--back {
    transform: translate(-70%, -54%) rotate(-16deg) scale(0.9) !important;
  }

  .hero-card--front {
    transform: translate(-30%, -54%) rotate(16deg) scale(0.9) !important;
  }

  .hero-card--main {
    transform: translate(-50%, -38%) scale(1) !important;
  }

  .hero__actions .btn--primary,
  .final .cta-row .btn--primary,
  .scenario .btn--primary,
  .scenario--featured:hover .btn--primary,
  .scenario--featured:focus-within .btn--primary,
  .btn--primary,
  .btn--warm {
    animation: none !important;
    transform: none !important;
  }
}
