:root {
  --bg: #07080d;
  --bg-2: #0c1020;
  --panel: rgba(13, 16, 28, 0.72);
  --panel-strong: rgba(16, 20, 38, 0.88);
  --white: #f8fafc;
  --text: #eef2ff;
  --muted: #aeb6cd;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --accent-3: #f59e0b;
  --success: #4ade80;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.52);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.09), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(139,92,246,0.18), transparent 28%),
    linear-gradient(180deg, #06070b 0%, #0a0d16 42%, #07080d 100%);
  color: var(--text);
  overflow-x: hidden;
}
body::selection { background: rgba(139, 92, 246, 0.34); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.bg-grid,
.bg-noise,
.particle-field,
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.bg-grid {
  z-index: -4;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
}
.bg-noise {
  z-index: -3;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.7) 0.6px, transparent 0.7px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.4) 0.5px, transparent 0.7px),
    radial-gradient(circle at 45% 80%, rgba(255,255,255,0.45) 0.6px, transparent 0.75px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  mix-blend-mode: screen;
}
.particle-field { z-index: -2; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.18) 55%, transparent 72%);
  animation: floatParticle linear infinite;
  opacity: 0.45;
}
.ambient-glow {
  z-index: -1;
  filter: blur(70px);
  opacity: 0.45;
}
.ambient-glow-1 {
  background: radial-gradient(circle, rgba(139,92,246,0.22) 0%, transparent 60%);
  width: 540px;
  height: 540px;
  left: -120px;
  top: 20px;
}
.ambient-glow-2 {
  background: radial-gradient(circle, rgba(34,211,238,0.16) 0%, transparent 60%);
  width: 440px;
  height: 440px;
  right: -60px;
  top: 180px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 108px 0; position: relative; }
.section-sm { padding: 30px 0 18px; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.03)); }
.section-muted { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
.section-accent {
  background:
    linear-gradient(135deg, rgba(76,29,149,0.42), rgba(8,47,73,0.5)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 16, 0.38);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 9, 18, 0.84);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.32);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139,92,246,0.95), rgba(34,211,238,0.95));
  color: #fff;
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.3);
}
.brand-text,
.brand-footer { font-size: 1.05rem; }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.96rem;
  color: var(--muted);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.header-cta { white-space: nowrap; }

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}
.btn:hover::before { transform: translateX(130%); }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, rgba(139,92,246,1), rgba(34,211,238,1));
  color: #fff;
  box-shadow: 0 16px 38px rgba(88, 28, 135, 0.32);
}
.btn-secondary,
.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
}
.btn-secondary:hover,
.btn-outline:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
}
.btn-sm { min-height: 44px; padding: 0 16px; border-radius: 14px; }
.btn-full { width: 100%; }

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-grid;
  gap: 2px;
  min-width: 188px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139,92,246,0.96), rgba(34,211,238,0.96));
  color: var(--white);
  box-shadow: 0 18px 48px rgba(15,23,42,0.42);
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  pointer-events: auto;
}
.floating-cta:hover { box-shadow: 0 22px 54px rgba(15,23,42,0.5); }
.floating-cta__label { font-weight: 800; }
.floating-cta__hint { font-size: 0.85rem; opacity: 0.88; }

