/* ============================================================
   Subscale — Core Stylesheet
   Premium dark SaaS theme. Handcrafted, no frameworks.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Background system */
  --bg: #05060A;
  --bg-soft: #0A0C12;
  --bg-elev: #0E111A;

  /* Glass surfaces */
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-strong: rgba(255, 255, 255, 0.14);

  /* Accents */
  --blue: #0A66FF;
  --blue-bright: #2E86FF;
  --purple: #7C5CFF;
  --emerald: #22D39A;
  --red-soft: #ff6b6b;

  /* Text */
  --text: #F4F6FB;
  --text-soft: #A7AEC0;
  --text-dim: #6B7185;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 12px 40px rgba(10, 102, 255, 0.35);

  --grad-accent: linear-gradient(120deg, #0A66FF 0%, #7C5CFF 100%);
  --grad-text: linear-gradient(110deg, #8FB8FF 0%, #B9A6FF 60%, #ffffff 100%);

  /* Layout */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input { font-family: inherit; }

::selection { background: rgba(10, 102, 255, 0.35); color: #fff; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section {
  position: relative;
  padding: clamp(72px, 11vw, 140px) 0;
}
.section--alt { background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0) 40%); }

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 70px);
  text-align: center;
}
.section__title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section__lead {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: clamp(16px, 2.2vw, 19px);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Pill ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  backdrop-filter: blur(8px);
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(34, 211, 154, 0.18);
  animation: pulse-dot 2.2s infinite;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 22px;
  border-radius: 12px;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, border-color 0.3s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16.5px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 102, 255, 0.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(10, 102, 255, 0.5); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--glass-strong); border-color: var(--glass-border-strong); transform: translateY(-2px); }

/* Glow CTA halo */
[data-glow] { isolation: isolate; }
[data-glow]::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-accent);
  filter: blur(16px);
  opacity: 0.45;
  z-index: -1;
  transition: opacity 0.3s;
}
[data-glow]:hover::after { opacity: 0.8; }

/* Button loading state */
.btn__spinner {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  display: none;
}
.btn.is-loading .btn__label { opacity: 0.55; }
.btn.is-loading .btn__spinner { display: inline-block; animation: spin 0.7s linear infinite; }

/* ============================================================
   Ambient background
   ============================================================ */
.bg-ambient { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.bg-ambient__glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.bg-ambient__glow--blue { top: -12%; right: -8%; background: radial-gradient(circle, rgba(10,102,255,0.5), transparent 65%); }
.bg-ambient__glow--purple { top: 38%; left: -14%; background: radial-gradient(circle, rgba(124,92,255,0.42), transparent 65%); }
.bg-ambient__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* ============================================================
   Scroll progress + loader
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-accent);
  z-index: 100;
  box-shadow: 0 0 12px rgba(10,102,255,0.6);
  transition: width 0.1s linear;
}

.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark { display: flex; gap: 7px; align-items: flex-end; height: 44px; }
.loader__bar {
  width: 8px; height: 100%;
  background: var(--grad-accent);
  border-radius: 4px;
  animation: loader-bounce 1s var(--ease) infinite;
}
.loader__bar:nth-child(2) { animation-delay: 0.15s; }
.loader__bar:nth-child(3) { animation-delay: 0.3s; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
  transition: padding 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(7, 8, 14, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--glass-border);
}
.nav.is-scrolled .nav__inner { padding-top: 11px; padding-bottom: 11px; }

