:root{
  --bg: #FBF5FF;
  --bg-alt: #F5EDFD;
  --text: #331452;
  --muted: #736284;
  --primary: #A350F7;
  --primary-dark: #7C2FDB;
  --accent-orange: #FDA85E;
  --green: #20B657;
  --green-dark: #189146;
  --border: #E6DBF0;
  --white: #FFFFFF;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-card: 0 4px 20px rgba(51,20,82,0.06);
  --shadow-glow: 0 0 40px rgba(163,80,247,0.18);
}

*,*:before,*:after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Montserrat', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;}
.container{max-width:1100px;margin:0 auto;padding:0 20px;}
.container-narrow{max-width:720px;margin:0 auto;padding:0 20px;}

section{padding:72px 0;}
.section-alt{background:var(--bg-alt);}

.badge{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--primary);color:#fff;
  border-radius:var(--radius-full);
  padding:6px 18px;font-weight:700;font-size:13px;
  letter-spacing:.3px;text-transform:uppercase;
}
.badge-outline{
  display:inline-flex;align-items:center;gap:6px;
  background:#fff;color:var(--primary);border:1.5px solid var(--primary);
  border-radius:var(--radius-full);padding:6px 18px;font-weight:700;font-size:13px;
  text-transform:uppercase;
}

.center{text-align:center;}

h1,h2,h3{margin:0;font-weight:900;color:var(--text);}
h1{
  font-size:clamp(30px,5.4vw,56px);
  line-height:1.08;
  text-transform:uppercase;
  letter-spacing:-0.5px;
}
h2{
  font-size:clamp(24px,3.6vw,36px);
  line-height:1.18;
  text-transform:uppercase;
  font-weight:800;
}
h3{
  font-size:19px;
  font-weight:800;
  text-transform:none;
}
p{margin:0;color:var(--muted);}
.lede{font-size:clamp(16px,2vw,19px);color:var(--muted);font-weight:500;}

.gradient-text{
  background:linear-gradient(135deg,#9432F5,var(--accent-orange));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
}

.stack{display:flex;flex-direction:column;gap:16px;}
.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
@media(max-width:860px){
  .grid-2, .grid-3{grid-template-columns:1fr;}
}

.bonus-grid{grid-template-columns:repeat(3,1fr);}
@media(max-width:860px){
  .bonus-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:520px){
  .bonus-grid{grid-template-columns:1fr;}
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border:none;cursor:pointer;text-decoration:none;
  font-family:inherit;font-weight:800;text-transform:uppercase;letter-spacing:.2px;
  border-radius:var(--radius-full);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-cta{
  background:var(--green);color:#fff;
  padding:18px 30px;font-size:16px;
  box-shadow:0 12px 30px rgba(32,182,87,.35);
}
.btn-cta:hover{background:var(--green-dark);transform:translateY(-2px);box-shadow:0 16px 34px rgba(32,182,87,.42);}
.btn-block{width:100%;}
.btn-sub{display:block;margin-top:10px;font-size:12px;color:var(--muted);text-transform:none;font-weight:500;text-align:center;}

.card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);padding:28px;
}

.icon-tile{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg, rgba(163,80,247,.15), rgba(253,168,94,.15));
  display:flex;align-items:center;justify-content:center;
  color:var(--primary);flex-shrink:0;
  margin-bottom:16px;
}
.icon-tile svg{width:26px;height:26px;}

/* HERO */
.hero{padding-top:56px;}
.hero-avatars{
  display:flex;align-items:center;justify-content:center;gap:10px;margin-top:28px;
}
.avatar-stack{display:flex;}
.avatar-stack span{
  width:36px;height:36px;border-radius:50%;overflow:hidden;
  border:2px solid #fff;margin-left:-10px;
  display:flex;align-items:center;justify-content:center;
}
.avatar-stack span img{width:100%;height:100%;object-fit:cover;}
.avatar-stack span:first-child{margin-left:0;}
.hero-proof-text{font-size:14px;font-weight:600;color:var(--text);}

.hero-visual{
  margin:48px auto 0;max-width:640px;
}
.hero-visual-img{
  width:100%;height:auto;
  filter:drop-shadow(0 30px 50px rgba(51,20,82,.25));
}

