:root {
  --bg: #050a14;
  --bg-2: #0a1424;
  --card: rgba(255, 255, 255, 0.04);
  --card-hover: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --blue: #5ea4ff;
  --blue-2: #7c8cff;
  --teal: #2ee6a8;
  --gold: #f5c451;
  --violet: #a78bfa;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1180px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(94, 164, 255, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(46, 230, 168, 0.1), transparent),
    linear-gradient(180deg, #050a14 0%, #0a1424 50%, #050a14 100%);
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.55;
  animation: orb-float 20s ease-in-out infinite;
}
.bg-orb-1 { width: 55vw; height: 55vw; top: -20vw; left: -15vw; background: rgba(94, 164, 255, 0.35); }
.bg-orb-2 { width: 45vw; height: 45vw; top: 30vh; right: -18vw; background: rgba(46, 230, 168, 0.22); animation-delay: -8s; }
.bg-orb-3 { width: 35vw; height: 35vw; bottom: -10vw; left: 25vw; background: rgba(124, 140, 255, 0.25); animation-delay: -14s; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4vw, 3vh) scale(1.05); }
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.08); }
.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(94, 164, 255, 0.35);
}
.btn.primary:hover { box-shadow: 0 20px 50px rgba(94, 164, 255, 0.45); }
.btn.ghost { background: transparent; }
.btn.lg { padding: 16px 26px; font-size: 16px; border-radius: 16px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(20px);
  background: rgba(5, 10, 20, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { background: rgba(5, 10, 20, 0.92); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--nav-h);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #0e2748, #0b1830);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-family: Sora, Inter, sans-serif; font-size: 18px; letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 24px; align-items: center; font-size: 14px; font-weight: 600; color: var(--muted); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.lang-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.menu-toggle { display: none; }

/* hero */
main { padding-top: var(--nav-h); }
.hero { padding: 72px 0 48px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(94, 164, 255, 0.1);
  border: 1px solid rgba(94, 164, 255, 0.25);
  color: #b8d9ff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 230, 168, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(46, 230, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 230, 168, 0); }
}
h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0;
  font-weight: 800;
}
.gradient-text {
  background: linear-gradient(120deg, #fff 0%, #9ed3ff 40%, #7ef0c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 52ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted); }

/* hero visual */
.hero-visual {
  position: relative;
  animation: float-y 6s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.dash-mock {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 20px;
  backdrop-filter: blur(12px);
}
.dash-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(46, 230, 168, 0.15);
  color: var(--teal);
  font-size: 11px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.dash-stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-stat-label { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.dash-stat-value {
  font-family: Sora, Inter, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.dash-stat-value.teal { color: var(--teal); }
.dash-stat-value.blue { color: var(--blue); }
.dash-stat-value.gold { color: var(--gold); }
.float-badge {
  position: absolute;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(10, 20, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: float-y 5s ease-in-out infinite;
}
.float-badge-1 { top: -8px; right: -12px; animation-delay: -1s; }
.float-badge-2 { bottom: 24px; left: -20px; animation-delay: -2.5s; }

/* trust strip */
.trust-strip {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(120deg, #fff, #9ed3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-item span { font-size: 13px; color: var(--muted); display: block; margin-top: 6px; }

/* sections */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.8px;
  margin: 0 0 16px;
  line-height: 1.15;
}
.section-head p { margin: 0; color: var(--muted-2); font-size: 17px; }

/* impact cards */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.impact-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.impact-card:hover {
  transform: translateY(-4px);
  background: var(--card-hover);
  border-color: rgba(94, 164, 255, 0.25);
}
.impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity 0.35s;
}
.impact-card:hover::before { opacity: 1; }
.impact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.impact-icon.time { background: rgba(94, 164, 255, 0.15); }
.impact-icon.reviews { background: rgba(245, 196, 81, 0.15); }
.impact-icon.noshow { background: rgba(46, 230, 168, 0.15); }
.impact-icon.retention { background: rgba(167, 139, 250, 0.15); }
.impact-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.impact-icon.time svg { stroke: var(--blue); }
.impact-icon.reviews svg { stroke: var(--gold); }
.impact-icon.noshow svg { stroke: var(--teal); }
.impact-icon.retention svg { stroke: var(--violet); }
.impact-metric {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}
.impact-metric .accent-teal { color: var(--teal); }
.impact-metric .accent-gold { color: var(--gold); }
.impact-metric span { font-size: 0.42em; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.impact-card h3 { margin: 0 0 10px; font-size: 20px; font-family: Sora, Inter, sans-serif; }
.impact-card p { margin: 0; color: var(--muted-2); font-size: 15px; line-height: 1.65; }
.impact-money {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(46, 230, 168, 0.08);
  border: 1px solid rgba(46, 230, 168, 0.2);
  font-size: 14px;
  font-weight: 600;
  color: #9cf0d0;
}
.impact-disclaimer {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ROI calculator */
.roi-box {
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(94,164,255,.08), rgba(46,230,168,.06));
  border: 1px solid rgba(94, 164, 255, 0.2);
}
.roi-box h3 { margin: 0 0 8px; font-family: Sora, Inter, sans-serif; font-size: 22px; }
.roi-head { margin-bottom: 22px; }
.roi-head p { margin: 6px 0 0; color: var(--muted-2); font-size: 15px; }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.roi-controls { display: grid; gap: 22px; }
.roi-field-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.roi-field-head label { font-size: 13px; font-weight: 600; color: var(--muted); }
.roi-field-val { font-family: Sora, Inter, sans-serif; font-size: 20px; font-weight: 800; color: var(--text); }
.roi-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; padding: 0; border: none; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal)) 0 / var(--p, 50%) 100% no-repeat, rgba(255, 255, 255, 0.09);
  outline: none; cursor: pointer;
}
.roi-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); box-shadow: 0 4px 14px rgba(94, 164, 255, 0.5); transition: transform 0.15s ease; }
.roi-slider::-webkit-slider-thumb:active { transform: scale(1.18); }
.roi-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); box-shadow: 0 4px 14px rgba(94, 164, 255, 0.5); }
.roi-slider::-moz-range-progress { height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.roi-slider::-moz-range-track { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.09); }
.roi-slider:focus-visible { box-shadow: 0 0 0 3px rgba(94, 164, 255, 0.25); }
.roi-hours { position: relative; overflow: hidden; display: flex; align-items: center; gap: 16px; margin-top: 2px; padding: 18px 20px; border-radius: 16px; background: linear-gradient(135deg, rgba(94, 164, 255, 0.12), rgba(46, 230, 168, 0.07)); border: 1px solid rgba(94, 164, 255, 0.22); }
.roi-hours::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--blue), var(--teal)); }
.roi-hours-ic { flex: 0 0 auto; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: rgba(94, 164, 255, 0.15); box-shadow: 0 0 26px rgba(94, 164, 255, 0.28); }
.roi-hours-ic svg { width: 25px; height: 25px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.roi-hours-val { font-family: Sora, Inter, sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -1px; line-height: 1; background: linear-gradient(120deg, #fff, #9ed3ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.roi-hours-lbl { font-size: 13px; font-weight: 600; color: var(--muted-2); margin-top: 4px; }
.roi-hours-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.roi-viz { padding: 24px; border-radius: var(--radius); background: rgba(0, 0, 0, 0.22); border: 1px solid rgba(255, 255, 255, 0.07); }
.roi-total-lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.roi-total { font-family: Sora, Inter, sans-serif; font-size: clamp(34px, 5vw, 48px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin: 4px 0 20px; background: linear-gradient(120deg, #fff, #7ef0c8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.roi-bars { display: grid; gap: 16px; }
.roi-bar-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--muted-2); margin-bottom: 7px; }
.roi-bar-val { font-family: Sora, Inter, sans-serif; font-weight: 800; color: var(--text); font-size: 15px; }
.roi-bar-track { height: 12px; border-radius: 999px; background: rgba(0, 0, 0, 0.35); overflow: hidden; }
.roi-bar-fill { height: 100%; width: 0; border-radius: 999px; transition: width 0.55s cubic-bezier(0.2, 0.8, 0.2, 1); }
.roi-bar-fill.teal { background: linear-gradient(90deg, #1f9d74, var(--teal)); }
.roi-bar-fill.gold { background: linear-gradient(90deg, #c89a2e, var(--gold)); }
.roi-cost { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.roi-cost-label { font-size: 13px; font-weight: 600; color: var(--muted-2); }
.roi-cost-note { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; }
.roi-cost-val { font-family: Sora, Inter, sans-serif; font-weight: 800; font-size: 17px; color: var(--text); white-space: nowrap; }
.roi-cta { width: 100%; margin-top: 18px; white-space: normal; line-height: 1.3; height: auto; min-width: 0; }
.roi-foot { margin: 16px 0 0; font-size: 11px; color: var(--muted); text-align: center; }
.roi-controls, .roi-viz { min-width: 0; }
@media (max-width: 768px) {
  .roi-grid { grid-template-columns: 1fr; gap: 18px; }
  .roi-box { padding: 20px; }
  .roi-viz { padding: 18px; }
  .roi-hours { padding: 16px; gap: 14px; }
  .roi-hours-val { font-size: 28px; }
  .roi-cost { flex-direction: column; align-items: flex-start; gap: 6px; }
  .roi-cost-val { font-size: 20px; background: linear-gradient(120deg, #fff, #9ed3ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
}

/* features bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.bento-card:hover { transform: translateY(-3px); border-color: rgba(94, 164, 255, 0.2); }
.bento-card.wide { grid-column: span 2; }
.bento-card h3 { margin: 12px 0 8px; font-size: 18px; font-family: Sora, Inter, sans-serif; }
.bento-card p { margin: 0; font-size: 14px; color: var(--muted-2); line-height: 1.6; }
.bento-emoji { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(94, 164, 255, 0.1); border: 1px solid rgba(94, 164, 255, 0.18); margin-bottom: 6px; }
.bento-emoji svg { width: 23px; height: 23px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bento-card:nth-child(4n+1) .bento-emoji svg { stroke: var(--blue); }
.bento-card:nth-child(4n+2) .bento-emoji svg { stroke: var(--teal); }
.bento-card:nth-child(4n+3) .bento-emoji svg { stroke: var(--gold); }
.bento-card:nth-child(4n+4) .bento-emoji svg { stroke: var(--violet); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; font-size: 18px; font-family: Sora, Inter, sans-serif; }
.step p { margin: 0; font-size: 14px; color: var(--muted-2); }

/* pricing */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
}
.pricing-card.featured {
  background: linear-gradient(145deg, rgba(94,164,255,.12), rgba(46,230,168,.06));
  border-color: rgba(94, 164, 255, 0.3);
  box-shadow: 0 24px 60px rgba(94, 164, 255, 0.15);
}
.price-tag {
  font-family: Sora, Inter, sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 16px 0;
}
.price-tag small { font-size: 18px; color: var(--muted); font-weight: 600; }
.check-list { display: grid; gap: 12px; margin: 24px 0; }
.check-item { display: flex; gap: 10px; font-size: 14px; color: var(--muted-2); }
.check-item b { color: var(--teal); flex-shrink: 0; }

/* faq */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--muted); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted-2); font-size: 15px; line-height: 1.65; }

/* CTA band */
.cta-band {
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(120% 120% at 50% -20%, rgba(94, 164, 255, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(94, 164, 255, 0.1), rgba(46, 230, 168, 0.06));
  border: 1px solid rgba(94, 164, 255, 0.28);
}
.cta-glow-orb {
  position: absolute; width: 420px; height: 420px; border-radius: 50%; pointer-events: none;
  left: 50%; top: -180px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(94, 164, 255, 0.35), transparent 65%);
  filter: blur(40px); opacity: 0.8;
}
.cta-float {
  position: absolute; z-index: 1; pointer-events: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px; border-radius: 12px;
  font-size: 12.5px; font-weight: 600; color: var(--muted-2);
  background: rgba(20, 30, 48, 0.72); border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  animation: ctaFloat 5.5s ease-in-out infinite;
}
.cta-float svg { width: 17px; height: 17px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cta-float-1 { top: 38px; left: 8%; animation-delay: 0s; }
.cta-float-1 svg { stroke: var(--teal); }
.cta-float-2 { top: 30px; right: 9%; animation-delay: 1.4s; }
.cta-float-2 svg { stroke: var(--gold); }
.cta-float-3 { top: 104px; right: 6%; animation-delay: 2.6s; }
.cta-float-3 svg { stroke: var(--blue); }
@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (max-width: 860px) { .cta-float { display: none; } }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--muted-2);
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
}
.cta-eyebrow .stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; }
.cta-band h2 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  margin: 0 0 14px;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.cta-band h2 .accent {
  background: linear-gradient(120deg, #9ed3ff, #7ef0c8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-band p { margin: 0 auto 30px; max-width: 50ch; color: var(--muted-2); font-size: 17px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-assurances {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0 0; padding: 0; list-style: none;
}
.cta-assurances li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted-2); }
.cta-assurances svg { width: 17px; height: 17px; flex-shrink: 0; stroke: var(--teal); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* footer */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.sms-disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.7);
  line-height: 1.5;
}

/* marquee */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* mobile drawer — premium */
.mobile-overlay { position: fixed; inset: 0; background: rgba(3, 7, 14, 0.55); backdrop-filter: blur(5px); z-index: 110; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; right: 0; width: min(86vw, 360px); height: 100dvh; padding: 0;
  background: linear-gradient(180deg, rgba(13, 24, 42, 0.97), rgba(5, 10, 20, 0.98));
  backdrop-filter: blur(24px);
  border-left: 1px solid rgba(94, 164, 255, 0.14);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
  z-index: 120; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: grid; grid-template-rows: auto 1fr auto;
}
.mobile-drawer.open { transform: translateX(0); }
.md-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.md-head .brand-name { font-size: 19px; }
.md-close { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); color: var(--text); cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease; }
.md-close:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(94, 164, 255, 0.3); }
.md-close svg { width: 18px; height: 18px; }
.mobile-links { display: grid; gap: 2px; align-content: start; padding: 16px 12px; }
.mobile-links a { display: flex; align-items: center; justify-content: space-between; padding: 15px 14px; border-radius: 14px; font-family: Sora, Inter, sans-serif; font-weight: 600; font-size: 16px; color: var(--muted-2); transition: background 0.2s ease, color 0.2s ease; }
.mobile-links a:hover, .mobile-links a:active { background: rgba(94, 164, 255, 0.1); color: var(--text); }
.md-chev { width: 18px; height: 18px; color: var(--muted); opacity: 0.55; transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease; }
.mobile-links a:hover .md-chev { transform: translateX(3px); opacity: 1; color: var(--teal); }
.md-foot { display: grid; gap: 12px; padding: 18px 20px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255, 255, 255, 0.07); }
.md-foot .btn.primary { width: 100%; }
.md-note { margin: 0; text-align: center; font-size: 12px; color: var(--muted); }
.md-foot-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.md-foot-row .btn { width: 100%; }