.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.nav__logo { transition: transform 0.3s var(--ease); }
.nav__brand:hover .nav__logo { transform: rotate(-8deg) scale(1.05); }
.nav__name { font-size: 19px; letter-spacing: -0.02em; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14.5px; color: var(--text-soft); font-weight: 500;
  position: relative; transition: color 0.25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-accent); transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gutter) 26px;
  background: rgba(7, 8, 14, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
}
.nav__mobile a { padding: 13px 4px; color: var(--text-soft); font-weight: 500; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav__mobile a:last-child { border-bottom: none; margin-top: 12px; }
.nav__mobile .btn { color: #fff; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(130px, 18vw, 180px); padding-bottom: clamp(60px, 9vw, 110px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.hero__title {
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 24px 0;
}
.hero__sub {
  font-size: clamp(17px, 2.3vw, 20px);
  color: var(--text-soft);
  max-width: 540px;
}
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero__meta { display: flex; align-items: center; gap: clamp(18px, 3vw, 32px); margin-top: 46px; flex-wrap: wrap; }
.hero__meta-item strong { display: block; font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; letter-spacing: -0.03em; }
.hero__meta-item span { font-size: 13.5px; color: var(--text-dim); }
.hero__meta-divider { width: 1px; height: 38px; background: var(--glass-border); }

/* ---- Dashboard ---- */
.hero__visual { position: relative; }
.dashboard {
  position: relative;
  background: linear-gradient(160deg, rgba(20,24,36,0.9), rgba(10,12,20,0.9));
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  transition: transform 0.2s var(--ease);
}
.dashboard__glow {
  position: absolute; top: -40%; right: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(10,102,255,0.35), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.dashboard__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.02);
}
.dashboard__dots { display: flex; gap: 6px; }
.dashboard__dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dashboard__dots span:nth-child(1) { background: #ff5f57; }
.dashboard__dots span:nth-child(2) { background: #febc2e; }
.dashboard__dots span:nth-child(3) { background: #28c840; }
.dashboard__title { font-size: 13.5px; font-weight: 600; color: var(--text-soft); }
.dashboard__live { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--emerald); font-weight: 600; }
.dashboard__live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); animation: pulse-dot 1.8s infinite; }

.dashboard__body { padding: 20px; display: flex; flex-direction: column; gap: 18px; }

