:root {
  --bg: #07111f;
  --bg-2: #0b1730;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-2: rgba(255, 255, 255, 0.12);
  --card: #ffffff;
  --text: #eaf2ff;
  --text-dark: #101827;
  --muted: #a9b7d1;
  --muted-dark: #64748b;
  --line: rgba(255, 255, 255, 0.14);
  --brand: #38bdf8;
  --brand-2: #7c3aed;
  --accent: #facc15;
  --green: #22c55e;
  --danger-soft: #fee2e2;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 16px 50px rgba(15, 23, 42, 0.16);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, .22), transparent 28%),
    radial-gradient(circle at 78% 4%, rgba(124, 58, 237, .24), transparent 30%),
    linear-gradient(180deg, #06111f 0%, #081326 48%, #f4f7fb 48%, #f4f7fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: rgba(250, 204, 21, .65); color: #0f172a; }

.container { width: min(var(--container), calc(100% - 36px)); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }
.section.light { color: var(--text-dark); background: #f4f7fb; }
.section.dark { background: #07111f; }
.section.compact { padding: 56px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #dbeafe;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.light .eyebrow { color: #2563eb; background: rgba(59, 130, 246, .08); border-color: rgba(37,99,235,.16); }
.h1, h1 { margin: 18px 0 18px; font-size: clamp(2.35rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.06em; }
.h2, h2 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.02; letter-spacing: -.045em; }
.h3, h3 { margin: 0 0 10px; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.15; letter-spacing: -.02em; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 720px; }
.light .lead { color: var(--muted-dark); }
.gradient-text { background: linear-gradient(90deg, #67e8f9, #facc15, #a78bfa); -webkit-background-clip: text; background-clip: text; color: transparent; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(6, 12, 28, .78); border-color: rgba(255,255,255,.12); backdrop-filter: blur(18px); }
.header-inner { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 30px rgba(56, 189, 248, .22);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand small { display: block; margin-top: -4px; color: var(--muted); font-weight: 700; font-size: .72rem; letter-spacing: .02em; }
.nav { display: flex; align-items: center; gap: 20px; font-weight: 700; color: #cbd5e1; }
.nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-button { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.08); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 0;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #facc15, #f59e0b); color: #111827; box-shadow: 0 18px 50px rgba(245,158,11,.28); }
.btn-blue { background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; box-shadow: 0 18px 48px rgba(37,99,235,.25); }
.btn-ghost { border: 1px solid var(--line); color: #fff; background: rgba(255,255,255,.08); }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.hero { padding: 128px 0 88px; min-height: 100vh; display: grid; align-items: center; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-copy { max-width: 720px; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; color: #dbeafe; font-weight: 800; font-size: .95rem; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07); }
.trust-pill svg { width: 17px; height: 17px; color: var(--green); }
.hero-note { margin-top: 18px; color: #94a3b8; font-size: .94rem; max-width: 620px; }

.vsl-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.vsl-top { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; color: #dbeafe; font-size: .92rem; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.12); }
.vsl-dots { display: flex; gap: 6px; }
.vsl-dots span { width: 10px; height: 10px; border-radius: 999px; background: #fb7185; }
.vsl-dots span:nth-child(2) { background: #facc15; }
.vsl-dots span:nth-child(3) { background: #22c55e; }
.video-shell { position: relative; aspect-ratio: 16 / 9; background: #020617; }
.video-shell video { width: 100%; height: 100%; object-fit: cover; }
.play-vsl {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(250,204,21,.95); color: #111827;
  display: grid; place-items: center;
  box-shadow: 0 20px 50px rgba(250,204,21,.28);
}
.play-vsl svg { width: 34px; height: 34px; margin-left: 3px; }
.play-vsl.is-hidden { display: none; }
.vsl-body { padding: 22px; display: grid; gap: 14px; }
.vsl-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.vsl-stat { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.vsl-stat strong { display: block; font-size: 1.4rem; color: #fff; letter-spacing: -.04em; }
.vsl-stat span { color: var(--muted); font-weight: 700; font-size: .82rem; }

.logo-strip { position: relative; z-index: 2; margin-top: -36px; }
.strip-card { border-radius: 24px; padding: 16px; background: rgba(255,255,255,.9); color: #0f172a; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; box-shadow: var(--shadow-soft); }
.strip-card strong { display: block; font-size: 1.04rem; }
.strip-card span { color: #64748b; font-weight: 700; }
.strip-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: #eff6ff; color: #2563eb; }
.strip-icon svg { width: 26px; height: 26px; }

.section-head { display: grid; gap: 12px; margin-bottom: 34px; max-width: 780px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; justify-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  border-radius: var(--radius-xl);
  background: #fff;
  color: var(--text-dark);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, .06);
}
.card.dark-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #fff; box-shadow: none; backdrop-filter: blur(16px); }
.card p { color: #64748b; font-weight: 600; }
.dark-card p { color: var(--muted); }
.icon-box { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: #eff6ff; color: #2563eb; margin-bottom: 18px; }
.dark-card .icon-box { background: rgba(56,189,248,.13); color: #67e8f9; }
.icon-box svg { width: 24px; height: 24px; }

.pain-card { background: #fff7f7; border-color: #fecaca; }
.pain-card .icon-box { background: #fee2e2; color: #ef4444; }
.solution-card { background: #f0fdf4; border-color: #bbf7d0; }
.solution-card .icon-box { background: #dcfce7; color: #16a34a; }

.showcase { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: center; }
.showcase-media { position: relative; }
.showcase-media img { border-radius: 32px; box-shadow: var(--shadow-soft); border: 1px solid rgba(15,23,42,.06); }
.floating-badge {
  position: absolute; left: -16px; bottom: 22px;
  padding: 14px 16px; border-radius: 18px;
  background: #0f172a; color: #fff;
  box-shadow: 0 18px 48px rgba(15,23,42,.28);
  font-weight: 900;
}
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; color: #334155; font-weight: 700; }
.check-list svg { width: 22px; height: 22px; color: #16a34a; margin-top: 2px; }

.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
  counter-increment: step;
  display: grid; grid-template-columns: 72px 1fr;
  gap: 18px; align-items: start;
  padding: 20px; border-radius: 24px;
  background: #fff; color: var(--text-dark);
  box-shadow: var(--shadow-soft); border: 1px solid rgba(15,23,42,.06);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff; font-weight: 900; font-size: 1.1rem;
}
.step p { color: #64748b; font-weight: 600; }

.offer-wrap { display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start; }
.offer-panel { border-radius: 34px; padding: 30px; background: #fff; color: var(--text-dark); box-shadow: var(--shadow); border: 1px solid rgba(15,23,42,.08); position: sticky; top: 96px; }
.offer-panel .badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: #eff6ff; color: #2563eb; font-weight: 900; font-size: .86rem; }
.price { margin: 16px 0 6px; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 950; line-height: 1; letter-spacing: -.06em; color: #2563eb; }
.price small { font-size: 1rem; color: #64748b; letter-spacing: 0; }
.installment { color: #475569; font-weight: 800; margin-bottom: 22px; }
.offer-features { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.offer-features li { display: flex; gap: 10px; align-items: center; color: #334155; font-weight: 800; }
.offer-features svg { flex: 0 0 auto; width: 20px; height: 20px; color: #16a34a; }
.price-note { margin-top: 12px; color: #64748b; font-size: .88rem; }
.guarantee { margin-top: 18px; padding: 16px; border-radius: 18px; background: #f0fdf4; color: #166534; font-weight: 900; display: flex; gap: 12px; align-items: center; }
.guarantee svg { width: 24px; height: 24px; }

.image-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; align-items: stretch; }
.image-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-soft); border: 1px solid rgba(15,23,42,.08); background: #fff; }
.image-stack { display: grid; gap: 16px; }

.proof-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.proof-box { border-radius: 34px; padding: 34px; background: linear-gradient(135deg, #081326, #13254a); color: #fff; box-shadow: var(--shadow); }
.proof-box .quote { font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.12; font-weight: 950; letter-spacing: -.04em; }
.proof-box .meta { margin-top: 16px; color: #cbd5e1; font-weight: 700; }
.proof-list { display: grid; gap: 14px; }
.proof-item { padding: 18px; border-radius: 22px; background: #fff; color: var(--text-dark); box-shadow: var(--shadow-soft); }
.proof-item strong { display: block; margin-bottom: 4px; }
.proof-item p { color: #64748b; font-weight: 600; }

.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { border-radius: 22px; background: #fff; color: var(--text-dark); box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid rgba(15,23,42,.06); }
.faq-item button { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px; text-align: left; font-weight: 900; color: #0f172a; cursor: pointer; }
.faq-item button span:last-child { width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; background: #eff6ff; color: #2563eb; flex: 0 0 auto; }
.faq-content { display: none; padding: 0 22px 22px; color: #64748b; font-weight: 600; }
.faq-item.is-open .faq-content { display: block; }
.faq-item.is-open button span:last-child { transform: rotate(45deg); }

.compliance { border-radius: 34px; padding: 28px; background: #fff; color: var(--text-dark); box-shadow: var(--shadow-soft); display: grid; grid-template-columns: auto 1fr; gap: 18px; border: 1px solid rgba(15,23,42,.06); }
.compliance svg { width: 42px; height: 42px; color: #16a34a; }
.compliance p { color: #64748b; font-weight: 600; }

.footer { padding: 46px 0 96px; background: #07111f; color: #cbd5e1; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.footer p { color: #94a3b8; margin-top: 12px; max-width: 720px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; font-weight: 800; }
.footer-links a:hover { color: #fff; }

.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 0; background: rgba(6,12,28,.88); backdrop-filter: blur(18px); border-top: 1px solid rgba(255,255,255,.12); }
.sticky-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sticky-inner strong { display: block; color: #fff; }
.sticky-inner span { color: #94a3b8; font-size: .9rem; font-weight: 700; }

[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .showcase, .offer-wrap, .proof-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .offer-panel { position: static; }
  .nav {
    position: fixed; top: 74px; left: 18px; right: 18px;
    display: none; padding: 18px; border-radius: 22px;
    background: rgba(6,12,28,.95); border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px); flex-direction: column; align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .menu-button { display: grid; place-items: center; }
  .header-actions .btn { display: none; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 26px, var(--container)); }
  .section { padding: 66px 0; }
  .hero { padding-top: 112px; }
  .hero-actions .btn { width: 100%; }
  .grid-3, .grid-4, .image-grid { grid-template-columns: 1fr; }
  .vsl-stat-grid { grid-template-columns: 1fr; }
  .strip-card { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .compliance { grid-template-columns: 1fr; }
  .sticky-inner { align-items: stretch; flex-direction: column; }
  .sticky-inner .btn { width: 100%; }
  .brand small { display: none; }
}