/* animated hamburger */
.menu-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform 0.3s ease, opacity 0.25s ease; }
.menu-toggle span:not(:first-child) { margin-top: 5px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .impact-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .pricing-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .desktop-only { display: none; }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .menu-toggle:hover, .menu-toggle.open { background: rgba(94, 164, 255, 0.1); border-color: rgba(94, 164, 255, 0.3); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .bento { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .roi-inputs, .roi-results { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  section { padding: 56px 0; }
  .cta-band { padding: 48px 22px; }
  .cta-assurances { gap: 12px 18px; }
  .cycle-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .cycle-node { width: 48px; height: 48px; border-radius: 14px; }
  .cycle-node svg { width: 21px; height: 21px; }
  .cycle-steps::before { left: 23px; }
  .float-badge { display: none; }
}

/* ============================================================
   PREMIUM HERO UPGRADE
   ============================================================ */
.hero { padding: 88px 0 60px; overflow: visible; }

/* animated aurora behind hero */
.hero-aurora {
  position: absolute; left: -6%; right: -6%; top: -8%; height: 540px;
  z-index: -1; pointer-events: none; filter: blur(24px);
  background:
    radial-gradient(58% 60% at 28% 38%, rgba(94, 164, 255, 0.22), transparent 70%),
    radial-gradient(48% 52% at 82% 28%, rgba(46, 230, 168, 0.16), transparent 70%),
    radial-gradient(40% 44% at 60% 82%, rgba(124, 140, 255, 0.14), transparent 72%);
  animation: aurora-shift 18s ease-in-out infinite;
}
@keyframes aurora-shift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2%, 2.5%, 0) scale(1.06); }
}