.kpi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi__card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 14px;
}
.kpi__label { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.kpi__value { font-size: clamp(18px, 2.6vw, 23px); font-weight: 800; letter-spacing: -0.03em; }
.kpi__delta { font-size: 11.5px; font-weight: 600; margin-top: 4px; }
.kpi__delta--up { color: var(--emerald); }
.kpi__delta--down { color: var(--blue-bright); }

.dashboard__chart {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 16px;
}
.dashboard__chart-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.dashboard__chart-label { font-size: 12.5px; color: var(--text-dim); }
.dashboard__chart-big { font-size: clamp(22px, 3vw, 28px); font-weight: 800; letter-spacing: -0.03em; }
.dashboard__legend { display: flex; flex-direction: column; gap: 5px; font-size: 11.5px; color: var(--text-dim); }
.dashboard__legend span { display: flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--blue { background: var(--blue-bright); }
.dot--muted { background: rgba(255,255,255,0.25); }

.chart { width: 100%; height: auto; aspect-ratio: 520 / 180; overflow: visible; }
.chart__grid line { stroke: rgba(255,255,255,0.05); stroke-width: 1; }
.chart__base { stroke: rgba(255,255,255,0.2); stroke-width: 2; stroke-dasharray: 4 5; }
.chart__line { stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 4px 10px rgba(10,102,255,0.4)); }
.chart__pin { fill: #fff; stroke: var(--blue-bright); stroke-width: 3; filter: drop-shadow(0 0 8px rgba(46,134,255,0.8)); }

.dashboard__foot { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.convbar__top { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 7px; }
.convbar__top span { color: var(--text-dim); }
.convbar__top strong { font-weight: 700; }
.convbar__track { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.06); overflow: hidden; }
.convbar__fill { height: 100%; width: 0; border-radius: 6px; background: var(--grad-accent); }
.convbar__fill--green { background: linear-gradient(90deg, var(--emerald), #4ee9b6); }

/* floating chips */
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 15px;
  background: rgba(16, 19, 30, 0.85);
  border: 1px solid var(--glass-border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}
.float-chip strong { display: block; font-size: 15px; font-weight: 800; }
.float-chip small { display: block; font-size: 11px; color: var(--text-dim); }
.float-chip__icon { font-size: 20px; }
.float-chip__icon--green { color: var(--emerald); font-weight: 800; }
.float-chip--1 { top: 8%; left: -7%; animation: float-y 5s ease-in-out infinite; }
.float-chip--2 { bottom: 10%; right: -6%; animation: float-y 6s ease-in-out infinite 0.6s; }

/* ============================================================
   2. TRUST BAR
   ============================================================ */
.trust { padding: 36px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.trust__lead { text-align: center; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 24px; }
.trust__list { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 5vw, 56px); }
.trust__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-soft); transition: color 0.25s; }
.trust__list li:hover { color: var(--text); }
.trust__list svg { width: 22px; height: 22px; color: var(--blue-bright); }

/* ============================================================
   Cards (generic grid)
   ============================================================ */
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(10,102,255,0.12), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: var(--glass-border-strong); background: var(--glass-strong); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.card p { color: var(--text-soft); font-size: 15.5px; }

.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  margin-bottom: 20px; color: var(--text-soft);
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--accent { background: rgba(10,102,255,0.12); border-color: rgba(10,102,255,0.3); color: var(--blue-bright); }

.card--problem .card__icon { color: var(--red-soft); background: rgba(255,107,107,0.08); border-color: rgba(255,107,107,0.2); }

.card__num {
  position: absolute; top: 22px; right: 24px;
  font-size: 14px; font-weight: 800; color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ============================================================
   5. WHY US — Comparison
   ============================================================ */
.compare {
  max-width: 960px; margin: 0 auto;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.compare__row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--glass-border);
}
.compare__row:last-child { border-bottom: none; }
.compare__feature, .compare__col { padding: 18px 22px; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.compare__feature { font-weight: 600; color: var(--text-soft); }
.compare__col--them { color: var(--text-dim); border-left: 1px solid var(--glass-border); }
.compare__col--us { color: var(--text); border-left: 1px solid var(--glass-border); background: rgba(10,102,255,0.06); font-weight: 500; }
.compare__row--head .compare__feature,
.compare__row--head .compare__col { font-weight: 700; font-size: 15.5px; color: var(--text); text-transform: none; }
.compare__row--head { background: rgba(255,255,255,0.02); }
.compare__col--us.compare__col { }
.compare .ok { color: var(--emerald); font-weight: 800; }
.compare .x { color: var(--text-dim); font-weight: 700; }

/* ============================================================
   6. RESULTS — stats
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.stat:hover { transform: translateY(-6px); border-color: var(--glass-border-strong); box-shadow: var(--shadow-md); }
.stat__value { font-size: clamp(34px, 5vw, 50px); font-weight: 800; letter-spacing: -0.04em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--text-soft); font-size: 14.5px; margin-top: 6px; }
.stat__spark { display: flex; align-items: flex-end; gap: 5px; height: 44px; margin-top: 20px; }
.stat__spark span { flex: 1; height: var(--h); background: var(--grad-accent); border-radius: 4px; opacity: 0.85; transform-origin: bottom; }

/* ============================================================
   7. PROCESS — timeline
   ============================================================ */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 28px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--glass-border-strong) 12%, var(--glass-border-strong) 88%, transparent);
}
.timeline__step { position: relative; }
.timeline__node {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px;
  background: var(--bg-elev); border: 1px solid var(--glass-border-strong);
  color: var(--blue-bright);
  margin-bottom: 22px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
  transition: transform 0.35s var(--ease), border-color 0.35s, color 0.35s;
}
.timeline__step:hover .timeline__node { transform: scale(1.08); border-color: var(--blue); color: #fff; background: var(--grad-accent); }
.timeline__card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.timeline__card p { color: var(--text-soft); font-size: 14.5px; }

/* ============================================================
   8. GUARANTEE
   ============================================================ */
.guarantee {
  position: relative;
  display: flex; gap: 32px; align-items: flex-start;
  max-width: 940px; margin: 0 auto;
  padding: clamp(30px, 5vw, 50px);
  background: linear-gradient(150deg, rgba(10,102,255,0.12), rgba(124,92,255,0.08));
  border: 1px solid rgba(10,102,255,0.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s var(--ease);
}
.guarantee__glow { position: absolute; top: -50%; right: -10%; width: 50%; height: 100%; background: radial-gradient(circle, rgba(124,92,255,0.4), transparent 70%); filter: blur(50px); pointer-events: none; }
.guarantee__icon {
  flex-shrink: 0; width: 70px; height: 70px; border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border-strong);
  color: var(--emerald);
}
.guarantee__icon svg { width: 36px; height: 36px; }
.guarantee__body h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.03em; margin: 8px 0 14px; }
.guarantee__body p { color: var(--text-soft); font-size: 16px; }
.guarantee__terms { margin-top: 16px; font-size: 13px; color: var(--text-dim); border-top: 1px solid var(--glass-border); padding-top: 16px; }

/* ============================================================
   9. TESTIMONIALS — carousel
   ============================================================ */
