/* ============ RESET ============ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:#1a1a1a;
  background:#ffffff;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}

/* ============ LAYOUT ============ */
.container{
  max-width:820px;
  margin:0 auto;
  padding:0 20px;
}
.section{padding:56px 0}
.center{text-align:center;margin-top:32px}

/* ============ HIDDEN (reveal) ============ */
.hidden{display:none !important}

/* ============ TOP BAR (URGÊNCIA VERMELHA) ============ */
.topbar{
  background:linear-gradient(90deg,#c20000,#ff2020,#c20000);
  color:#fff;
  text-align:center;
  padding:9px 12px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  line-height:1.25;
  animation:barBlink 1.4s ease-in-out infinite;
  box-shadow:0 2px 10px rgba(255,0,0,.35);
}
@keyframes barBlink{
  0%,100%{filter:brightness(1)}
  50%{filter:brightness(1.25)}
}

/* ============ HERO (MOBILE-FIRST, SEM DISTRAÇÕES) ============ */
.hero{
  background:#ffffff;
  padding:14px 0 20px;
  border-bottom:1px solid #eee;
  min-height:calc(100dvh - 42px);
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.hero .container{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.headline{
  font-size:26px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.02em;
  color:#0f1320;
  text-align:center;
  max-width:560px;
  text-wrap:balance;
}
.headline .hl{color:#0fb4a6}

/* ============ VSL (VERTICAL — stories 9:16, cabe inteiro na tela) ============ */
.vsl-wrapper{
  width:100%;
  max-width:min(420px, calc((100dvh - 170px) * 9 / 16));
  margin:0 auto;
  border-radius:16px;
  overflow:hidden;
  background:#000;
  aspect-ratio:9/16;
  position:relative;
  box-shadow:0 12px 40px rgba(0,0,0,.22);
}
.vsl-wrapper iframe,
.vsl-wrapper video,
.vsl-wrapper > div:not(.vsl-placeholder){
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
}
.vsl-placeholder{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  color:#fff;
  text-align:center;
  padding:24px;
  background:
    repeating-linear-gradient(45deg,#111 0 10px,#1a1a1a 10px 20px);
}
.vsl-placeholder span{
  font-size:16px;
  font-weight:700;
  letter-spacing:.4px;
}
.vsl-placeholder small{
  margin-top:10px;
  font-size:12px;
  color:#bbb;
  max-width:380px;
}

/* ============ SCARCITY ============ */
.scarcity{
  background:#fff4d6;
  border-top:2px solid #f2c94c;
  border-bottom:2px solid #f2c94c;
  padding:16px 0;
  text-align:center;
  color:#6b4f00;
  font-size:15px;
}
.scarcity strong{color:#0f1320}

/* ============ SECTION COMMONS ============ */
.section-title{
  font-size:28px;
  font-weight:900;
  letter-spacing:-.01em;
  text-align:center;
  color:#0f1320;
  margin-bottom:14px;
  text-transform:uppercase;
}
.section-lead{
  text-align:center;
  font-size:17px;
  color:#3a3f52;
  max-width:640px;
  margin:0 auto 32px;
}

/* ============ METHOD ============ */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:32px 0;
}
.benefit-card{
  background:#f6f8fb;
  border:1px solid #e6eaf2;
  border-radius:12px;
  padding:22px 18px;
  text-align:center;
}
.benefit-icon{font-size:34px;margin-bottom:8px}
.benefit-card h3{
  font-size:15px;
  font-weight:800;
  margin-bottom:6px;
  color:#0f1320;
}
.benefit-card p{font-size:14px;color:#4a5068}

.image-block{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  margin:32px 0;
  background:#f0f3f8;
  min-height:260px;
}
.image-block img{width:100%;display:block}
.image-block.img-missing img{display:none}
.image-block .img-fallback{display:none}
.image-block.img-missing .img-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  color:#7a8197;
  font-size:14px;
  text-align:center;
}
.img-fallback code{background:#dde3ee;padding:2px 8px;border-radius:4px;font-family:monospace;font-size:13px}

.feature-list{
  list-style:none;
  margin-top:8px;
}
.feature-list li{
  padding:10px 0;
  border-bottom:1px dashed #e6eaf2;
  font-size:16px;
  color:#2b3040;
}
.feature-list li:last-child{border-bottom:none}

/* ============ ANTES E DEPOIS ============ */
.before-after{background:#fff}
.ba-pair{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  max-width:720px;
  margin:0 auto 20px;
}
.ba-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  background:#f0f3f8;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.ba-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
}
.ba-card figcaption{
  padding:14px 14px 16px;
  font-size:13.5px;
  color:#2b3040;
  line-height:1.45;
  background:#fff;
}
.ba-tag{
  display:inline-block;
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:8px;
}
.ba-tag-before{background:#ffe3e3;color:#c0392b}
.ba-tag-after{background:#d6f7f3;color:#0a9a8d}
.ba-before{border:2px solid #fadada}
.ba-after{border:2px solid #b9ece6}
.ba-note{
  text-align:center;
  margin-top:14px;
  color:#4a5068;
  font-size:15px;
  font-style:italic;
}
@media (max-width:520px){
  .ba-pair{gap:10px}
  .ba-card figcaption{font-size:12.5px;padding:10px 10px 12px}
}

/* ============ VÍDEOS DEPOIMENTO (PLAYER VTURB-STYLE) ============ */
.video-proofs{background:#fff}
.video-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  max-width:720px;
  margin:0 auto;
}
.video-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:#000;
  aspect-ratio:9/16;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  cursor:pointer;
  isolation:isolate;
}
.video-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#000;
}
.video-card::after{
  /* vinheta sobre o poster pra destacar o play */
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(ellipse at center, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:1;
}
.video-card.is-playing::after{opacity:0}

/* BOTÃO DE PLAY (centro, chamativo, pulsando) */
.vsl-play{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:78px;height:78px;
  border-radius:50%;
  border:none;
  background:#14c4b4;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:3;
  box-shadow:0 0 0 0 rgba(20,196,180,.7), 0 12px 30px rgba(0,0,0,.45);
  animation:vslPulse 1.6s ease-out infinite;
  transition:transform .15s ease, opacity .25s ease;
  padding-left:4px;
}
.vsl-play:hover{transform:translate(-50%,-50%) scale(1.06)}
.vsl-play:active{transform:translate(-50%,-50%) scale(.95)}
.vsl-play svg{filter:drop-shadow(0 2px 4px rgba(0,0,0,.25))}
@keyframes vslPulse{
  0%  {box-shadow:0 0 0 0 rgba(20,196,180,.7), 0 12px 30px rgba(0,0,0,.45)}
  70% {box-shadow:0 0 0 22px rgba(20,196,180,0),  0 12px 30px rgba(0,0,0,.45)}
  100%{box-shadow:0 0 0 0 rgba(20,196,180,0),    0 12px 30px rgba(0,0,0,.45)}
}
.video-card.is-playing .vsl-play{opacity:0;pointer-events:none}

/* BANNER "ATIVAR SOM" — aparece quando vídeo tá tocando mudo */
.vsl-sound{
  position:absolute;
  left:50%;bottom:46px;
  transform:translateX(-50%);
  z-index:3;
  background:rgba(255,204,0,.97);
  color:#0f1320;
  font-weight:900;
  font-size:11px;
  letter-spacing:.4px;
  padding:9px 14px;
  border-radius:999px;
  white-space:nowrap;
  box-shadow:0 6px 20px rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  animation:vslShake 2s ease-in-out infinite;
}
.video-card.is-muted .vsl-sound{
  opacity:1;
  pointer-events:auto;
  cursor:pointer;
}
@keyframes vslShake{
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%    {transform:translateX(-50%) translateY(-4px)}
}

/* BARRA DE PROGRESSO FINA (estilo VTurb) */
.vsl-progress{
  position:absolute;
  left:0;right:0;bottom:0;
  height:4px;
  background:rgba(255,255,255,.18);
  z-index:2;
  opacity:0;
  transition:opacity .3s ease;
}
.vsl-progress span{
  display:block;
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#14c4b4,#0fb4a6);
  box-shadow:0 0 8px rgba(20,196,180,.6);
  transition:width .15s linear;
}
.video-card.is-playing .vsl-progress{opacity:1}

/* FALLBACK quando arquivo não carrega */
.video-card.img-missing video,
.video-card.img-missing .vsl-play,
.video-card.img-missing .vsl-sound,
.video-card.img-missing .vsl-progress,
.video-card.img-missing::after{display:none}
.video-card .img-fallback{display:none}
.video-card.img-missing{background:#1a1a1a}
.video-card.img-missing .img-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  color:#aaa;
  font-size:12px;
  text-align:center;
  height:100%;
}
.video-card.img-missing .img-fallback code{background:#333;color:#ffcc00}

@media (max-width:520px){
  .video-grid{grid-template-columns:1fr;max-width:340px;gap:18px}
  .vsl-play{width:84px;height:84px}
  .vsl-sound{font-size:12px;padding:10px 16px;bottom:52px}
}

/* ============ PROVAS ============ */
.proofs{background:#fafbfd}
.proof-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  max-width:720px;
  margin:0 auto;
}
@media (max-width:520px){
  .proof-grid{grid-template-columns:1fr;max-width:420px}
}
.proof{
  position:relative;
  background:#f0f3f8;
  border-radius:12px;
  overflow:hidden;
  min-height:180px;
  border:1px solid #e6eaf2;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
}
.proof img{width:100%;display:block}
.proof.img-missing img{display:none}
.proof .img-fallback{display:none}
.proof.img-missing .img-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  color:#7a8197;
  font-family:monospace;
  font-size:13px;
}

/* ============ STICKY CTA MOBILE ============ */
.sticky-cta{
  position:fixed;
  bottom:12px;
  left:12px;
  right:12px;
  z-index:99;
  display:none;
  background:#14c4b4;
  color:#fff;
  text-align:center;
  padding:14px 16px;
  border-radius:12px;
  font-weight:800;
  font-size:14px;
  letter-spacing:.3px;
  box-shadow:0 6px 0 #0a9a8d, 0 12px 28px rgba(20,196,180,.35);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-3px)}
}
@media (max-width:720px){
  .sticky-cta{display:block}
  body{padding-bottom:80px}
}

/* ============ PRICING (DOPAMINÉRGICO) ============ */
.pricing{
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(20,196,180,.15), transparent 60%),
    radial-gradient(900px 400px at 90% 110%, rgba(255,204,0,.12), transparent 60%),
    #fff;
  position:relative;
  overflow:hidden;
}
.pricing::before{
  content:"";
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(45deg, rgba(20,196,180,.04) 0 12px, transparent 12px 24px);
  pointer-events:none;
}
.pricing-title{
  font-size:34px !important;
  background:linear-gradient(90deg,#0f1320 0%,#0a9a8d 50%,#0f1320 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  background-size:200% auto;
  animation:shineText 4s linear infinite;
}
@keyframes shineText{0%{background-position:0% 50%}100%{background-position:200% 50%}}
.pricing-lead{
  font-size:18px !important;
  color:#2b3040 !important;
}

.plans{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:8px;
  position:relative;
}
.plans-single{
  grid-template-columns:1fr;
  max-width:560px;
  margin:8px auto 0;
}
.plan{
  position:relative;
  background:#ffffff;
  border:2px solid #e6eaf2;
  border-radius:16px;
  padding:28px 22px;
  display:flex;
  flex-direction:column;
}
.plan-featured{
  border-color:#0fb4a6;
  box-shadow:0 12px 40px rgba(15,180,166,.18);
  transform:translateY(-4px);
}
.plans-single .plan-featured{transform:none}

/* ---- HERO PLAN (borda única pulsante) ---- */
.plan-hero{
  padding:36px 26px 28px;
  border:3px solid #14c4b4;
  border-radius:20px;
  background:#fff;
  animation:planBorderPulse 1.8s ease-in-out infinite;
}
@keyframes planBorderPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(20,196,180,.55), 0 10px 30px rgba(15,180,166,.10)}
  50%    {box-shadow:0 0 0 14px rgba(20,196,180,0),  0 10px 30px rgba(15,180,166,.10)}
}

.plan-badge-hero{
  position:static;
  display:inline-block;
  transform:none;
  margin:0 auto 18px;
  background:linear-gradient(90deg,#ff3b3b,#ff6a00,#ffcc00,#ff6a00,#ff3b3b);
  background-size:300% auto;
  color:#fff;
  font-weight:900;
  font-size:13px;
  padding:8px 18px;
  border-radius:999px;
  letter-spacing:1px;
  box-shadow:0 6px 18px rgba(255,60,60,.35);
  animation:badgeShine 3s linear infinite;
  text-transform:uppercase;
}
@keyframes badgeShine{0%{background-position:0% 50%}100%{background-position:300% 50%}}

.plan-title-hero{
  font-size:22px !important;
  color:#0f1320;
  text-align:center;
  letter-spacing:.5px;
  margin-bottom:22px !important;
}

.plan-price-hero{
  text-align:center;
  padding:22px 10px 20px !important;
  margin-bottom:22px;
  border-bottom:2px dashed #b9ece6 !important;
  position:relative;
}
.plan-price-hero .old{
  font-size:15px !important;
  color:#8a8f9e !important;
  text-decoration:none !important;
  margin-bottom:6px !important;
}
.plan-price-hero .old s{color:#c0392b;margin-right:6px}
.price-big{
  display:inline-flex;
  align-items:flex-start;
  justify-content:center;
  color:#0f1320;
  line-height:1;
  margin:4px 0 8px;
  filter:drop-shadow(0 6px 18px rgba(15,180,166,.35));
  animation:pricePop 2.4s ease-in-out infinite;
}
@keyframes pricePop{
  0%,100%{transform:scale(1)}
  50%    {transform:scale(1.04)}
}
.price-currency{
  font-size:28px;
  font-weight:900;
  margin-top:14px;
  margin-right:4px;
  color:#0a9a8d;
}
.price-value{
  font-size:96px;
  font-weight:900;
  letter-spacing:-.05em;
  background:linear-gradient(180deg,#0f1320 0%,#0a9a8d 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.price-cents{
  font-size:30px;
  font-weight:900;
  margin-top:18px;
  color:#0f1320;
}
.price-split{
  font-size:16px;
  color:#2b3040;
  margin-bottom:2px;
}
.price-split strong{color:#0a9a8d}

/* ---- CTA MEGA (verde vivo) ---- */
.cta-mega{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  gap:2px;
  padding:20px 22px !important;
  font-size:20px !important;
  letter-spacing:.5px;
  color:#fff !important;
  background:linear-gradient(135deg,#22c55e 0%,#16a34a 100%) !important;
  border:none !important;
  border-radius:14px !important;
  cursor:pointer;
  box-shadow:
    0 8px 0 #15803d,
    0 16px 36px rgba(34,197,94,.45),
    inset 0 2px 0 rgba(255,255,255,.35) !important;
  animation:ctaPulse 1.6s ease-in-out infinite !important;
  position:relative;
  overflow:hidden;
  font-family:inherit;
}
.cta-mega:hover{filter:brightness(1.05)}
.cta-mega:active{transform:translateY(4px) !important;box-shadow:0 2px 0 #15803d !important}
.cta-mega::after{
  content:"";
  position:absolute;
  top:0;left:-75%;
  width:50%;height:100%;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.4) 50%,transparent 100%);
  transform:skewX(-20deg);
  animation:ctaSweep 2.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes ctaPulse{
  0%,100%{transform:translateY(0)}
  50%    {transform:translateY(-3px)}
}
@keyframes ctaSweep{
  0%  {left:-75%}
  55% {left:130%}
  100%{left:130%}
}
.cta-mega-top{
  font-size:22px;
  font-weight:900;
  letter-spacing:.8px;
}
.cta-mega-sub{
  font-size:12px;
  font-weight:700;
  letter-spacing:.3px;
  opacity:.95;
  text-transform:none;
}

.plan-deliverables{
  background:#f6fcfb;
  border:1px dashed #b9ece6;
  border-radius:14px;
  padding:20px 20px;
  margin-top:24px;
  margin-bottom:14px;
}
.plan-deliv-title{
  font-size:14px;
  font-weight:900;
  letter-spacing:.5px;
  color:#0a9a8d;
  margin-bottom:12px;
  text-align:center;
}
.plan-deliverables .plan-features{margin-bottom:0}
.plan-deliverables .plan-features li{
  padding:10px 0;
  border-bottom:1px dashed #d8ede9;
  font-size:15px;
  line-height:1.5;
  color:#2b3040;
}
.plan-deliverables .plan-features li:last-child{border-bottom:none}
.plan-foot{
  text-align:center;
  margin-top:10px;
  font-size:13px;
  color:#4a5068;
  font-weight:600;
}

@media (max-width:520px){
  .pricing-title{font-size:26px !important}
  .price-value{font-size:82px}
  .price-currency{font-size:24px;margin-top:12px}
  .price-cents{font-size:26px;margin-top:16px}
  .cta-mega-top{font-size:19px}
  .plan-hero{padding:32px 18px 24px}
}

/* ============ LEAD MODAL ============ */
body.modal-open{overflow:hidden}
.lead-modal{
  position:fixed;inset:0;z-index:1000;
  display:none;
  align-items:center;justify-content:center;
  padding:16px;
}
.lead-modal.is-open{display:flex}
.lead-modal-backdrop{
  position:absolute;inset:0;
  background:rgba(15,19,32,.72);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  animation:leadFade .2s ease;
}
.lead-modal-content{
  position:relative;
  width:100%;
  max-width:440px;
  background:#fff;
  border-radius:18px;
  padding:30px 24px 24px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  animation:leadSlide .3s cubic-bezier(.2,.9,.3,1.15);
  max-height:calc(100dvh - 32px);
  overflow-y:auto;
}
@keyframes leadFade{from{opacity:0}to{opacity:1}}
@keyframes leadSlide{
  from{opacity:0;transform:translateY(18px) scale(.96)}
  to  {opacity:1;transform:translateY(0)    scale(1)}
}
.lead-modal-close{
  position:absolute;
  top:8px;right:12px;
  background:none;border:none;
  font-size:28px;
  color:#8a8f9e;
  cursor:pointer;
  line-height:1;
  padding:6px 10px;
  border-radius:8px;
  transition:background .15s, color .15s;
}
.lead-modal-close:hover{background:#f1f4f9;color:#0f1320}
.lead-modal-content h3{
  font-size:21px;
  font-weight:900;
  color:#0f1320;
  margin:0 0 6px;
  text-align:center;
  line-height:1.22;
  letter-spacing:-.01em;
}
.lead-modal-sub{
  text-align:center;
  color:#4a5068;
  font-size:14.5px;
  margin-bottom:22px;
  line-height:1.4;
}
#lead-form label{
  display:block;
  margin-bottom:14px;
}
#lead-form label span{
  display:block;
  font-size:13px;
  font-weight:700;
  color:#0f1320;
  margin-bottom:6px;
}
#lead-form input{
  width:100%;
  padding:14px 14px;
  border:1.5px solid #e6eaf2;
  border-radius:10px;
  font-size:15.5px;
  background:#f9fafb;
  font-family:inherit;
  color:#0f1320;
  transition:border-color .15s, background .15s, box-shadow .15s;
  -webkit-appearance:none;
  appearance:none;
}
#lead-form input::placeholder{color:#9aa0b2}
#lead-form input:focus{
  outline:none;
  border-color:#22c55e;
  background:#fff;
  box-shadow:0 0 0 3px rgba(34,197,94,.15);
}
#lead-form input.is-invalid{
  border-color:#ef4444;
  background:#fef2f2;
}
.lead-modal-submit{
  display:block;
  width:100%;
  padding:16px;
  margin-top:4px;
  background:linear-gradient(135deg,#22c55e 0%,#16a34a 100%);
  color:#fff;
  border:none;
  border-radius:10px;
  font-weight:900;
  font-size:16px;
  letter-spacing:.5px;
  cursor:pointer;
  font-family:inherit;
  box-shadow:0 6px 0 #15803d, 0 10px 24px rgba(34,197,94,.3);
  transition:transform .08s, box-shadow .15s, filter .15s;
}
.lead-modal-submit:hover{filter:brightness(1.05)}
.lead-modal-submit:active{transform:translateY(4px);box-shadow:0 2px 0 #15803d}
.lead-modal-submit:disabled{opacity:.65;cursor:wait}
.lead-modal-foot{
  text-align:center;
  font-size:11.5px;
  color:#8a8f9e;
  margin-top:14px;
  line-height:1.4;
}
@media (max-width:520px){
  .lead-modal-content{padding:26px 20px 20px}
  .lead-modal-content h3{font-size:19px}
}
.plan-badge{
  position:absolute;
  top:-12px;left:50%;
  transform:translateX(-50%);
  background:#0fb4a6;
  color:#fff;
  font-size:12px;
  font-weight:800;
  padding:6px 14px;
  border-radius:999px;
  letter-spacing:.5px;
}
.plan-title{
  font-size:16px;
  font-weight:800;
  text-align:center;
  color:#0f1320;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:14px;
}
.plan-price{
  text-align:center;
  margin-bottom:22px;
  padding-bottom:18px;
  border-bottom:1px dashed #e6eaf2;
}
.plan-price .old{
  display:block;
  font-size:13px;
  color:#8a8f9e;
  text-decoration:line-through;
  margin-bottom:4px;
}
.plan-price .new{
  display:block;
  font-size:42px;
  font-weight:900;
  color:#0f1320;
  letter-spacing:-.02em;
  line-height:1.1;
}
.plan-price .tag{
  display:block;
  font-size:13px;
  color:#4a5068;
  margin-top:4px;
}
.plan-features{
  list-style:none;
  margin-bottom:24px;
  flex:1;
}
.plan-features li{
  padding:8px 0;
  font-size:14.5px;
  color:#2b3040;
}

/* ============ CTA BUTTON ============ */
.cta-btn{
  display:block;
  width:100%;
  padding:18px 20px;
  background:#14c4b4;
  color:#fff !important;
  text-align:center;
  font-weight:800;
  font-size:15px;
  letter-spacing:.5px;
  border-radius:10px;
  text-transform:uppercase;
  transition:transform .1s ease, box-shadow .15s ease, background .15s ease;
  box-shadow:0 6px 0 #0a9a8d, 0 10px 24px rgba(20,196,180,.25);
}
.cta-btn:hover{background:#11b3a4;transform:translateY(1px);box-shadow:0 4px 0 #0a9a8d, 0 8px 18px rgba(20,196,180,.3)}
.cta-btn:active{transform:translateY(4px);box-shadow:0 2px 0 #0a9a8d}
.cta-primary{background:#14c4b4}

/* ============ ABOUT ============ */
.about{background:#f6f8fb}
.about-photo{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  margin:0 auto 28px;
  max-width:560px;
  background:#e6eaf2;
  min-height:260px;
}
.about-photo img{width:100%;display:block}
.about-photo.img-missing img{display:none}
.about-photo .img-fallback{display:none}
.about-photo.img-missing .img-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:90px 20px;
  color:#7a8197;
  font-size:14px;
  text-align:center;
}
.about-text{
  max-width:620px;
  margin:0 auto 28px;
  font-size:17px;
  color:#2b3040;
}
.about-text p{margin-bottom:16px}
.about-text strong{color:#0f1320}

/* ============ EVEN IF ============ */
.even-if-list{
  max-width:620px;
  margin:0 auto;
  font-size:17px;
  color:#2b3040;
}
.even-if-list p{
  padding:14px 18px;
  background:#f6f8fb;
  border-left:4px solid #14c4b4;
  border-radius:6px;
  margin-bottom:12px;
}

/* ============ BONUS ============ */
.bonus{background:#0f1320;color:#fff}
.bonus .section-title{color:#fff}
.bonus-label{
  display:block;
  text-align:center;
  color:#ffcc00;
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:10px;
}
.bonus-lead{
  text-align:center;
  color:#c7cde0;
  font-size:16px;
  max-width:620px;
  margin:0 auto 28px;
}
.bonus-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:10px;
}
.bonus-item{
  position:relative;
  background:linear-gradient(160deg,#1a2033 0%,#141a2a 100%);
  border:1px solid #2a3146;
  border-radius:14px;
  padding:26px 20px 22px;
  transition:transform .2s ease, border-color .2s ease;
}
.bonus-item:hover{transform:translateY(-3px);border-color:#ffcc00}
.bonus-tag{
  position:absolute;
  top:-10px;left:16px;
  background:#ffcc00;
  color:#0f1320;
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  padding:4px 10px;
  border-radius:999px;
}
.bonus-item h3{
  font-size:16px;
  font-weight:800;
  margin:4px 0 8px;
  color:#ffcc00;
  line-height:1.25;
}
.bonus-item p{font-size:14.5px;color:#c7cde0;line-height:1.5}
.bonus .cta-btn{max-width:360px;margin:0 auto}

/* ============ GUARANTEE ============ */
.guarantee{background:#fff}
.guarantee-box{
  max-width:620px;
  text-align:center;
  background:#f6f8fb;
  border:2px dashed #14c4b4;
  border-radius:16px;
  padding:36px 28px;
}
.guarantee-badge{
  display:inline-block;
  background:#14c4b4;
  color:#fff;
  font-weight:900;
  font-size:14px;
  padding:8px 16px;
  border-radius:999px;
  letter-spacing:1px;
  margin-bottom:16px;
}
.guarantee-box h2{
  font-size:24px;
  font-weight:900;
  color:#0f1320;
  margin-bottom:14px;
}
.guarantee-box p{
  font-size:16px;
  color:#2b3040;
  margin-bottom:10px;
}
.guarantee-note{color:#4a5068;margin-top:14px}

/* ============ FAQ ============ */
.faq{background:#fafbfd}
.faq-list{max-width:680px;margin:0 auto}
.faq-item{
  background:#fff;
  border:1px solid #e6eaf2;
  border-radius:10px;
  margin-bottom:12px;
  overflow:hidden;
}
.faq-item summary{
  padding:18px 22px;
  font-weight:700;
  font-size:15.5px;
  color:#0f1320;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';
  font-size:22px;
  font-weight:400;
  color:#14c4b4;
  transition:transform .2s;
}
.faq-item[open] summary::after{content:'−'}
.faq-answer{
  padding:0 22px 18px;
  color:#4a5068;
  font-size:15px;
  line-height:1.6;
}

/* ============ FOOTER ============ */
.footer{
  background:#0f1320;
  color:#c7cde0;
  padding:40px 0 30px;
  text-align:center;
  font-size:13.5px;
}
.footer p{margin-bottom:8px}
.footer-links a{color:#14c4b4;margin:0 4px}
.footer-links a:hover{text-decoration:underline}
.disclaimer{
  color:#7a8197;
  font-size:12px;
  max-width:560px;
  margin:16px auto 0;
  line-height:1.55;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 720px){
  .headline{font-size:34px}
}
@media (max-width: 720px){
  .section-title{font-size:22px}
  .section{padding:44px 0}
  .benefits-grid{grid-template-columns:1fr}
  .plans{grid-template-columns:1fr}
  .plan-featured{transform:none}
  .bonus-list{grid-template-columns:1fr}
  .plan-price .new{font-size:36px}
}
@media (max-width: 380px){
  .headline{font-size:22px}
  .topbar{font-size:11px}
}