/* cursor-follow spotlight */
.hero-spot {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(420px 420px at var(--mx, 50%) var(--my, 28%), rgba(94, 164, 255, 0.14), transparent 68%);
  opacity: 0; transition: opacity 0.5s ease;
}
.hero:hover .hero-spot { opacity: 1; }

/* staggered entrance of hero copy */
.hero-copy > * { opacity: 0; transform: translateY(16px); animation: hero-in 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.hero-copy > .eyebrow { animation-delay: 0.05s; }
.hero-copy > h1 { animation-delay: 0.14s; }
.hero-copy > .hero-lead { animation-delay: 0.24s; }
.hero-copy > .hero-actions { animation-delay: 0.34s; }
.hero-copy > .hero-note { animation-delay: 0.42s; }
.hero-copy > .hero-trust { animation-delay: 0.50s; }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

/* shimmering gradient headline */
.gradient-anim { background-size: 220% 100%; animation: hue-pan 9s ease-in-out infinite; }
@keyframes hue-pan {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* eyebrow polish */
.eyebrow { backdrop-filter: blur(6px); box-shadow: 0 0 0 1px rgba(94, 164, 255, 0.05), 0 8px 24px rgba(94, 164, 255, 0.08); }

/* primary button shine sweep + breathing glow */
.btn.primary { position: relative; overflow: hidden; }
.btn.primary::after {
  content: ""; position: absolute; top: 0; left: -160%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn.primary:hover::after { animation: btn-shine 0.85s ease; }
@keyframes btn-shine { to { left: 165%; } }
.cta-glow { animation: cta-pulse 3.2s ease-in-out infinite; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(94, 164, 255, 0.35); }
  50% { box-shadow: 0 20px 54px rgba(94, 164, 255, 0.6); }
}

/* hero proof line */
.hero-proof { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--muted-2); }
.hero-proof .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.cta-subnote { margin: 10px 0 0; font-size: 12px; color: var(--muted); text-align: center; }

/* hero trust chips */
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-trust-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--muted-2);
}
.hero-trust-chip .dot-ok { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px rgba(46, 230, 168, 0.85); }

