:root{
  --bg:#0b0c10;
  --bg2:#0f1117;
  --text:#f3f4f6;
  --muted:#a9afbe;
  --shadow:0 14px 42px rgba(0,0,0,.55);
  --red:#d61f2f;
  --red2:#ff2b43;
  --green:#12c48b;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 70% -10%, rgba(255,43,67,.10), transparent 60%),
    radial-gradient(900px 500px at 20% 10%, rgba(255,43,67,.06), transparent 60%),
    linear-gradient(180deg, #05060a 0%, var(--bg) 22%, var(--bg2) 100%);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 20px}
.muted{color:var(--muted)}
.tiny{font-size:12px; line-height:1.4}
.center{text-align:center}
.w-100{width:100%}
.accent{color:var(--red2)}
b{font-weight:900}

.top-strip{
  background:linear-gradient(90deg, rgba(214,31,47,.95), rgba(255,43,67,.92));
  border-bottom:1px solid rgba(255,255,255,.12);
  position:sticky; top:0; z-index:50;
}
.top-strip__inner{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.top-strip__text{font-weight:700; font-size:13px}
.top-strip__link{font-weight:900; font-size:13px; opacity:.95}
.top-strip__link:hover{opacity:1; text-decoration:underline}

.nav{
  position:sticky; top:44px; z-index:40;
  backdrop-filter: blur(10px);
  background:rgba(10,11,14,.72);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.08em}
.brand__dot{width:10px; height:10px; border-radius:999px; background:var(--red2); box-shadow:0 0 18px rgba(255,43,67,.55)}
.nav__links{display:flex; align-items:center; gap:18px}
.nav__links a{font-weight:700; font-size:14px; color:rgba(243,244,246,.9)}
.nav__links a:hover{color:#fff}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:.02em;
  cursor:pointer;
  transition:.2s ease;
  user-select:none;
}
.btn--sm{padding:10px 12px; border-radius:10px; font-size:13px}
.btn--primary{
  background:linear-gradient(180deg, var(--red2), var(--red));
  box-shadow:0 10px 30px rgba(214,31,47,.28);
}
.btn--primary:hover{transform:translateY(-1px); filter:brightness(1.03)}
.btn--outline{
  background:transparent;
  border-color:rgba(255,255,255,.16);
}
.btn--outline:hover{border-color:rgba(255,255,255,.28); transform:translateY(-1px)}

.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px; border-radius:999px;
  font-weight:900; font-size:11px; letter-spacing:.08em;
}
.pill--red{background:rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.18)}
.pill--outline{border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.92)}
.pill--green{background:rgba(18,196,139,.10); border:1px solid rgba(18,196,139,.35); color:#aaffdf}

.section{padding:72px 0}
.section--soft{
  background:linear-gradient(180deg, rgba(255,255,255,.03), transparent 55%);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__header{margin-bottom:26px}
.section__header h2{margin:0 0 8px; font-size:30px; letter-spacing:-.02em}
.section__header p{margin:0}
.section__header.center{max-width:780px; margin:0 auto 26px}
.section__cta{margin-top:18px; display:flex; justify-content:center}

.hero{
  position:relative;
  padding:64px 0 44px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}
.hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 30% 10%, rgba(255,43,67,.18), transparent 60%),
    linear-gradient(180deg, rgba(5,6,10,.25) 0%, rgba(5,6,10,.82) 55%, rgba(5,6,10,.92) 100%);
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .9fr;
  gap:26px;
  align-items:start;
}
.hero__kicker{display:flex; align-items:center; gap:10px; opacity:.98}
.hero__kicker--center{justify-content:center; margin-bottom:8px}
.kicker__line{width:34px; height:2px; background:rgba(255,43,67,.9)}
.kicker__text{font-size:12px; letter-spacing:.16em; font-weight:900; color:rgba(243,244,246,.92)}
.hero__title{margin:14px 0 12px; font-size:50px; line-height:1.02; letter-spacing:-.03em}
.hero__subtitle{max-width:640px; font-size:15px; line-height:1.68; color:rgba(169,175,190,.98)}
.hero__cta{margin-top:18px; display:flex; flex-direction:column; gap:14px}
.hero__micro{display:flex; gap:14px; flex-wrap:wrap; font-size:13px; color:rgba(243,244,246,.9)}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.card--glass{
  background:linear-gradient(180deg, rgba(20,24,38,.92), rgba(10,12,18,.86));
  backdrop-filter: blur(10px);
}
.card__title{margin:0 0 10px; font-size:16px; letter-spacing:-.02em}
.card__footer{margin-top:14px}

.grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:18px}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}

.checklist{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
.checklist li{display:flex; gap:10px; align-items:flex-start; color:rgba(243,244,246,.92)}
.check{display:inline-flex; width:20px; height:20px; border-radius:8px; align-items:center; justify-content:center; background:rgba(18,196,139,.10); border:1px solid rgba(18,196,139,.35); color:#aaffdf; font-weight:900; flex:0 0 auto}
.checklist--grid{gap:12px}
.checklist.compact{gap:9px; margin-top:10px}

.bullets{margin:0; padding-left:18px; color:rgba(243,244,246,.9); line-height:1.62}
.bullets--x{list-style:"×  "}
.split{display:grid; grid-template-columns:1fr; gap:16px}

.cases-grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:18px}
.case-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.case-card:hover{transform:translateY(-2px); transition:.2s ease; border-color:rgba(255,43,67,.26)}
.case-thumb{
  height:160px;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(255,255,255,.06);
  position:relative;
}
.case-thumb::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.55) 75%, rgba(0,0,0,.75) 100%);
}
.badge{
  position:absolute; top:12px; right:12px;
  padding:6px 10px; border-radius:10px;
  font-weight:900; font-size:11px; letter-spacing:.08em;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.14);
  z-index:2;
}
.case-body{padding:16px}
.case-title{margin:0 0 14px; font-size:18px; letter-spacing:-.02em}
.case-btn{width:100%}

.step{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
  position:relative;
  overflow:hidden;
}
.step--bg::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(260px 140px at 20% 10%, rgba(255,43,67,.10), transparent 60%),
    radial-gradient(260px 140px at 80% 90%, rgba(18,196,139,.08), transparent 60%);
  pointer-events:none;
}
.step__icon{font-size:22px; margin-bottom:8px; position:relative}
.step h3, .step p{position:relative}

.doc-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
}
.doc-card__thumb{
  height:150px;
  border-radius:14px;
  background-size:cover;
  background-position:center;
  border:1px solid rgba(255,255,255,.06);
  margin-bottom:12px;
  position:relative;
  overflow:hidden;
}
.doc-card__thumb::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 85%);
}

.bonus-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.bonus-grid--4{grid-template-columns: repeat(4, 1fr)}
.bonus-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
}
.bonus-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; margin-bottom:10px}
.bonus-tag{
  font-size:10px; font-weight:900; letter-spacing:.1em;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,43,67,.35);
  color:rgba(255,43,67,.98);
  background:rgba(255,43,67,.08);
}
.bonus-price{
  display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
  padding-top:10px; border-top:1px solid rgba(255,255,255,.06); margin-top:12px;
}
.bonus-price .val{font-weight:900; color:rgba(169,175,190,.95); text-decoration:line-through}
.bonus-price .free{font-weight:900; color:#fff; background:rgba(18,196,139,.12); border:1px solid rgba(18,196,139,.35); padding:6px 10px; border-radius:999px}

.testimonials{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:8px}
.t-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
  padding:18px;
}
.t-head{display:flex; align-items:center; gap:12px; margin-bottom:10px}
.avatar{
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  object-fit:cover;
  background:#0a0b0f;
}
.t-name{font-weight:900}
.t-stars{color:rgba(255,210,90,.95); letter-spacing:.18em; font-size:12px; margin-top:2px}
.t-text{margin:0; color:rgba(243,244,246,.92); line-height:1.62}

