/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:    #FFD93D;
  --yellow-dk: #F4C430;
  --green:     #4CAF50;
  --green-dk:  #388E3C;
  --pink:      #FF6B9D;
  --orange:    #FF8C42;
  --blue:      #4B9EFF;
  --purple:    #9B59B6;
  --white:     #FFFFFF;
  --off-white: #FFFDF5;
  --text:      #2D2D2D;
  --text-soft: #555;
  --radius:    16px;
  --shadow:    0 8px 32px rgba(0,0,0,.12);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.08);
}

html {
  scroll-behavior: smooth;
  background: #1a1a1a;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  overscroll-behavior-y: none;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

/* ===== BUTTONS ===== */
.btn-main {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(76,175,80,.45);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(76,175,80,.55); }

.btn-secondary {
  display: inline-block;
  background: #fff;
  color: var(--green-dk);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  border: 3px solid var(--green);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.btn-secondary:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.btn-large { font-size: 1.3rem; padding: 22px 56px; }

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.pulse { animation: pulse 2.2s ease-in-out infinite; }
.pulse:hover { animation: none; transform: translateY(-3px); }

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--orange), var(--pink));
  color: #fff;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  padding: 10px 20px;
  letter-spacing: .3px;
}

/* ===== TRUST ROW ===== */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-soft);
}