/* 3D tilt stage */
.hero-visual { animation: float-y 7s ease-in-out infinite; }
.tilt { perspective: 1100px; }
.tilt-inner { position: relative; transform-style: preserve-3d; transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1); will-change: transform; }

/* dashboard card — gradient border + light sheen */
.dash-mock { position: relative; overflow: hidden; }
.dash-mock::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(140deg, rgba(94, 164, 255, 0.55), rgba(46, 230, 168, 0.4) 38%, transparent 65%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.dash-mock::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.13) 46%, transparent 60%);
  transform: translateX(-130%); animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen {
  0% { transform: translateX(-130%); }
  18%, 100% { transform: translateX(130%); }
}

/* rotating glow ring behind card */
.dash-glow {
  position: absolute; inset: -34px; border-radius: 44px; z-index: -1; pointer-events: none;
  background: conic-gradient(from 0deg, rgba(94, 164, 255, 0), rgba(94, 164, 255, 0.35), rgba(46, 230, 168, 0.3), rgba(124, 140, 255, 0.35), rgba(94, 164, 255, 0));
  filter: blur(40px); opacity: 0.55; animation: glow-spin 16s linear infinite;
}
@keyframes glow-spin {
  from { transform: translateZ(-40px) rotate(0); }
  to { transform: translateZ(-40px) rotate(360deg); }
}