.carousel { position: relative; max-width: 920px; margin: 0 auto; overflow: hidden; }
.carousel__track { display: flex; transition: transform 0.6s var(--ease); }
.testimonial {
  flex: 0 0 100%;
  padding: clamp(28px, 4vw, 46px);
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.testimonial__stars { color: #FFC857; font-size: 18px; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial blockquote { font-size: clamp(18px, 2.6vw, 24px); font-weight: 500; line-height: 1.45; letter-spacing: -0.02em; }
.testimonial__foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.testimonial__person { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px; color: #fff;
  background: var(--grad-accent);
}
.testimonial__person strong { display: block; font-size: 15.5px; }
.testimonial__person small { color: var(--text-dim); font-size: 13.5px; }
.testimonial__metric { text-align: right; }
.testimonial__metric strong { display: block; font-size: 24px; font-weight: 800; color: var(--emerald); letter-spacing: -0.03em; }
.testimonial__metric small { color: var(--text-dim); font-size: 12.5px; }

.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.carousel__btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text); transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.carousel__btn:hover { background: var(--glass-strong); transform: scale(1.08); border-color: var(--glass-border-strong); }
.carousel__dots { display: flex; gap: 9px; }
.carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.2); transition: all 0.3s var(--ease);
}
.carousel__dots button.is-active { width: 26px; border-radius: 6px; background: var(--grad-accent); }

/* ============================================================
   10. FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq__item[open] { border-color: var(--glass-border-strong); background: var(--glass-strong); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-size: 17px; font-weight: 600;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--blue-bright); border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__content { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); }
.faq__content p { color: var(--text-soft); font-size: 15.5px; }
.faq__item[open] .faq__content { max-height: 320px; padding-bottom: 24px; }

/* ============================================================
   11. FINAL CTA
   ============================================================ */
.cta-final { padding: clamp(72px, 11vw, 130px) 0; }
.cta-final__card {
  position: relative;
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: clamp(40px, 6vw, 70px) clamp(26px, 5vw, 60px);
  background: linear-gradient(160deg, rgba(20,24,38,0.85), rgba(10,12,20,0.9));
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-final__glow { position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 80%; height: 120%; background: radial-gradient(circle, rgba(10,102,255,0.3), transparent 65%); filter: blur(60px); pointer-events: none; }
.cta-final__card h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin: 22px 0 14px; line-height: 1.08; }
.cta-final__card > p { color: var(--text-soft); font-size: 18px; max-width: 520px; margin: 0 auto; }

.cta-form { margin-top: 32px; text-align: left; }
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field input {
  width: 100%; padding: 15px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  border-radius: 12px; color: var(--text); font-size: 15.5px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field input::placeholder { color: var(--text-dim); }
.field input:focus { outline: none; border-color: var(--blue); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 4px rgba(10,102,255,0.15); }
.field input.is-invalid { border-color: var(--red-soft); box-shadow: 0 0 0 4px rgba(255,107,107,0.12); }
.field__error { display: block; color: var(--red-soft); font-size: 12.5px; margin-top: 6px; min-height: 1px; }
.cta-form__note { text-align: center; color: var(--text-dim); font-size: 13.5px; margin-top: 14px; }
.cta-form__note.is-success { color: var(--emerald); font-weight: 600; }

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--glass-border); padding-top: 64px; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(10,102,255,0.03) 100%); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__brand p { color: var(--text-soft); font-size: 14.5px; margin-top: 16px; max-width: 320px; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-soft); font-size: 14.5px; padding: 6px 0; transition: color 0.25s; }
.footer__col a:hover { color: var(--text); }
.footer__socials { display: flex; gap: 12px; margin-top: 14px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 10px; padding: 0;
  display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text-soft); transition: all 0.25s;
}
.footer__socials a:hover { color: #fff; background: var(--glass-strong); transform: translateY(-3px); border-color: var(--glass-border-strong); }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 24px var(--gutter); border-top: 1px solid var(--glass-border);
  font-size: 13px; color: var(--text-dim);
}
.footer__fine { max-width: 420px; text-align: right; }

/* ============================================================
   CRO ADD-ONS (v2) — new sections & conversion elements
   ============================================================ */

/* ---- Hero reassurance line + meta tweak ---- */
.hero__reassure {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 14px; color: var(--text-soft);
}
.hero__reassure svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }
.hero__meta-item strong { font-size: clamp(17px, 2.2vw, 20px); }
.hero__meta-item span { max-width: 150px; line-height: 1.35; }

/* small caption on the dashboard visual */
.visual-note {
  position: absolute; bottom: -26px; right: 4px;
  font-size: 11px; color: var(--text-dim); letter-spacing: 0.03em;
}

/* ---- Placeholder labelling system ---- */
.ph-note {
  margin-top: 22px; text-align: center;
  font-size: 13px; color: var(--text-dim);
  max-width: 640px; margin-inline: auto; line-height: 1.5;
}
.ph-note--center { margin-top: 14px; }
.ph-badge {
  display: inline-block; margin-bottom: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffd27d;
  background: rgba(255, 196, 87, 0.1);
  border: 1px dashed rgba(255, 196, 87, 0.4);
  padding: 4px 10px; border-radius: 999px;
}
.ph-badge--center { display: block; width: max-content; margin: 12px auto 0; }