.hero {
  padding-top: 64px;
  overflow: clip;
}
.hero-backdrop,
.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-backdrop {
  background:
    radial-gradient(circle at 20% 20%, rgba(139,92,246,0.16), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(34,211,238,0.14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(245,158,11,0.07), transparent 36%);
}
.hero-rings {
  background:
    radial-gradient(circle at 75% 30%, transparent 0 120px, rgba(255,255,255,0.03) 121px 122px, transparent 123px 200px, rgba(255,255,255,0.03) 201px 202px, transparent 203px),
    radial-gradient(circle at 25% 15%, transparent 0 100px, rgba(255,255,255,0.025) 101px 102px, transparent 103px 180px, rgba(255,255,255,0.025) 181px 182px, transparent 183px);
  opacity: 0.8;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 900px;
}
.text-gradient {
  background: linear-gradient(90deg, #f5d0fe, #c4b5fd 35%, #67e8f9 80%, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: #d7ddf5;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  color: #d1d5db;
  font-size: 0.94rem;
}
.hero-points span,
.trust-pill,
.logo-pill,
.mini-benefits span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.trust-strip {
  margin-top: 24px;
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 22px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 24px;
}
.hero-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-stat strong,
.band-item strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}
.hero-stat span,
.band-item span { color: var(--muted); line-height: 1.5; }

.glass,
.card,
.lead-card,
.step-card,
.faq-item,
.testimonial,
.pricing-card,
.benefit-item,
.benefits-panel,
.stats-band,
.cases-showcase,
.hero-card,
.hero-floating-note {
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(16,20,38,0.72), rgba(9,11,22,0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.premium-panel {
  position: relative;
  overflow: hidden;
}
.premium-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 28%, transparent 72%, rgba(255,255,255,0.04));
  opacity: 0.5;
  pointer-events: none;
}
.spotlight-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(240px 120px at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255,255,255,0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.spotlight-card:hover::before { opacity: 1; }
.hero-card { padding: 22px; border-radius: 30px; }
.hero-card-wrap { position: relative; }
.hero-floating-note {
  position: absolute;
  right: -12px;
  bottom: 10%;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 18px;
}
.hero-floating-note-alt {
  left: -14px;
  top: 8%;
  bottom: auto;
}
.note-label {
  display: block;
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.7;
}
.hero-orb-1 {
  width: 220px; height: 220px; top: 8%; right: 20%;
  background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 68%);
}
.hero-orb-2 {
  width: 180px; height: 180px; top: 38%; right: 2%;
  background: radial-gradient(circle, rgba(34,211,238,0.3), transparent 72%);
}
.hero-orb-3 {
  width: 150px; height: 150px; bottom: 12%; left: 44%;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 72%);
}
.dashboard-head { display: flex; gap: 8px; margin-bottom: 18px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-red { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #4ade80; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.metric-lg { display: flex; justify-content: space-between; align-items: center; }
.metric-label { color: var(--muted); font-size: 0.88rem; margin-bottom: 6px; }
.metric-value { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em; }
.metric-trend {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  color: #86efac;
  font-weight: 700;
}
.checklist { display: grid; gap: 10px; margin-top: 18px; }
.check-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: #dbeafe;
  border: 1px solid rgba(255,255,255,0.06);
}
.center { display: block; text-align: center; }
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.marquee-row { animation: marqueeDrift 16s ease-in-out infinite alternate; }

.section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head.light p { color: rgba(255,255,255,0.78); }
.section-head h2 {
  margin: 0 0 14px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.section-head p { margin: 0; color: var(--muted); line-height: 1.75; }

.problem-grid,
.steps-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}
.problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 18px; }
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card,
.step-card,
.pricing-card,
.benefit-item,
.benefits-panel,
.stats-band,
.cases-showcase,
.faq-item {
  padding: 28px;
  border-radius: var(--radius);
}
.card h3,
.step-card h3,
.pricing-card h3,
.benefit-item h3,
.benefits-panel h3,
.case-slide h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.card p,
.step-card p,
.pricing-card li,
.benefit-item p,
.case-slide p,
.faq-item p { color: var(--muted); line-height: 1.75; margin: 0; }
.card-strong {
  background: linear-gradient(180deg, rgba(139,92,246,0.18), rgba(8,10,18,0.9));
}
.pricing-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34,211,238,0.12);
  color: #a5f3fc;
  font-size: 0.82rem;
  font-weight: 700;
}
.step-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: #c4b5fd;
  margin-bottom: 18px;
}
.benefits-shell {
  display: grid;
  gap: 22px;
}
.benefits-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 22px;
  align-items: end;
  padding: 32px;
  border-radius: 30px;
}
.benefits-head {
  margin: 0;
  max-width: 100%;
}
.benefits-intro-note {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(139,92,246,0.16), rgba(34,211,238,0.12));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.benefits-note-label,
.benefits-panel-label,
.benefit-kicker,
.benefits-summary__label {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.benefits-note-label,
.benefits-panel-label,
.benefits-summary__label {
  color: #c4b5fd;
}
.benefits-intro-note strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: start;
}
.benefits-main {
  display: grid;
}
.benefits-list { display: grid; gap: 18px; }
.benefits-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.benefit-item {
  display: grid;
  gap: 12px;
  min-height: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.benefit-kicker {
  color: #67e8f9;
}
.check-list { margin: 0; padding-left: 18px; color: #d1d5db; line-height: 1.8; }
.benefits-panel {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}
.benefits-check-list {
  display: grid;
  gap: 10px;
  margin-top: -2px;
}
.benefits-summary {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 10px;
}
.benefits-summary p {
  margin: 0;
  color: #e9e5ff;
  line-height: 1.7;
}
.quote-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  color: #ede9fe;
  display: grid;
  gap: 6px;
}
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.band-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.testimonial p { font-size: 1.02rem; color: #e5e7eb; }
.author { margin-top: 18px; color: var(--muted); font-size: 0.95rem; }
.case-tag {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: #c4b5fd;
  font-weight: 700;
  text-transform: uppercase;
}
.cases-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.case-tab {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.case-tab.is-active {
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(34,211,238,0.14));
  border-color: rgba(255,255,255,0.16);
}
.case-slider { position: relative; }
.case-slide { display: grid; gap: 18px; }
.case-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.case-columns > div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.case-columns h4 { margin: 0 0 10px; font-size: 1rem; }
.pricing-card ul { margin: 0; padding-left: 18px; }
.pricing-card li { margin-bottom: 10px; }
.form-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}
.lead-card {
  border-radius: 28px;
  padding: 26px;
  display: grid;
  gap: 14px;
}
.lead-card label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}
.lead-card input,
.lead-card select,
.lead-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  outline: none;
}
.lead-card input:focus,
.lead-card select:focus,
.lead-card textarea:focus {
  border-color: rgba(139,92,246,0.65);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.16);
}
.lead-card input::placeholder,
.lead-card textarea::placeholder,
.lead-card select:invalid { color: #94a3b8; }
.form-note, .success-message {
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
  font-size: 0.92rem;
}
.success-message { color: #bbf7d0; }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.site-footer {
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-grid p { color: var(--muted); max-width: 520px; line-height: 1.7; }
.footer-links { display: grid; gap: 10px; color: #d1d5db; }

.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  will-change: transform, opacity;
}
.reveal-left { transform: translate3d(-24px, 0, 0); }
.reveal-right { transform: translate3d(24px, 0, 0); }
.reveal-scale { transform: translate3d(0, 24px, 0) scale(0.98); filter: blur(4px); }
.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes floatParticle {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
  15% { opacity: 0.42; }
  to { transform: translate3d(var(--tx, 0), calc(-1 * var(--ty, 180px)), 0) scale(1.2); opacity: 0; }
}
@keyframes marqueeDrift {
  from { transform: translateX(-10px); }
  to { transform: translateX(10px); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card,
.hero-floating-note { animation: heroFloat 7s ease-in-out infinite; }
.hero-floating-note-alt { animation-delay: -2s; }

@media (max-width: 1080px) {
  .hero-grid,
  .benefits-grid,
  .benefits-intro,
  .form-grid,
  .steps-grid,
  .problem-grid,
  .testimonial-grid,
  .pricing-grid,
  .stats-band,
  .case-columns {
    grid-template-columns: 1fr;
  }
  .hero-card-wrap { order: -1; }
  .benefits-panel {
    position: static;
    top: auto;
  }
  .benefits-list-grid {
    grid-template-columns: 1fr;
  }
  .hero-floating-note,
  .hero-floating-note-alt {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .section { padding: 84px 0; }
  .hero { padding-top: 36px; }
  .hero-stats,
  .metric-grid,
  .stats-band { grid-template-columns: 1fr; }
  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    min-width: 0;
  }
  .btn,
  .header-cta { width: 100%; }
  .hero-actions { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    
  }
  
}
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1.5;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 8, 13, 0.72) 0%,
    rgba(7, 8, 13, 0.82) 52%,
    rgba(7, 8, 13, 0.9) 100%
  );
}

.hero-backdrop,
.hero-rings,
.hero-orb {
  position: absolute;
  z-index: 2;
}

.hero-grid,
.hero-copy,
.hero-card-wrap,
.hero-card,
.hero-floating-note,
.hero-stats,
.trust-strip,
.hero-actions,
.hero-points {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 8, 13, 0.82) 0%,
      rgba(7, 8, 13, 0.9) 100%
    );
  }

  .hero {
    min-height: auto;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.hero-copy h1,
.hero-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-card {
  padding: 20px;
  border-radius: 24px;
  max-width: 520px;
  margin: 0 auto;
}

.hero-floating-note,
.hero-floating-note-alt {
  position: static;
  max-width: 520px;
  margin: 12px auto 0;
}

.hero-floating-note {
  right: auto;
  bottom: auto;
}

.hero-floating-note-alt {
  left: auto;
  top: auto;
  bottom: auto;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 8, 13, 0.42) 0%,
    rgba(7, 8, 13, 0.5) 52%,
    rgba(7, 8, 13, 0.62) 100%
  );
}

