/* <label placeholder aria-label */
:root {
  --bg-primary: #0d0b1a;
  --bg-card: #1a1730;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --accent-sky: #0ea5e9;
  --accent-sky-light: #06b6d4;
  --accent-green: #22c55e;
  --accent-red: #e63946;
  --border-color: rgba(255, 255, 255, 0.08);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { background: #0d0b1a; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0d0b1a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* TIMER BAR */
.timer-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-sky-light));
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.timer-bar strong {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* CONTAINER */
.container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* HERO */
.hero {
  padding-top: 50px;
  text-align: center;
}
.hero h1 { font-size: 22px; font-weight: 800; line-height: 1.35; margin-bottom: 12px; }
.hero-cta-hint {
  font-size: 16px;
  font-weight: 600;
  color: #06b6d4;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(14, 165, 233, 0.5), 0 0 20px rgba(6, 182, 212, 0.3);
}
.hero-cover { width: 49%; height: auto; border-radius: 10px; margin-bottom: 24px; }

/* VIDEO */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 133.33%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  margin-bottom: 24px;
}
.video-wrapper iframe,
.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  cursor: pointer;
}
.video-click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA CARD */
.cta-card {
  background: var(--bg-card);
  border: 2px solid var(--accent-sky);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin-top: 8px;
}
.cta-card-rating { margin-bottom: 12px; }
.cta-card-rating .stars { color: #facc15; font-size: 16px; letter-spacing: 2px; }
.cta-card-rating .rating-value { color: #facc15; font-size: 13px; font-weight: 600; margin-left: 4px; }
.cta-card h3 { font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 16px; }
.cta-card-payment { font-size: 13px; color: #22c55e; font-weight: 700; margin-bottom: 4px; }
.cta-card-price { font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 20px; }
.cta-card-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-secondary);
}
.cta-card-features li svg { flex-shrink: 0; margin-top: 2px; }
.btn-cta-card {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 1px;
  margin-bottom: 20px;
  -webkit-animation: pulseCyan 2s ease-in-out infinite;
  animation: pulseCyan 2s ease-in-out infinite;
}
@keyframes pulseCyan {
  0%, 100% {
    box-shadow: 0 0 8px rgba(14, 165, 233, 0.4), 0 0 20px rgba(14, 165, 233, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px rgba(14, 165, 233, 0.6), 0 0 40px rgba(6, 182, 212, 0.35);
    transform: scale(1.03);
  }
}

/* SECTIONS */
.section { margin-top: 56px; }
.section h2 { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 8px; line-height: 1.3; }
.section-subtitle { text-align: center; color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }

/* BENEFITS */
.benefits-list { display: flex; flex-direction: column; gap: 12px; }
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px;
}
.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-green { background: rgba(34, 197, 94, 0.15); color: var(--accent-green); }
.icon-red { background: rgba(230, 57, 70, 0.15); color: var(--accent-red); }
.icon-cyan { background: rgba(14, 165, 233, 0.15); color: var(--accent-sky); }
.icon-green-alt { background: rgba(34, 197, 94, 0.15); color: var(--accent-green); }
.benefit-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.benefit-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

/* TESTIMONIALS */
.testimonial-carousel { position: relative; overflow: hidden; margin-top: 24px; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-img { width: 100%; height: auto; border-radius: var(--radius); }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(26, 23, 48, 0.9);
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn.prev { left: 4px; }
.carousel-btn.next { right: 4px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.carousel-dots .dot.active { background: var(--accent-sky); }

/* GUARANTEE */
.guarantee-card {
  background: var(--bg-card);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.guarantee-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.guarantee-card h2 { margin-bottom: 12px; }
.guarantee-card > p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.guarantee-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
.guarantee-points span { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }

/* FAQ */
.faq-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 28px 20px; }
.faq-card h2 { margin-bottom: 20px; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-arrow { flex-shrink: 0; font-size: 20px; color: var(--accent-sky); }
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 16px; }
.faq-answer p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-overlay.active .modal-card {
  animation: modalBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalBounce {
  0% { transform: scale(0.3) translateY(60px); opacity: 0; }
  50% { transform: scale(1.05) translateY(-10px); opacity: 1; }
  70% { transform: scale(0.95) translateY(5px); }
  100% { transform: scale(1) translateY(0); }
}
.modal-card {
  background: #1a1520;
  border: 2px solid #c8a24e;
  border-radius: 16px;
  padding: 32px 24px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
}
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: var(--text-secondary); font-size: 24px; cursor: pointer; }
.modal-badge {
  display: inline-block;
  background: #1a1520;
  border: 1.5px solid #c8a24e;
  color: #c8a24e;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.modal-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal-price { font-size: 42px; font-weight: 800; color: #c8a24e; line-height: 1; margin-bottom: 4px; }
.modal-subtitle { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.shimmer-text {
  background: linear-gradient(90deg, #c8a24e 0%, #fff5cc 40%, #c8a24e 60%, #fff5cc 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s linear infinite;
  font-weight: 700;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.modal-includes {
  background: #1e293b;
  border: 1px solid rgba(200, 162, 78, 0.25);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 24px;
}
.modal-includes-label { font-size: 11px; font-weight: 700; color: var(--text-secondary); letter-spacing: 1px; margin-bottom: 12px; }
.modal-includes ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.modal-includes li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.modal-includes li svg { flex-shrink: 0; }
.modal-btn-premium {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #c8a24e, #e0c068);
  color: #1a1520;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  animation: premiumPulse 2s ease-in-out infinite;
}
@keyframes premiumPulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(200, 162, 78, 0.4), 0 0 20px rgba(200, 162, 78, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px rgba(200, 162, 78, 0.6), 0 0 40px rgba(224, 192, 104, 0.35);
    transform: scale(1.03);
  }
}
.modal-btn-basic {
  display: block;
  width: 100%;
  padding: 12px;
  color: #888 !important;
  -webkit-text-fill-color: #888;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
}


/* FOOTER */
.site-footer {
  text-align: center;
  padding: 24px 20px 32px;
  background: #0d0b1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
}

/* TERMS MODAL */
#terms-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.75); align-items: center; justify-content: center; padding: 20px; }
#terms-overlay.active { display: flex; }
.terms-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 400px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}
.terms-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; text-align: center; }
.terms-content {
  overflow-y: auto;
  flex: 1;
  margin-bottom: 20px;
}
.terms-content p { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.terms-content strong { color: var(--text-primary); }
.terms-accept {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-sky-light));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

/* STICKY CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 12px 16px;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta button {
  width: 100%;
  padding: 16px;
  background: var(--accent-sky);
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sticky-cta { display: block !important; }
  body { padding-bottom: 80px; }
}

@media (min-width: 480px) {
  .hero h1 { font-size: 26px; }
  .section h2 { font-size: 26px; }
}