/* ============================================================
   2. SOCIAL PROOF BAR
   ============================================================ */
.proof { padding: clamp(40px, 6vw, 64px) 0; border-bottom: 1px solid var(--glass-border); }
.proof__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 920px; margin: 0 auto 40px;
}
.proof__stat { text-align: center; }
.proof__stat strong {
  display: block; font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -0.04em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof__stat span { font-size: 13.5px; color: var(--text-dim); }
.proof__lead { text-align: center; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 24px; }

.logo-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.logo-ph {
  flex: 0 1 auto; min-width: 150px; height: 64px;
  display: grid; place-items: center;
  background: var(--glass); border: 1px dashed var(--glass-border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-dim); font-size: 13px; font-weight: 600;
  padding: 0 22px; transition: border-color 0.25s, color 0.25s;
}
.logo-ph:hover { border-color: var(--blue); color: var(--text-soft); }

/* ---- Section transition line (problem) ---- */
.section__turn {
  max-width: 680px; margin: 40px auto 0; text-align: center;
  font-size: clamp(17px, 2.4vw, 21px); color: var(--text-soft);
}
.section__turn strong { color: var(--text); }

/* ============================================================
   6. CASE STUDIES
   ============================================================ */
.cases { max-width: 1000px; margin: 0 auto; }
.cases__tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.cases__tab {
  padding: 11px 20px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text-soft); font-weight: 600; font-size: 14.5px;
  transition: all 0.25s var(--ease);
}
.cases__tab:hover { color: var(--text); border-color: var(--glass-border-strong); }
.cases__tab.is-active { color: #fff; background: var(--grad-accent); border-color: transparent; box-shadow: 0 8px 22px rgba(10,102,255,0.32); }

.case-panel { display: none; animation: case-fade 0.5s var(--ease); }
.case-panel.is-active { display: block; }
@keyframes case-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.case-panel__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
}
.case-step { padding: 12px 0; border-bottom: 1px solid var(--glass-border); }
.case-step:last-child { border-bottom: none; }
.case-step__k { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-bright); font-weight: 700; margin-bottom: 4px; }
.case-step p { color: var(--text-soft); font-size: 15px; }

.case-panel__proof { display: flex; flex-direction: column; gap: 20px; }
.ba { display: flex; align-items: center; gap: 14px; }
.ba__col {
  flex: 1; text-align: center; padding: 18px 12px;
  border-radius: var(--radius); border: 1px solid var(--glass-border);
}
.ba__col span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 6px; }
.ba__col strong { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.03em; }
.ba__col strong small { font-size: 13px; font-weight: 600; color: var(--text-dim); margin-left: 2px; }
.ba__col--before { background: rgba(255,255,255,0.02); color: var(--text-soft); }
.ba__col--after { background: rgba(10,102,255,0.08); border-color: rgba(10,102,255,0.3); }
.ba__col--after strong { color: var(--text); }
.ba__arrow { color: var(--blue-bright); font-size: 22px; font-weight: 700; }

.ba-chart { display: flex; align-items: flex-end; gap: 7px; height: 90px; padding: 14px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); }
.ba-chart span { flex: 1; height: var(--h); background: var(--grad-accent); border-radius: 5px; opacity: 0.9; }

.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.case-metrics li { text-align: center; padding: 14px 8px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); }
.case-metrics strong { display: block; font-size: 20px; font-weight: 800; color: var(--emerald); letter-spacing: -0.02em; }
.case-metrics span { font-size: 11.5px; color: var(--text-dim); }

.cases__cta { text-align: center; margin-top: 36px; }

/* ============================================================
   8. CREDIBILITY GRID
   ============================================================ */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cred-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.cred-item:hover { transform: translateY(-5px); border-color: var(--glass-border-strong); background: var(--glass-strong); }
.cred-item__icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  display: grid; place-items: center;
  background: rgba(10,102,255,0.12); border: 1px solid rgba(10,102,255,0.3); color: var(--blue-bright);
}
.cred-item__icon svg { width: 24px; height: 24px; }
.cred-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.cred-item p { color: var(--text-soft); font-size: 14.5px; }

/* ============================================================
   9. FOUNDER
   ============================================================ */
