:root {
  --bg: #0b0b0f;
  --bg-2: #111117;
  --bg-3: #17171f;
  --text: #f8f8fb;
  --muted: #b8bbc8;
  --dark-text: #101014;
  --green: #45e10e;
  --green-2: #26d668;
  --orange: #ff4a16;
  --yellow: #f4f200;
  --red: #e41414;
  --line: rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1160px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--yellow);
  color: #000;
  padding: 8px 12px;
  border-radius: 10px;
  z-index: 99;
}
.skip-link:focus { left: 10px; }

.container { width: min(100% - 36px, var(--container)); margin: 0 auto; }
.narrow { width: min(100% - 36px, 920px); }
.section-dark, .section-black, .section-light { position: relative; overflow: hidden; }
.section-dark { background: radial-gradient(circle at 20% 10%, rgba(255,74,22,.14), transparent 30%), linear-gradient(180deg, #0a0a0d 0%, #111118 100%); }
.section-black { background: #050506; }
.section-light { background: #f5f5f7; color: var(--dark-text); }
.section-dark, .section-black, .section-light { padding: 88px 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,7,9,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.nav { display: flex; gap: 24px; color: var(--muted); font-weight: 700; font-size: 14px; }
.nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 950;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  text-align: center;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.02); }
.btn--small { padding: 10px 16px; font-size: 13px; }
.btn--xl { padding: 18px 26px; font-size: clamp(14px, 2vw, 17px); }
.btn--full { width: 100%; }
.btn--green { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #061006; box-shadow: 0 14px 35px rgba(38,214,104,.28); }
.btn--yellow { background: var(--yellow); color: #020202; box-shadow: 0 16px 38px rgba(244,242,0,.25); }
.btn--dark { background: #0d0d12; color: #fff; }
.btn--ghost { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; }

.hero { padding: 96px 0 88px; min-height: 820px; display: flex; align-items: center; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 20%, #000, transparent 70%);
  pointer-events: none;
}
.hero__glow { position: absolute; border-radius: 999px; filter: blur(30px); opacity: .4; pointer-events: none; }
.hero__glow--one { width: 280px; height: 280px; background: var(--orange); left: -90px; top: 80px; }
.hero__glow--two { width: 340px; height: 340px; background: var(--green); right: -140px; bottom: 40px; opacity: .22; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--green); font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }
.eyebrow--orange { color: var(--orange); }
.eyebrow--green { color: var(--green-2); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: .94; letter-spacing: -.055em; margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4.4vw, 58px); line-height: 1; letter-spacing: -.045em; margin-bottom: 20px; }
h3 { font-size: 22px; line-height: 1.08; letter-spacing: -.02em; }
.hero__lead, .section-lead { color: var(--muted); font-size: clamp(18px, 2vw, 22px); max-width: 820px; }
.section-light .section-lead { color: #4c4f5b; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 24px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 14px; }
.trust-row span { border: 1px solid var(--line); background: rgba(255,255,255,.055); color: #e8e8ef; padding: 8px 11px; border-radius: 999px; font-weight: 800; font-size: 13px; }
.microcopy { color: #9094a5; font-size: 13px; margin: 14px 0 0; }
.centered { text-align: center; }

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-card__badge { display: inline-block; background: var(--orange); color: #fff; font-weight: 950; text-transform: uppercase; border-radius: 999px; padding: 8px 13px; font-size: 12px; letter-spacing: .08em; }
.hero-card__kicker { color: var(--muted); font-weight: 800; margin: 18px 0 10px; }
.price-stack { margin: 8px 0 20px; }
.price-stack__label { display: block; color: var(--muted); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.price-stack__main { display: block; font-size: clamp(56px, 7vw, 76px); line-height: .92; font-weight: 1000; letter-spacing: -.06em; color: #fff; }
.price-stack__sub { color: #d7d8df; font-weight: 900; }
.value-box { background: rgba(69,225,14,.11); border: 1px dashed rgba(69,225,14,.6); border-radius: 20px; padding: 16px; margin: 22px 0; }
.value-box span { display: block; color: var(--muted); font-size: 13px; text-transform: uppercase; font-weight: 900; letter-spacing: .08em; }
.value-box strong { display: block; color: var(--green); font-size: 30px; line-height: 1; margin-top: 6px; }

.check-list, .x-list { list-style: none; padding: 0; margin: 0; }
.check-list li, .x-list li { position: relative; padding-left: 34px; margin-bottom: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 999px; background: var(--green); color: #041004; display: grid; place-items: center; font-weight: 1000; font-size: 13px; }
.x-list li::before { content: "×"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 999px; background: #ff2b2b; color: #fff; display: grid; place-items: center; font-weight: 1000; font-size: 16px; }
.compact li { font-size: 15px; color: #ecedf5; }


.video-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.video-section__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: center; }
.video-copy .section-lead { margin-bottom: 22px; }
.video-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.video-points span { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); color: #eef0f7; padding: 9px 12px; border-radius: 999px; font-weight: 900; font-size: 13px; }
.video-frame { position: relative; overflow: hidden; border-radius: 28px; border: 1px solid rgba(255,255,255,.18); background: #000; box-shadow: var(--shadow); aspect-ratio: 16 / 9; }
.video-frame::before { content: ""; position: absolute; inset: -2px; pointer-events: none; border-radius: 28px; box-shadow: inset 0 0 0 2px rgba(69,225,14,.15); z-index: 1; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.problem h2 { text-align: center; }
.problem .section-lead { margin-left: auto; margin-right: auto; text-align: center; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.pain-grid article { background: rgba(255,255,255,.075); border: 1px solid var(--line); border-radius: 18px; padding: 20px; font-weight: 950; text-align: center; }
.callout { margin-top: 34px; padding: 24px; border-radius: var(--radius-sm); display: grid; gap: 6px; text-align: center; }
.callout--orange { background: rgba(255,74,22,.12); border: 1px solid rgba(255,74,22,.4); }
.callout strong { font-size: 22px; }
.callout span { color: var(--muted); }

.split { display: grid; grid-template-columns: .8fr 1fr; gap: 58px; align-items: start; }
.benefit-list { display: grid; gap: 16px; }
.benefit-item { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 22px; padding: 24px; box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.benefit-item span { color: var(--orange); font-weight: 1000; letter-spacing: .09em; font-size: 12px; }
.benefit-item strong { display: block; font-size: 24px; letter-spacing: -.02em; margin: 5px 0 8px; }
.benefit-item p { margin-bottom: 0; color: #555865; }

.section-heading { text-align: center; max-width: 840px; margin: 0 auto 42px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 19px; }
.section-light .section-heading p:not(.eyebrow) { color: #555865; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-card { background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.16); border-radius: 24px; padding: 24px; min-height: 330px; display: flex; flex-direction: column; }
.pillar-card__number { color: var(--green); font-weight: 950; text-transform: uppercase; font-size: 13px; letter-spacing: .12em; }
.pillar-card p { color: var(--muted); }
.pillar-card strong { color: #fff; margin-top: auto; border-top: 1px solid var(--line); padding-top: 18px; }

.include-table { width: min(100%, 860px); margin: 0 auto; background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.include-table div { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 17px 22px; border-bottom: 1px solid var(--line); align-items: center; }
.include-table div:last-child { border-bottom: 0; }
.include-table span { color: #e8e9f2; }
.include-table strong { font-size: 18px; white-space: nowrap; }
.include-table__total { background: var(--green); color: #071107; }
.include-table__total span, .include-table__total strong { color: #071107; font-weight: 1000; }
.include-table__total strong { font-size: 28px; }

.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience-card { border-radius: 26px; padding: 30px; background: #fff; border: 1px solid rgba(0,0,0,.07); box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.audience-card h2 { font-size: clamp(28px, 3.5vw, 42px); }
.audience-card li { color: #343743; }

.offer { text-align: center; }
.offer__wrap { max-width: 1060px; }
.ribbon { display: inline-block; background: var(--orange); color: #fff; padding: 13px 22px; border-radius: 3px; text-transform: uppercase; font-weight: 1000; letter-spacing: .02em; font-size: clamp(18px, 3vw, 34px); line-height: 1.05; margin-bottom: 24px; }
.valued { color: #fff; font-size: clamp(22px, 3vw, 34px); margin: 8px 0 30px; }
.valued strong { color: var(--green); }
.price-panels { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; margin: 30px 0; }
.normal-price, .offer-price { min-height: 140px; border-radius: 26px; display: grid; place-items: center; padding: 22px; position: relative; }
.normal-price { background: var(--red); color: #000; border: 3px dashed rgba(255,255,255,.9); }
.normal-price span:last-child { text-transform: uppercase; font-weight: 900; color: #111; letter-spacing: .08em; }
.price-cross { display: inline-block; position: relative; color: #050505; font-size: clamp(42px, 7vw, 78px); line-height: .9; font-weight: 1000; letter-spacing: -.055em; }
.price-cross::before, .price-cross::after { content: ""; position: absolute; left: -5%; right: -5%; top: 50%; height: 4px; background: #fff; transform: rotate(12deg); }
.price-cross::after { transform: rotate(-12deg); }
.discount-badge { background: #214e10; color: #fff; border-radius: 18px; padding: 18px 19px; font-size: 44px; font-weight: 1000; line-height: .8; text-transform: uppercase; box-shadow: var(--shadow); }
.discount-badge small { display: block; font-size: 13px; margin-top: 10px; color: var(--green); letter-spacing: .08em; }
.offer-price { background: var(--green); color: #020502; border: 3px dashed rgba(255,255,255,.95); }
.offer-price span, .offer-price em { text-transform: uppercase; font-style: normal; font-weight: 900; }
.offer-price strong { font-size: clamp(46px, 8vw, 86px); line-height: .88; letter-spacing: -.06em; }
.offer__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 22px; padding: 24px; }
.step span { width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center; background: var(--orange); color: #fff; font-weight: 1000; margin-bottom: 16px; }
.step p { color: var(--muted); margin-bottom: 0; }

.faq details { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 18px; margin: 12px 0; padding: 18px 20px; box-shadow: 0 10px 24px rgba(0,0,0,.05); }
.faq summary { font-weight: 1000; cursor: pointer; font-size: 18px; }
.faq details p { color: #555865; margin: 14px 0 0; }

.centered-block { text-align: center; }
.centered-block .section-lead { margin-left: auto; margin-right: auto; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 18px; }
.inline-actions--left { justify-content: flex-start; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 18px; border-radius: 999px; background: var(--green); color: #061006; font-weight: 1000; text-decoration: none; box-shadow: 0 18px 40px rgba(0,0,0,.34); border: 1px solid rgba(255,255,255,.18); }
.whatsapp-float:hover { transform: translateY(-2px); filter: brightness(1.04); }

.footer { padding: 42px 0 92px; background: #020203; color: #aeb2c0; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer strong { color: #fff; }
.footer p { margin-bottom: 0; font-size: 13px; }
.mobile-sticky { display: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero__grid, .split, .audience__grid, .video-section__grid { grid-template-columns: 1fr; }
  .cards-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .price-panels { grid-template-columns: 1fr; }
  .discount-badge { width: fit-content; margin: -4px auto; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section-dark, .section-black, .section-light { padding: 64px 0; }
  .topbar__inner { min-height: 64px; }
  .topbar .btn { display: none; }
  .brand img { width: 160px; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .hero__actions { display: grid; }
  .inline-actions { display: grid; }
  .cards-4, .steps, .pain-grid { grid-template-columns: 1fr; }
  .include-table div { grid-template-columns: 1fr; gap: 5px; }
  .footer__grid { grid-template-columns: 1fr; }
  .whatsapp-float { display: none; }
  .mobile-sticky { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8px; position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; background: rgba(5,5,6,.88); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 12px; }
  .mobile-sticky .btn { padding-left: 12px; padding-right: 12px; font-size: 13px; }
  .footer { padding-bottom: 110px; }
}