/* ===== SECTION SHARED ===== */
.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.bonus-tag { background: var(--pink); color: #fff; }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.highlight { color: var(--green-dk); }
.highlight-yellow { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #FFF9DB 0%, #FFFBE8 60%, #E8F8E8 100%);
  padding: 80px 0 0;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-text { flex: 1; min-width: 280px; }

.badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-image {
  flex: 0 0 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 380px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.deco {
  position: absolute;
  font-size: 2rem;
  animation: spin-slow 6s linear infinite;
  pointer-events: none;
}
.deco-star    { top: 5%; right: -5%; animation-delay: 0s; }
.deco-heart   { bottom: 15%; left: -8%; animation-delay: 1.5s; }
.deco-sparkle { top: 35%; right: -12%; animation-delay: .8s; }

@keyframes spin-slow {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(15deg) scale(1.1); }
  100% { transform: rotate(0deg) scale(1); }
}

.hero-wave {
  margin-top: 60px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ===== VALUE STRIP ===== */
.value-strip {
  background: #fff;
  padding: 28px 0;
  border-bottom: 2px dashed #FFD93D;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
}

.value-icon { font-size: 1.4rem; }

/* ===== PROBLEM ===== */
.problem {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #FFF6E0 100%);
  text-align: center;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.pain-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--yellow);
  transition: transform .2s, box-shadow .2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.pain-icon { font-size: 2.2rem; margin-bottom: 10px; }
.pain-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.pain-card p  { font-size: .88rem; color: var(--text-soft); line-height: 1.5; }

.solution-bridge {
  background: linear-gradient(135deg, var(--green), #8BC34A);
  color: #fff;
  padding: 24px 32px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(76,175,80,.35);
}

/* ===== WHAT YOU GET ===== */
.what-you-get {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.main-product {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 3px solid var(--yellow);
  margin-top: 40px;
  text-align: left;
}

.main-product-img { flex: 0 0 260px; }
.main-product-img img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.main-product-info { flex: 1; min-width: 240px; }
.main-product-info h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 20px; color: var(--green-dk); }

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefit-list li { font-size: 1rem; line-height: 1.5; }

/* ===== BONUSES ===== */
.bonuses {
  padding: 80px 0;
  background: linear-gradient(160deg, #FFF0F5 0%, #F3E5FF 100%);
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.bonus-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--pink);
  text-align: left;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.bonus-num {
  position: absolute;
  top: -16px;
  left: 20px;
  background: var(--pink);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.bonus-icon { font-size: 2rem; margin-bottom: 10px; }
.bonus-img  { width: 100%; height: 140px; object-fit: contain; border-radius: 12px; margin-bottom: 12px; }
.bonus-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.bonus-card p  { font-size: .87rem; color: var(--text-soft); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testi-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--yellow);
  text-align: left;
  transition: transform .2s;
}
.testi-card:hover { transform: translateY(-3px); }

.testi-stars { font-size: 1.1rem; margin-bottom: 12px; }
.testi-card > p { font-size: .93rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author span { font-size: .88rem; color: var(--text-soft); }

/* ===== TESTIMONIAL IMAGE CARDS ===== */
.testi-grid-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.testi-img-card {
  background: #fff;
  border: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  font-family: inherit;
}
.testi-img-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.testi-img-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
}

.testi-zoom {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  white-space: nowrap;
}
.testi-img-card:hover .testi-zoom { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px 20px;
  animation: fadeIn .2s ease;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s, transform .2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body.lightbox-open { overflow: hidden; }

/* ===== PLANS ===== */
.plans {
  padding: 80px 0;
  background: linear-gradient(160deg, #E8F5E9 0%, #F1F8E9 100%);
  text-align: center;
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  align-items: flex-start;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  flex: 0 0 320px;
  max-width: 340px;
  position: relative;
  text-align: center;
  transition: transform .2s;
}

.plan-basic { border: 3px solid #ddd; }
.plan-complete {
  border: 4px solid var(--green);
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(76,175,80,.25);
}
.plan-complete:hover { transform: scale(1.06); }

.plan-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .5px;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-price { margin-bottom: 12px; }

.price-old {
  display: block;
  text-decoration: line-through;
  color: #aaa;
  font-size: .9rem;
  margin-bottom: 4px;
}

.price-row { display: flex; align-items: flex-start; justify-content: center; gap: 2px; line-height: 1; }

.price-currency {
  font-size: 1.4rem;
  font-weight: 900;
  margin-top: 8px;
  color: var(--green-dk);
}
.price-value {
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-dk);
  line-height: 1;
}
.price-cents {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-dk);
  margin-top: 8px;
}

.price-save {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: .82rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 6px;
}

.plan-desc { font-size: .9rem; color: var(--text-soft); margin-bottom: 24px; }

.plan-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-list li { font-size: .93rem; }
.plan-no { opacity: .45; }

.plan-trust { font-size: .75rem; color: var(--text-soft); margin-top: 14px; line-height: 1.6; }

.plan-card .btn-main,
.plan-card .btn-secondary { width: 100%; }

/* ===== GUARANTEE ===== */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(160deg, #FFF9DB, #FFFDE7);
  text-align: center;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 3px solid var(--yellow);
  max-width: 860px;
  margin: 0 auto;
}

.guarantee-badge {
  flex-shrink: 0;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #8BC34A);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(76,175,80,.35);
}
.guarantee-num { font-size: 3.5rem; font-weight: 900; line-height: 1; }
.guarantee-label { font-size: .68rem; font-weight: 900; letter-spacing: 1px; text-align: center; line-height: 1.4; }

.guarantee-text { flex: 1; min-width: 240px; text-align: left; }
.guarantee-text h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 16px; color: var(--green-dk); }
.guarantee-text p  { font-size: .98rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 12px; }

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.guarantee-badges span {
  background: var(--off-white);
  border: 2px solid var(--yellow);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.faq-list {
  max-width: 740px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  border-radius: var(--radius);
  border: 2px solid #EEE;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--yellow); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq-arrow { font-size: .8rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: .93rem;
  color: var(--text-soft);
  line-height: 1.65;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dk), var(--green));
  color: #fff;
  text-align: center;
}

.cta-final h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 14px; }
.cta-final p  { font-size: 1.05rem; margin-bottom: 32px; opacity: .9; line-height: 1.6; }

.cta-final .btn-main {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}

.cta-final .trust-row { justify-content: center; color: rgba(255,255,255,.85); }

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 32px 20px;
  font-size: .85rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 60px 0 0; }
  .hero-inner { flex-direction: column; text-align: center; gap: 32px; }
  .hero-image { flex: 0 0 auto; }
  .product-img { width: 280px; }
  .trust-row { justify-content: center; }
  .hero-text h1 { font-size: 1.75rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .main-product { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; }
  .main-product-img { flex: 0 0 auto; }
  .main-product-img img { width: 200px; margin: 0 auto; }
  .plan-complete { transform: scale(1); }
  .guarantee-inner { padding: 32px 24px; }
  .guarantee-text { text-align: center; }
  .guarantee-badges { justify-content: center; }
  .deco { display: none; }
}

@media (max-width: 480px) {
  .plans-grid { gap: 24px; }
  .plan-card { flex: 0 0 100%; max-width: 100%; }
  .bonus-grid { grid-template-columns: 1fr; }
  .pain-cards { grid-template-columns: 1fr 1fr; }
}