.founder {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.founder__media { position: relative; }
.founder__img {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20,24,38,0.9), rgba(10,12,20,0.95));
  border: 1px dashed var(--glass-border-strong);
  display: grid; place-items: center;
  color: var(--text-dim); font-size: 14px; font-weight: 600;
  position: relative; overflow: hidden;
}
.founder__img::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(10,102,255,0.18), transparent 60%);
}
.founder__body h2 { font-size: clamp(24px, 3.6vw, 36px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; margin: 10px 0 18px; }
.founder__body p { color: var(--text-soft); font-size: 16px; margin-bottom: 14px; }
.founder__sign { color: var(--text); font-weight: 600; font-style: italic; margin: 18px 0 22px; }

/* ============================================================
   14. QUALIFICATION FORM (expanded)
   ============================================================ */
.cta-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 8px; text-align: left; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-soft); margin-bottom: 7px; }
.field__opt { color: var(--text-dim); font-weight: 400; }
.cta-form .field { margin-bottom: 4px; }
.cta-form select, .cta-form textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  border-radius: 12px; color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.cta-form textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.cta-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A7AEC0' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.cta-form select:focus, .cta-form textarea:focus { outline: none; border-color: var(--blue); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 4px rgba(10,102,255,0.15); }
.cta-form select.is-invalid, .cta-form textarea.is-invalid { border-color: var(--red-soft); box-shadow: 0 0 0 4px rgba(255,107,107,0.12); }
.cta-form select option { background: #0E111A; color: var(--text); }
.cta-form .btn--block { margin-top: 18px; }

/* ============================================================
   CRO v3 — leaner conversion-first components
   ============================================================ */

/* Section size variants for whitespace control */
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }
.section__head--sm { margin-bottom: clamp(28px, 4vw, 40px); }
.section__title--sm { font-size: clamp(22px, 3vw, 30px); }
.section__cta { text-align: center; margin-top: clamp(36px, 5vw, 52px); }

/* ---- Hero: removed meta strip, give the sub room to breathe ---- */
.hero__reassure {
  display: flex; align-items: center; gap: 8px;
  margin-top: 22px; font-size: 14px; color: var(--text-soft);
}
.hero__reassure svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }

/* ============================================================
   HOW IT WORKS — 3 step timeline
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch; gap: 18px;
  max-width: 960px; margin: 0 auto;
}
.step {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 32px 26px; text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}
.step:hover { transform: translateY(-6px); border-color: var(--glass-border-strong); background: var(--glass-strong); box-shadow: var(--shadow-md); }
.step__num {
  width: 52px; height: 52px; margin: 0 auto 18px;
  display: grid; place-items: center; border-radius: 50%;
  font-weight: 800; font-size: 20px; color: #fff;
  background: var(--grad-accent); box-shadow: 0 8px 22px rgba(10,102,255,0.35);
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.step p { color: var(--text-soft); font-size: 14.5px; }
.step__arrow { display: flex; align-items: center; justify-content: center; color: var(--text-dim); }

/* ============================================================
   IS THIS YOU? — qualify checklist
   ============================================================ */