.hero-backdrop,
.hero-rings,
.hero-orb {
  position: absolute;
  z-index: 2;
}

.hero-grid,
.hero-copy,
.hero-card-wrap,
.hero-card,
.hero-floating-note,
.hero-stats,
.trust-strip,
.hero-actions,
.hero-points {
  position: relative;
  z-index: 3;
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-card-wrap,
  .hero-card,
  .hero-floating-note,
  .hero-floating-note-alt {
    max-width: 100%;
  }
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 900px;
}

.hero-copy h1 .text-gradient {
  display: block;
  margin-top: 8px;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 34px;
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.hero-copy h1,
.hero-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-copy h1 .text-gradient {
  display: block;
  margin-top: 8px;
}

.hero-details-layout {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(280px, 420px);
  justify-content: space-between;
  align-items: start;
  gap: 28px;
  margin-top: 8px;
}

.hero-details-left,
.hero-details-right {
  width: 100%;
}

.hero-details-left .hero-card {
  padding: 20px;
  border-radius: 24px;
  text-align: left;
}

.hero-details-right {
  display: grid;
  gap: 16px;
}

.hero-floating-note,
.hero-floating-note-alt {
  position: static;
  max-width: none;
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  text-align: left;
}

.hero-floating-note {
  right: auto;
  bottom: auto;
}

.hero-floating-note-alt {
  left: auto;
  top: auto;
  bottom: auto;
}

.checklist {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.check-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: #dbeafe;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.note-label {
  display: block;
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .hero-details-layout {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .hero-details-left .hero-card,
  .hero-floating-note,
  .hero-floating-note-alt {
    text-align: left;
  }
}
.checklist-typing {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.check-item-typing {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.typing-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 6px;
  vertical-align: -0.08em;
  background: currentColor;
  animation: blinkCaret 0.9s step-end infinite;
}

@keyframes blinkCaret {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ===== Hero cleanup ===== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 8, 13, 0.36) 0%,
    rgba(7, 8, 13, 0.48) 55%,
    rgba(7, 8, 13, 0.62) 100%
  );
}

.hero-backdrop,
.hero-rings,
.hero-orb {
  position: absolute;
  z-index: 2;
}

.hero-grid,
.hero-copy,
.hero-details-layout,
.hero-details-left,
.hero-details-right,
.hero-card,
.hero-floating-note {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  width: 100%;
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 900px;
}

.hero-copy h1 .text-gradient {
  display: block;
  margin-top: 8px;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-details-layout {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 480px);
  justify-content: space-between;
  align-items: start;
  gap: 28px;
}

.hero-details-left,
.hero-details-right {
  width: 100%;
}

.hero-card {
  padding: 20px;
  border-radius: 24px;
  text-align: left;
}

.hero-details-right {
  display: grid;
  gap: 50px;
}

.hero-floating-note,
.hero-floating-note-alt {
  position: static;
  margin: 0;
  max-width: none;
  padding: 16px 18px;
  border-radius: 18px;
  text-align: left;
}

.checklist-typing {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.check-item-typing {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.typing-line {
  display: inline-block;
  min-width: 0.1ch;
}

.typing-caret {
  width: 2px;
  height: 1em;
  margin-left: 0;
  vertical-align: -0.08em;
  background: currentColor;
  animation: blinkCaret 0.9s step-end infinite;
}

@keyframes blinkCaret {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

@media (max-width: 900px) {
  .hero-details-layout {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-video {
    display: none;
  }

  .hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 8, 13, 0.78) 0%,
      rgba(7, 8, 13, 0.88) 100%
    );
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-details-layout {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typing-caret {
    animation: none;
  }
}