/* PROBLEM */
.problem-layout{
  display:grid;grid-template-columns:0.85fr 1.15fr;gap:32px;
  align-items:center;margin-top:44px;max-width:980px;margin-left:auto;margin-right:auto;
}
.problem-image{
  border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-card);
  aspect-ratio:3/4;
}
.problem-image img{width:100%;height:100%;object-fit:cover;}
.problem-card{
  background:#fff;border-left:4px solid var(--primary);
  border-radius:var(--radius-lg);padding:32px;box-shadow:var(--shadow-card);
}
.problem-card p + p{margin-top:16px;}
.problem-card strong{color:var(--text);}
@media(max-width:760px){
  .problem-layout{grid-template-columns:1fr;}
  .problem-image{max-width:340px;margin:0 auto;}
}

.solution-image{
  margin-top:40px;border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-card);max-width:1000px;margin-left:auto;margin-right:auto;
}
.solution-image img{width:100%;height:auto;display:block;}

/* FEATURE GRID */
.feature-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:28px;box-shadow:var(--shadow-card);
}
.feature-card h3{margin-bottom:8px;}

/* BONUS */
.bonus-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:24px;text-align:center;box-shadow:var(--shadow-card);
  display:flex;flex-direction:column;align-items:center;
}
.bonus-img{
  width:100%;height:280px;display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.bonus-img img{max-width:100%;max-height:100%;object-fit:contain;}
.bonus-card h3{font-size:16px;min-height:44px;}
.bonus-price{margin-top:14px;font-size:15px;font-weight:700;}
.bonus-price .old{color:var(--muted);text-decoration:line-through;margin-right:8px;}
.bonus-price .free{color:var(--green);font-weight:900;}
.bonus-total{
  text-align:center;margin-top:40px;font-size:20px;font-weight:800;color:var(--text);
}
.bonus-total .old{color:var(--muted);text-decoration:line-through;margin:0 6px;}
.bonus-total .free-line{
  display:block;margin-top:6px;font-size:24px;font-weight:900;
  background:linear-gradient(135deg,#9432F5,var(--accent-orange));
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}

/* CAROUSEL (auto-scrolling marquee) */
.carousel-wrap{
  position:relative;margin-top:40px;overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.carousel-track{
  display:flex;gap:28px;width:max-content;
  animation:carousel-scroll 20s linear infinite;
}
.carousel-slide{
  flex:0 0 auto;width:440px;aspect-ratio:4/5;
  border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-card);
  border:1px solid var(--border);
}
.carousel-slide img{width:100%;height:100%;object-fit:cover;display:block;}
@keyframes carousel-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(calc(-50% + 14px));}
}
@media(max-width:640px){
  .carousel-slide{width:300px;}
  .carousel-track{animation-duration:15s;}
}