.qualify { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qualify__item {
  display: flex; align-items: center; gap: 14px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 18px 20px;
  font-size: 16px; font-weight: 500; color: var(--text);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.qualify__item:hover { border-color: rgba(10,102,255,0.4); background: var(--glass-strong); transform: translateX(4px); }
.qualify__check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(10,102,255,0.14); border: 1px solid rgba(10,102,255,0.3); color: var(--blue-bright);
}
.qualify__check svg { width: 17px; height: 17px; }

/* ============================================================
   REAL RESULTS FRAMEWORK — metric cards
   ============================================================ */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.metric {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}
.metric:hover { transform: translateY(-6px); border-color: var(--glass-border-strong); background: var(--glass-strong); box-shadow: var(--shadow-md); }
.metric__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.metric__name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.metric__arrow { font-size: 16px; font-weight: 700; color: var(--emerald); }
.metric__arrow--down { color: var(--blue-bright); }
.metric__spark { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-bottom: 16px; }
.metric__spark span { flex: 1; height: var(--h); border-radius: 5px; background: linear-gradient(180deg, var(--emerald), rgba(34,211,154,0.25)); transform-origin: bottom; }
.metric__spark--down span { background: linear-gradient(180deg, var(--blue-bright), rgba(46,134,255,0.25)); }
.metric.is-visible .metric__spark span { animation: rise-bar 0.7s var(--ease) forwards; }
.metric.is-visible .metric__spark span:nth-child(1) { animation-delay: 0.04s; }
.metric.is-visible .metric__spark span:nth-child(2) { animation-delay: 0.10s; }
.metric.is-visible .metric__spark span:nth-child(3) { animation-delay: 0.16s; }
.metric.is-visible .metric__spark span:nth-child(4) { animation-delay: 0.22s; }
.metric.is-visible .metric__spark span:nth-child(5) { animation-delay: 0.28s; }
.metric.is-visible .metric__spark span:nth-child(6) { animation-delay: 0.34s; }
.metric p { color: var(--text-soft); font-size: 14px; }

/* ============================================================
   CASE STUDIES — vertical flow + trend
   ============================================================ */
.cases { max-width: 1000px; margin: 0 auto; }
.cases__tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cases__tab {
  padding: 11px 20px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text-soft); font-weight: 600; font-size: 14.5px;
  transition: all 0.25s var(--ease);
}
.cases__tab:hover { color: var(--text); border-color: var(--glass-border-strong); }
.cases__tab.is-active { color: #fff; background: var(--grad-accent); border-color: transparent; box-shadow: 0 8px 22px rgba(10,102,255,0.32); }

.case-panel { display: none; animation: case-fade 0.5s var(--ease); }
.case-panel.is-active { display: block; }
@keyframes case-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.case-panel__grid {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 28px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
}
.case-flow__label { display: inline-block; font-size: 12.5px; color: var(--text-dim); margin-bottom: 14px; letter-spacing: 0.02em; }
.case-flow__step { position: relative; padding: 0 0 18px 26px; }
.case-flow__step::before { content: ""; position: absolute; left: 5px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue-bright); }
.case-flow__step::after { content: ""; position: absolute; left: 9px; top: 16px; bottom: 0; width: 2px; background: var(--glass-border-strong); }
.case-flow__step:last-child::after { display: none; }
.case-flow__step--win::before { background: var(--emerald); box-shadow: 0 0 0 4px rgba(34,211,154,0.18); }
.case-flow__k { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-bright); font-weight: 700; margin-bottom: 3px; }
.case-flow__step--win .case-flow__k { color: var(--emerald); }
.case-flow__step p { color: var(--text-soft); font-size: 14.5px; }

.case-panel__proof { display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.case-trend { display: flex; align-items: flex-end; gap: 8px; height: 130px; padding: 18px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); }
.case-trend span { flex: 1; height: var(--h); background: var(--grad-accent); border-radius: 6px; opacity: 0.9; }
.case-out { display: flex; flex-direction: column; gap: 10px; }
.case-out li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; color: var(--text); }
.case-out__arrow { color: var(--emerald); font-weight: 800; }
.case-out__arrow--down { color: var(--blue-bright); }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  max-width: 920px; margin: 0 auto;
}
.trust-band li {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-border);
  font-size: 14.5px; font-weight: 600; color: var(--text-soft);
  transition: color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.trust-band li:hover { color: var(--text); border-color: var(--glass-border-strong); transform: translateY(-3px); }
.trust-band svg { width: 19px; height: 19px; color: var(--blue-bright); }

/* ============================================================
   MINIMAL FOOTER
   ============================================================ */
.footer--min { padding-top: 40px; }
.footer__row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-bottom: 24px;
}
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__nav a { color: var(--text-soft); font-size: 14.5px; font-weight: 500; transition: color 0.25s; }
.footer__nav a:hover { color: var(--text); }
.footer__copy {
  border-top: 1px solid var(--glass-border); padding-top: 22px; padding-bottom: 28px;
  font-size: 13px; color: var(--text-dim); text-align: center;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 8, 14, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--glass-border);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ============================================================
   CRO v4 — funnel tightening (bigger hero, multi-step + calendar,
   exit intent, floating CTA, micro-trust)
   ============================================================ */

/* ---- Bigger, louder hero ---- */
.hero__title { font-size: clamp(44px, 7.2vw, 84px); }
.hero__sub { font-size: clamp(18px, 2.4vw, 22px); max-width: 500px; }

.btn--xl { padding: 20px 38px; font-size: 19px; border-radius: 14px; font-weight: 700; }

/* Micro-trust row under hero CTA */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 24px;
}
.hero__trust li {
  font-size: 13.5px; font-weight: 600; color: var(--text-soft);
  letter-spacing: -0.01em;
}

/* ============================================================
   MULTI-STEP FORM
   ============================================================ */