/* floating glass badges with 3D depth */
.float-badge { display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(10px); animation: badge-bob 5s ease-in-out infinite; }
.float-badge .fb-ic { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 7px; font-size: 12px; flex-shrink: 0; background: rgba(46, 230, 168, 0.18); color: var(--teal); }
.float-badge .fb-ic.star { background: rgba(245, 196, 81, 0.18); color: var(--gold); }
.float-badge .fb-ic.bell { background: rgba(94, 164, 255, 0.18); color: var(--blue); }
.float-badge-1 { top: -16px; right: -10px; bottom: auto; left: auto; animation-delay: -1s; }
.float-badge-2 { bottom: 56px; left: -30px; top: auto; right: auto; animation-delay: -2.6s; }
.float-badge-3 { top: 40%; right: -34px; bottom: auto; left: auto; animation-delay: -3.9s; }
@keyframes badge-bob {
  0%, 100% { transform: translateZ(55px) translateY(0); }
  50% { transform: translateZ(55px) translateY(-9px); }
}

/* live mini sparkline */
.dash-spark { margin-top: 14px; padding: 14px; border-radius: 16px; background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.06); }
.spark-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.spark-trend { color: var(--teal); font-weight: 700; }
.spark-bars { display: flex; align-items: flex-end; gap: 8px; height: 56px; }
.spark-bars i { flex: 1; height: var(--h); border-radius: 6px 6px 3px 3px; transform: scaleY(0); transform-origin: bottom; background: linear-gradient(180deg, var(--teal), rgba(46, 230, 168, 0.25)); animation: spark-grow 1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.spark-bars i:last-child { background: linear-gradient(180deg, var(--blue), rgba(94, 164, 255, 0.3)); }
.spark-bars i:nth-child(1) { animation-delay: 0.10s; }
.spark-bars i:nth-child(2) { animation-delay: 0.18s; }
.spark-bars i:nth-child(3) { animation-delay: 0.26s; }
.spark-bars i:nth-child(4) { animation-delay: 0.34s; }
.spark-bars i:nth-child(5) { animation-delay: 0.42s; }
.spark-bars i:nth-child(6) { animation-delay: 0.50s; }
.spark-bars i:nth-child(7) { animation-delay: 0.58s; }
@keyframes spark-grow { to { transform: scaleY(1); } }

@media (max-width: 768px) {
  .hero-spot, .hero-aurora { display: none; }
  .float-badge { display: none; }
  .hero { padding-top: 32px; }
}

/* ============================================================
   PREMIUM SECTIONS UPGRADE
   ============================================================ */

/* scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--blue), var(--teal)); box-shadow: 0 0 12px rgba(94, 164, 255, 0.55); }

/* animated kicker */
.kicker { background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: hue-pan 6s ease-in-out infinite; }

/* cursor spotlight on cards */
.impact-card, .bento-card, .step, .pricing-card { position: relative; }
.impact-card::after, .bento-card::after, .step::after, .pricing-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 0.4s ease; z-index: 0;
  background: radial-gradient(260px 260px at var(--mx, 50%) var(--my, 50%), rgba(94, 164, 255, 0.12), transparent 70%);
}
.impact-card:hover::after, .bento-card:hover::after, .step:hover::after, .pricing-card:hover::after { opacity: 1; }
.impact-card > *, .bento-card > *, .step > *, .pricing-card > * { position: relative; z-index: 1; }