.stats{margin-top:18px; display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.stat{
  text-align:center; padding:14px;
  border-radius:18px; border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
}
.stat__num{font-weight:900; font-size:22px}
.stat__label{font-size:12px; color:rgba(169,175,190,.95)}

.pricing{display:grid; grid-template-columns: 1fr 1.15fr; gap:18px; align-items:stretch}
.pricing--2{grid-template-columns: 1fr 1.05fr}
.price-card{
  border-radius:20px;
  padding:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  position:relative;
}
.price-card__head{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; margin-bottom:10px}
.price-card h3{margin:0; font-size:15px; letter-spacing:.12em}
.price{display:flex; flex-direction:column; gap:4px; margin:12px 0 12px}
.price__value{font-size:40px; font-weight:900; letter-spacing:-.04em}
.price__sub{font-size:12px}
.price-copy p{margin:0 0 8px; line-height:1.55}
.price-card--featured{
  border-color:rgba(255,43,67,.32);
  background:
    radial-gradient(500px 220px at 80% 0%, rgba(255,43,67,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.sold-flag{
  position:absolute; top:14px; right:14px;
  background:rgba(0,0,0,.62);
  border:1px solid rgba(255,43,67,.35);
  color:#fff; font-weight:900; font-size:11px; letter-spacing:.12em;
  padding:8px 10px; border-radius:12px;
}

.accordion{max-width:820px; margin:0 auto}
.acc{
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  margin-bottom:12px;
}
.acc__btn{
  width:100%; text-align:left;
  padding:16px 16px;
  background:transparent; border:0;
  color:#fff; font-weight:900;
  cursor:pointer;
}
.acc__btn::after{content:"+"; float:right; opacity:.9}
.acc.open .acc__btn::after{content:"–"}
.acc__panel{
  max-height:0; overflow:hidden;
  transition:max-height .25s ease;
  border-top:1px solid rgba(255,255,255,.06);
}
.acc__panel p{margin:0; padding:14px 16px; color:rgba(243,244,246,.9); line-height:1.6}

.footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:26px 0 92px;
  background:rgba(0,0,0,.22);
}
.footer__inner{display:flex; justify-content:space-between; gap:16px; align-items:flex-start}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__links a{color:rgba(169,175,190,.95); font-weight:800; font-size:13px}
.footer__links a:hover{color:#fff; text-decoration:underline}

.mobile-cta{
  position:fixed; left:0; right:0; bottom:0;
  padding:12px 16px;
  background:rgba(10,11,14,.82);
  border-top:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  display:none; z-index:60;
}

.sale-toast{
  position:fixed; left:18px; bottom:18px;
  width:min(360px, calc(100% - 36px));
  background:rgba(14,16,22,.90);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:12px 12px;
  display:none; align-items:center; gap:10px;
  z-index:90; backdrop-filter: blur(10px);
}
.sale-toast.show{display:flex}
.sale-toast__dot{
  width:10px; height:10px; border-radius:999px;
  background:var(--green);
  box-shadow:0 0 16px rgba(18,196,139,.45);
  flex:0 0 auto;
}
.sale-toast__title{font-weight:900; font-size:13px}
.sale-toast__meta{font-size:12px; color:rgba(169,175,190,.95); margin-top:2px}
.sale-toast__close{
  margin-left:auto;
  width:30px; height:30px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#fff; font-size:18px;
  cursor:pointer;
}

.modal{position:fixed; inset:0; display:none; z-index:80}
.modal.show{display:block}
.modal__overlay{position:absolute; inset:0; background:rgba(0,0,0,.65)}
.modal__card{
  position:relative;
  width:min(720px, calc(100% - 24px));
  margin:80px auto 0;
  background:linear-gradient(180deg, rgba(20,24,38,.98), rgba(10,12,18,.94));
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.modal__head{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; padding:16px 16px; border-bottom:1px solid rgba(255,255,255,.06)}
.modal__close{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#fff; font-size:22px;
  cursor:pointer;
}
.modal__body{padding:16px}
.modal__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:16px}
  .cases-grid{grid-template-columns: repeat(2, 1fr)}
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .bonus-grid--4{grid-template-columns:1fr}
  .testimonials{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .nav__links{display:none}
  .footer__inner{flex-direction:column}
  .mobile-cta{display:block}
}
@media (max-width: 420px){
  .hero__title{font-size:40px}
  .top-strip__text{font-size:12px}
  .hero__cta{gap:12px}
}


/* === FINAL ADJUSTMENTS === */
/* Stronger dark overlay for readability */
.hero__bg::after{
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.82) 55%, rgba(0,0,0,.95) 100%);
}

/* Mobile price spacing fix */
@media (max-width: 420px){
  .price__value{font-size:34px}
  .price-copy{margin-top:10px}
}