/* TESTIMONIALS */
.rating-summary{
  margin-top:20px;display:flex;align-items:center;justify-content:center;
  gap:10px;flex-wrap:wrap;font-weight:800;color:var(--text);font-size:15px;
}
.rating-word{color:var(--primary);}
.rating-stars{color:#F5A623;letter-spacing:1px;}
.rating-sep{color:var(--border);}
.rating-count{color:var(--muted);font-weight:600;}
.testimonial-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
  max-width:760px;margin-left:auto;margin-right:auto;
}
@media(max-width:700px){
  .testimonial-grid{grid-template-columns:1fr;}
}
.testimonial-card{
  background:#fff;border:1px solid var(--border);border-radius:12px;
  padding:24px;box-shadow:0 1px 2px rgba(0,0,0,.05);
  display:flex;flex-direction:column;gap:12px;
}
.testimonial-header{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;}
.testimonial-who{display:flex;align-items:center;gap:12px;min-width:0;}
.testimonial-who .dot{
  width:40px;height:40px;border-radius:50%;flex-shrink:0;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.testimonial-who .dot img{width:100%;height:100%;object-fit:cover;}
.testimonial-who strong{color:var(--text);display:block;font-size:14px;}
.testimonial-date{color:var(--muted);font-size:12.5px;}
.stars{color:#F5A623;font-size:16px;letter-spacing:2px;}
.testimonial-card p{color:var(--text);font-size:14.5px;font-weight:500;margin:0;}

/* PRICING */
.pricing-wrap{max-width:480px;margin:0 auto;}
.pricing-card{
  background:#fff;border:2px solid var(--primary);border-radius:20px;
  box-shadow:var(--shadow-glow);padding:36px 28px;
}
.price-from{font-size:13px;color:var(--muted);font-weight:600;margin-top:14px;}
.price-old{font-size:15px;color:var(--muted);text-decoration:line-through;font-weight:700;}
.price-for{font-size:13px;color:var(--muted);font-weight:600;margin-top:6px;}
.price-big{
  display:flex;align-items:baseline;justify-content:center;gap:4px;margin-top:2px;
}
.price-big .sym{font-size:22px;font-weight:800;color:var(--primary);}
.price-big .num{font-size:64px;font-weight:900;color:var(--primary);line-height:1;}
.price-save{
  text-align:center;font-weight:800;color:var(--primary);margin-top:8px;font-size:14px;
}
.pricing-list{margin-top:24px;display:flex;flex-direction:column;gap:16px;}
.pricing-list .item{display:flex;align-items:flex-start;gap:10px;font-weight:700;font-size:15px;color:var(--text);line-height:1.4;text-align:left;}
.pricing-list .item svg{flex-shrink:0;color:var(--primary);margin-top:3px;}
.bonus-heading{display:flex;align-items:center;gap:8px;font-weight:800;color:var(--primary);font-size:14px;text-transform:uppercase;margin-top:28px;margin-bottom:16px;}
.guarantee-line{
  display:flex;align-items:center;justify-content:center;gap:8px;
  margin-top:24px;font-weight:700;font-size:14px;color:var(--text);
}
.pay-icons{
  margin-top:18px;display:flex;justify-content:center;gap:8px;flex-wrap:wrap;
}
.pay-icons span{
  border:1px solid var(--border);border-radius:8px;padding:6px 10px;
  font-size:11px;font-weight:700;color:var(--muted);
}

/* GUARANTEE STANDALONE */
.guarantee-badge{
  width:76px;height:76px;border-radius:50%;background:rgba(163,80,247,.12);
  display:flex;align-items:center;justify-content:center;margin:0 auto 20px;color:var(--primary);
}
.guarantee-badge svg{width:36px;height:36px;}

/* HOW IT WORKS */
.step-card{position:relative;background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;box-shadow:var(--shadow-card);}
.step-number{
  width:38px;height:38px;border-radius:50%;
  background:linear-gradient(135deg,#9432F5,var(--accent-orange));
  color:#fff;font-weight:900;font-size:16px;
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}

/* FAQ */
.faq-item{
  background:#fff;border:1px solid var(--border);border-radius:14px;
  margin-bottom:14px;overflow:hidden;
}
.faq-item summary{
  cursor:pointer;list-style:none;padding:20px 24px;
  font-weight:700;font-size:15.5px;color:var(--text);
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary:after{
  content:"";width:12px;height:12px;flex-shrink:0;
  border-right:2px solid var(--primary);border-bottom:2px solid var(--primary);
  transform:rotate(45deg);transition:transform .2s ease;margin-top:-4px;
}
.faq-item[open] summary:after{transform:rotate(-135deg);margin-top:4px;}
.faq-item .faq-a{padding:0 24px 20px;color:var(--muted);font-size:14.5px;}

/* FINAL CTA */
.final-cta{
  background:linear-gradient(135deg,#7C2FDB,#A350F7 55%,#FDA85E 130%);
  border-radius:24px;padding:56px 32px;text-align:center;color:#fff;
}
.final-cta h2{color:#fff;}
.final-cta p{color:rgba(255,255,255,.9);}
.final-cta .btn-cta{background:var(--green);}

/* FOOTER */
footer{padding:56px 0 32px;}
.footer-logo{
  width:44px;height:44px;border-radius:12px;margin:0 auto 20px;
  background:linear-gradient(135deg,#9432F5,var(--accent-orange));
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:15px;
}
.footer-cols{display:grid;grid-template-columns:1fr 1fr;gap:32px;max-width:600px;margin:0 auto;text-align:center;}
@media(max-width:640px){.footer-cols{grid-template-columns:1fr;}}
.footer-cols h4{font-size:13px;text-transform:uppercase;letter-spacing:.5px;color:var(--text);font-weight:800;margin-bottom:14px;}
.footer-cols a, .footer-cols p{display:block;font-size:14px;color:var(--muted);margin-bottom:8px;text-decoration:none;}
.footer-cols a:hover{color:var(--primary);}
.footer-bottom{
  margin-top:40px;padding-top:24px;border-top:1px solid var(--border);
  text-align:center;font-size:13px;color:var(--muted);
}