/* impact icon motion */
.impact-icon { transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.impact-card:hover .impact-icon { transform: translateY(-3px) scale(1.08); }

/* bento polish: gradient border + emoji pop */
.bento-card { overflow: hidden; }
.bento-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; opacity: 0; transition: opacity 0.35s ease; z-index: 0;
  background: linear-gradient(140deg, rgba(94, 164, 255, 0.5), rgba(46, 230, 168, 0.35) 45%, transparent 65%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover { background: var(--card-hover); }
.bento-emoji { transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.bento-card:hover .bento-emoji { transform: translateY(-3px) scale(1.14) rotate(-5deg); }

/* steps: number glow + connector */
.step-num { transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 8px 22px rgba(94, 164, 255, 0.3); }
.step:hover { border-color: rgba(94, 164, 255, 0.25); }
.step:hover .step-num { transform: scale(1.08); box-shadow: 0 12px 30px rgba(94, 164, 255, 0.5); }
@media (min-width: 769px) {
  .step:not(:last-child)::before {
    content: ""; position: absolute; top: 46px; right: -12px; width: 24px; height: 2px; z-index: 2;
    background: linear-gradient(90deg, var(--blue), rgba(94, 164, 255, 0));
  }
}

/* pricing: featured glow + badge + gradient price */
.pricing-card.featured { animation: feat-glow 4s ease-in-out infinite; }
@keyframes feat-glow {
  0%, 100% { box-shadow: 0 24px 60px rgba(94, 164, 255, 0.15); }
  50% { box-shadow: 0 28px 72px rgba(94, 164, 255, 0.3); }
}
.price-tag { background: linear-gradient(120deg, #fff, #9ed3ff 60%, #7ef0c8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-tag small { -webkit-text-fill-color: var(--muted); color: var(--muted); }
.price-badge {
  position: absolute; top: 18px; right: 18px; padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue), var(--teal)); color: #04121f;
}

/* CTA band sheen */
.cta-band { position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.08) 48%, transparent 62%);
  transform: translateX(-130%); animation: sheen 7s ease-in-out infinite 1s;
}
.cta-band > *:not(.cta-glow-orb):not(.cta-float) { position: relative; z-index: 1; }

/* FAQ polish */
.faq-item { transition: border-color 0.3s ease, background 0.3s ease; }
.faq-item summary { transition: background 0.25s ease; }
.faq-item summary:hover { background: rgba(255, 255, 255, 0.03); }
.faq-item[open] { border-color: rgba(94, 164, 255, 0.28); background: rgba(94, 164, 255, 0.04); }
.faq-item summary::after { transition: transform 0.25s ease; }

/* ============================================================
   STATS STRIP — cards with relief (redesign)
   ============================================================ */
.trust-strip { padding: 40px 0; }
.trust-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left; }
.trust-item {
  position: relative; overflow: hidden; padding: 22px 22px 20px; border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.trust-item::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--teal)); transition: transform 0.4s ease;
}
.trust-item:hover { transform: translateY(-5px); border-color: rgba(94, 164, 255, 0.3); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35); }
.trust-item:hover::after { transform: scaleX(1); }
.trust-item .trust-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; margin: 0 0 14px; }
.trust-item .trust-ic svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-item:nth-child(1) .trust-ic svg { stroke: var(--teal); }
.trust-item:nth-child(2) .trust-ic svg { stroke: var(--gold); }
.trust-item:nth-child(3) .trust-ic svg { stroke: var(--blue); }
.trust-item:nth-child(4) .trust-ic svg { stroke: var(--violet); }
.trust-item strong { display: block; font-family: Sora, Inter, sans-serif; font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1; -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-item .trust-lbl { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); }
.trust-item:nth-child(1) .trust-ic { background: rgba(46, 230, 168, 0.16); }
.trust-item:nth-child(1) strong { background-image: linear-gradient(120deg, #fff, var(--teal)); }
.trust-item:nth-child(2) .trust-ic { background: rgba(245, 196, 81, 0.16); }
.trust-item:nth-child(2) strong { background-image: linear-gradient(120deg, #fff, var(--gold)); }
.trust-item:nth-child(3) .trust-ic { background: rgba(94, 164, 255, 0.16); }
.trust-item:nth-child(3) strong { background-image: linear-gradient(120deg, #fff, var(--blue)); }
.trust-item:nth-child(4) .trust-ic { background: rgba(167, 139, 250, 0.16); }
.trust-item:nth-child(4) strong { background-image: linear-gradient(120deg, #fff, var(--violet)); }

/* ============================================================
   SCREENSHOTS CAROUSEL
   ============================================================ */
.shots { position: relative; }
.shots-viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.shots-viewport::-webkit-scrollbar { display: none; }
.shots-track { display: flex; }
.shot { flex: 0 0 100%; scroll-snap-align: center; margin: 0; padding: 0 4px; }
.shot-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)); box-shadow: var(--shadow); }
.shot-frame::before { content: ""; display: block; height: 34px; background: rgba(0, 0, 0, 0.38); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.shot-frame::after { content: ""; position: absolute; top: 13px; left: 16px; width: 8px; height: 8px; border-radius: 50%; background: #ff5f57; box-shadow: 15px 0 0 #febc2e, 30px 0 0 #28c840; }
.shot-frame img { display: block; width: 100%; height: auto; }
.shot-cap { padding: 16px 6px 0; }
.shot-cap h3 { margin: 0 0 4px; font-family: Sora, Inter, sans-serif; font-size: 18px; }
.shot-cap p { margin: 0; color: var(--muted-2); font-size: 14px; }
.shots-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.shot-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); color: var(--text); cursor: pointer; display: grid; place-items: center; transition: background 0.2s, transform 0.2s, border-color 0.2s; }
.shot-arrow:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(94, 164, 255, 0.3); transform: translateY(-2px); }
.shot-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.shot-dots { display: flex; gap: 8px; }
.shot-dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.2); cursor: pointer; transition: width 0.25s ease, background 0.25s ease; }
.shot-dot.active { width: 24px; border-radius: 5px; background: linear-gradient(90deg, var(--blue), var(--teal)); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: center; }
.video-points { display: grid; gap: 18px; margin-top: 24px; }
.video-point { display: flex; gap: 14px; }
.video-point-ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(94, 164, 255, 0.12); border: 1px solid rgba(94, 164, 255, 0.2); }
.video-point-ico svg { width: 20px; height: 20px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.video-point h3 { margin: 0 0 3px; font-family: Sora, Inter, sans-serif; font-size: 16px; }
.video-point p { margin: 0; font-size: 14px; color: var(--muted-2); line-height: 1.55; }
.video-shell { border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: var(--shadow); padding: 16px; }
.video-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; padding: 4px 6px; }
.video-header h3 { margin: 0; font-family: Sora, Inter, sans-serif; font-size: 16px; }
.video-lang-switch { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(0, 0, 0, 0.3); border: 1px solid var(--line); }
.video-lang-btn { border: none; background: transparent; color: var(--muted); font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 999px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.video-lang-btn.active { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #fff; }
.video-frame { position: relative; border-radius: 18px; overflow: hidden; background: #040a14; aspect-ratio: 16 / 9; }
.video-badge { position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; background: rgba(5, 10, 20, 0.7); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.14); font-size: 12px; font-weight: 600; }
.video-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
.video-player { width: 100%; height: 100%; }
.video-player video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 1080px) { .testi-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .testi-grid { grid-template-columns: 1fr; } }
.tcard {
  position: relative; overflow: hidden; padding: 28px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--line);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.tcard:hover { transform: translateY(-4px); border-color: rgba(94, 164, 255, 0.25); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32); }
.tcard::before { content: "\201C"; position: absolute; top: 6px; right: 22px; font-family: Sora, Inter, serif; font-size: 90px; line-height: 1; color: rgba(94, 164, 255, 0.12); pointer-events: none; }
.tstars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.tquote { position: relative; z-index: 1; margin: 0 0 22px; font-size: 16px; line-height: 1.6; color: var(--text); }
.tauthor { display: flex; align-items: center; gap: 12px; }
.tavatar { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-family: Sora, Inter, sans-serif; color: #04121f; background: linear-gradient(135deg, var(--blue), var(--teal)); }
.tcard:nth-child(2) .tavatar { background: linear-gradient(135deg, var(--gold), #e08a2e); }
.tcard:nth-child(3) .tavatar { background: linear-gradient(135deg, var(--violet), var(--blue)); }
.tcard:nth-child(4) .tavatar { background: linear-gradient(135deg, var(--teal), var(--blue)); }
.tname { font-weight: 700; font-size: 15px; }
.tloc { font-size: 13px; color: var(--muted); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare { max-width: 880px; margin: 0 auto; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; background: var(--card); }
.compare-row { display: grid; grid-template-columns: 1.25fr 1fr 1fr; align-items: stretch; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.compare-row:last-child { border-bottom: none; }
.compare-crit { padding: 16px 20px; font-size: 14px; font-weight: 600; color: var(--muted-2); display: flex; align-items: center; }
.compare-cell { padding: 16px 16px; font-size: 13.5px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; }
.compare-cell.them { color: var(--muted); }
.compare-cell.kairos { color: var(--text); font-weight: 600; background: linear-gradient(180deg, rgba(46, 230, 168, 0.07), rgba(94, 164, 255, 0.05)); border-left: 1px solid rgba(94, 164, 255, 0.18); border-right: 1px solid rgba(94, 164, 255, 0.18); }
.compare-cell.kairos::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; }
.compare-cell.them::before { content: "✕"; color: rgba(148, 163, 184, 0.6); font-weight: 700; flex-shrink: 0; }
.compare-row.compare-head { background: rgba(255, 255, 255, 0.02); }
.compare-head .compare-cell { font-family: Sora, Inter, sans-serif; font-weight: 800; font-size: 15px; }
.compare-head .compare-cell::before { content: none; }
.compare-head .kairos { color: var(--teal); }
.compare-head .them { color: var(--muted-2); }
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-crit { grid-column: 1 / -1; padding: 14px 16px 6px; font-size: 13px; font-weight: 700; color: var(--muted-2); }
  .compare-cell { font-size: 12.5px; padding: 10px 10px 16px; flex-direction: column; gap: 5px; line-height: 1.4; }
  .compare-head .compare-crit { display: none; }
  .compare-head .compare-cell { grid-row: 1; padding-top: 14px; }
}

/* ============================================================
   NOTIFICATION CYCLE — premium timeline
   ============================================================ */
.cycle { position: relative; max-width: 780px; margin: 0 auto; }
.cycle-steps { list-style: none; margin: 0; padding: 0; position: relative; }
.cycle-steps::before {
  content: ""; position: absolute; left: 27px; top: 18px; bottom: 18px; width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--teal) 45%, var(--gold) 70%, var(--violet) 100%);
  opacity: 0.4;
}
.cycle-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding-bottom: 22px; }
.cycle-step:last-child { padding-bottom: 0; }
.cycle-node {
  position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, rgba(94, 164, 255, 0.18), rgba(46, 230, 168, 0.12)),
    var(--bg-2);
  border: 1px solid rgba(94, 164, 255, 0.32);
  box-shadow: 0 0 0 6px var(--bg), 0 10px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cycle-node svg {
  width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.cycle-num {
  position: absolute; top: -7px; right: -7px; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-family: Sora, Inter, sans-serif; font-weight: 800; font-size: 11px; color: #04121f;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 0 0 3px var(--bg), 0 4px 10px rgba(0, 0, 0, 0.4);
}
.cycle-step:hover .cycle-node {
  transform: scale(1.06) translateY(-2px); border-color: rgba(94, 164, 255, 0.6);
  box-shadow: 0 0 0 6px var(--bg), 0 0 30px rgba(94, 164, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cycle-step:nth-child(4) .cycle-node svg { stroke: var(--gold); }
.cycle-step:nth-child(5) .cycle-node svg,
.cycle-step:nth-child(8) .cycle-node svg { stroke: var(--violet); }
.cycle-step:nth-child(2) .cycle-node svg,
.cycle-step:nth-child(3) .cycle-node svg { stroke: var(--teal); }
.cycle-card {
  padding: 18px 20px; border-radius: 18px; background: var(--card); border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cycle-step:hover .cycle-card { transform: translateX(5px); border-color: rgba(94, 164, 255, 0.3); box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32); }
.cycle-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.cycle-time { flex-shrink: 0; font-size: 11px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--teal); background: rgba(46, 230, 168, 0.1); border: 1px solid rgba(46, 230, 168, 0.22); padding: 4px 11px; border-radius: 999px; }
.cycle-card-head h3 { margin: 0; font-family: Sora, Inter, sans-serif; font-size: 17px; }
.cycle-card p { margin: 0; font-size: 14px; color: var(--muted-2); line-height: 1.55; }
.cycle-end { text-align: center; margin-top: 30px; }
.cycle-end-badge {
  display: inline-flex; align-items: center; gap: 9px; font-family: Sora, Inter, sans-serif; font-weight: 800; font-size: 17px;
  padding: 12px 24px; border-radius: 999px; background: linear-gradient(135deg, var(--blue), var(--teal)); color: #04121f;
  box-shadow: 0 16px 40px rgba(94, 164, 255, 0.3);
}
.cycle-end-badge::before { content: "∞"; font-size: 20px; }
.cycle-end p { margin: 16px auto 0; max-width: 52ch; color: var(--muted-2); font-size: 15px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   TESTIMONIALS SLIDER (mobile) — grid on desktop
   ============================================================ */
.testi-viewport { overflow: visible; }
.testi-track { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 1080px) { .testi-track { grid-template-columns: repeat(4, 1fr); } }
.testi-dots { display: none; }
@media (max-width: 768px) {
  .testi-viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; margin: 0 -16px; padding: 2px 16px; }
  .testi-viewport::-webkit-scrollbar { display: none; }
  .testi-track { display: flex; gap: 14px; }
  .testi-track .tcard { flex: 0 0 86%; scroll-snap-align: center; }
  .testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
}

/* ============================================================
   IMAGE LIGHTBOX (screenshots viewer)
   ============================================================ */
.shot-frame { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center;
  background: rgba(5, 9, 16, 0.93); backdrop-filter: blur(6px); padding: 24px;
}
.lightbox.open { display: flex; animation: lbFade 0.2s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img { max-width: 92vw; max-height: 82vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.12); }
.lightbox-cap { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: var(--muted-2); font-size: 14px; padding: 0 20px; pointer-events: none; }
.lightbox-btn {
  position: absolute; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.07);
  color: #fff; cursor: pointer; display: grid; place-items: center; transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.lightbox-btn:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(94, 164, 255, 0.4); }
.lightbox-close { top: 18px; right: 18px; width: 46px; height: 46px; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox-arrow.prev { left: 18px; } .lightbox-arrow.next { right: 18px; }
.lightbox-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 600px) {
  .lightbox-arrow { width: 42px; height: 42px; top: auto; bottom: 18px; transform: none; }
  .lightbox-arrow.prev { left: 24%; } .lightbox-arrow.next { right: 24%; }
  .lightbox-img { max-height: 72vh; }
  .lightbox-cap { bottom: 70px; }
}

/* ============================================================
   MOBILE RESPONSIVE — authoritative overrides (cascade-safe)
   ============================================================ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-grid > *, .impact-grid > *, .bento > *, .roi-controls > * { min-width: 0; }
  .trust-item { padding: 18px 16px 16px; }
  .impact-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; gap: 22px; }
  .roi-box { padding: 24px 18px; }
  .roi-field-val { font-size: 18px; }
  .roi-viz { padding: 20px 16px; }
  .roi-cost { flex-direction: column; gap: 6px; }
  .roi-cost-val { white-space: normal; font-size: 16px; }
  .pricing-card { padding: 26px 22px; }
  .price-tag { font-size: 42px; margin: 12px 0; }
}
@media (max-width: 440px) {
  .trust-item strong { font-size: 28px; }
  .price-tag { font-size: 38px; }
}