.msf { position: relative; }
.msf__progress { margin-bottom: 26px; }
.msf__track { height: 5px; border-radius: 6px; background: rgba(255,255,255,0.07); overflow: hidden; }
.msf__fill { display: block; height: 100%; width: 33%; border-radius: 6px; background: var(--grad-accent); transition: width 0.4s var(--ease); }
.msf__labels { display: flex; justify-content: space-between; margin-top: 10px; }
.msf__labels li { font-size: 12.5px; font-weight: 600; color: var(--text-dim); transition: color 0.3s; }
.msf__labels li.is-active { color: var(--blue-bright); }
.msf__labels li.is-done { color: var(--emerald); }

.msf__step { border: none; padding: 0; margin: 0; display: none; }
.msf__step.is-active { display: block; animation: msf-in 0.35s var(--ease); }
@keyframes msf-in { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }

.msf__step .btn { margin-top: 4px; }
.msf__nav { display: flex; gap: 12px; margin-top: 6px; }
.msf__nav .btn { flex: 1; margin-top: 0; }
.msf__nav .btn--ghost { flex: 0 0 auto; min-width: 110px; }

.cta-form__note { transition: opacity 0.3s; }
.cta-form__note.is-error { color: var(--red-soft); font-weight: 600; }

/* ============================================================
   BOOKING CALENDAR
   ============================================================ */
.msf__cal-lead { text-align: center; font-size: 16px; font-weight: 600; margin-bottom: 18px; }
.cal { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.cal__heading { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 10px; }
.cal__days { display: flex; flex-direction: column; gap: 8px; max-height: 232px; overflow-y: auto; padding-right: 4px; }
.cal__slots { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-content: start; }
.cal__day, .cal__slot {
  padding: 12px 14px; border-radius: 12px; text-align: left;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  color: var(--text); font-size: 14px; font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.cal__slot { text-align: center; }
.cal__day:hover, .cal__slot:hover { border-color: rgba(10,102,255,0.5); transform: translateY(-1px); }
.cal__day.is-active, .cal__slot.is-active { background: rgba(10,102,255,0.16); border-color: var(--blue); color: #fff; }
.cal__day small { display: block; font-size: 11.5px; font-weight: 500; color: var(--text-dim); }
.cal__day.is-active small { color: #cfe0ff; }
.cal__slots-empty { grid-column: 1 / -1; color: var(--text-dim); font-size: 13.5px; padding: 8px 2px; }

/* Success state */
.msf__success { text-align: center; padding: 14px 0 4px; animation: msf-in 0.4s var(--ease); }
.msf__success-icon { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--emerald); }
.msf__success-icon svg { width: 100%; height: 100%; }
.msf__success h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.msf__success p { color: var(--text); font-size: 17px; margin-top: 8px; }
.msf__success-sub { color: var(--text-soft) !important; font-size: 14px !important; }

/* ============================================================
   DESKTOP FLOATING CTA  (after 40% scroll)
   ============================================================ */
.float-cta {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px; border-radius: 999px;
  background: var(--grad-accent); color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: 0 12px 34px rgba(10,102,255,0.45);
  opacity: 0; transform: translateY(20px) scale(0.96); pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.3s;
}
.float-cta.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 44px rgba(10,102,255,0.6); }
.float-cta svg { width: 18px; height: 18px; }

/* ============================================================
   EXIT-INTENT MODAL
   ============================================================ */
.exit {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 24px;
  visibility: hidden; opacity: 0;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.exit.is-open { visibility: visible; opacity: 1; }
.exit__backdrop { position: absolute; inset: 0; background: rgba(3,4,8,0.7); backdrop-filter: blur(6px); }
.exit__card {
  position: relative; z-index: 1; width: min(460px, 100%);
  text-align: center;
  padding: clamp(30px, 5vw, 44px);
  background: linear-gradient(160deg, rgba(20,24,38,0.96), rgba(10,12,20,0.98));
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: translateY(16px) scale(0.97); transition: transform 0.35s var(--ease);
}
.exit.is-open .exit__card { transform: translateY(0) scale(1); }
.exit__card h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; letter-spacing: -0.03em; margin: 16px 0 12px; line-height: 1.1; }
.exit__card > p { color: var(--text-soft); font-size: 16px; margin-bottom: 24px; }
.exit__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; color: var(--text-dim);
  transition: color 0.2s, background 0.2s;
}
.exit__close:hover { color: var(--text); background: var(--glass); }

/* ============================================================
   MINIMAL FOOTER (logo + CTA + copyright)
   ============================================================ */
.footer__min {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 30px 0;
}
.footer__rights { font-size: 13px; color: var(--text-dim); }

/* ---------- Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
