/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --bg-main: #0a0a0a;
  --bg-card: #141414;
  --bg-card2: #1a1a1a;
  --green: #00ff7f;
  --green-dim: #00cc66;
  --green-glow: rgba(0, 255, 127, 0.15);
  --cyan: #00e5ff;
  --orange: #ff6b35;
  --red: #ff4444;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --border: rgba(0, 255, 127, 0.2);
  --border-dim: rgba(255, 255, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =============================================
   STICKY BAR
   ============================================= */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-light);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar strong { color: var(--green); }
.btn-sticky {
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-sticky:hover { opacity: 0.85; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 100px 0 70px;
  text-align: center;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,127,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,127,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,255,127,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.badge-top {
  display: inline-block;
  background: rgba(0,255,127,0.12);
  border: 1px solid var(--border);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-sub {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto 28px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.check-item {
  background: rgba(0,255,127,0.07);
  border: 1px solid rgba(0,255,127,0.15);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  width: 100%;
  max-width: 400px;
  text-align: left;
}
.hero-micro {
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
}

/* SOCIAL PROOF BAR */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  animation: fadeInUp 0.7s ease 0.5s both;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--gray-light);
}
.proof-item .stars { color: #ffd700; font-size: 16px; }
.proof-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--green); }
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dim);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 0 30px rgba(0,255,127,0.35);
  animation: fadeInUp 0.7s ease 0.4s both;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,255,127,0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-full { width: 100%; text-align: center; display: block; }

/* =============================================
   ACCENT COLORS
   ============================================= */
.accent-green { color: var(--green); }
.accent-cyan  { color: var(--cyan); }
.accent-red   { color: var(--red); }

/* =============================================
   SECTIONS COMMON
   ============================================= */
section { padding: 70px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 40px;
}
.badge-section {
  display: inline-block;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 20px;
  margin: 0 auto 16px;
  display: block;
  width: fit-content;
}

/* =============================================
   FOR WHO
   ============================================= */
.for-who { background: var(--bg-main); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }

.card {
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid transparent;
}
.card-green {
  background: rgba(0,255,127,0.05);
  border-color: rgba(0,255,127,0.2);
}
.card-red {
  background: rgba(255,68,68,0.05);
  border-color: rgba(255,68,68,0.2);
}
.card-icon { font-size: 24px; margin-bottom: 10px; }
.card-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.card ul { list-style: none; padding: 0; }
.card ul li {
  font-size: 14px;
  color: var(--gray-light);
  padding: 7px 0;
  border-bottom: 1px solid var(--border-dim);
  padding-left: 14px;
  position: relative;
}
.card ul li::before { content: '•'; position: absolute; left: 0; color: var(--gray); }

/* =============================================
   INCLUDES
   ============================================= */
.includes { background: #0d0d0d; }
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) { .includes-grid { grid-template-columns: 1fr; } }

.include-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.include-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.include-icon { font-size: 28px; margin-bottom: 12px; }
.include-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.include-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* =============================================
   BONUS SECTION
   ============================================= */
.bonus-section { background: var(--bg-main); }
.bonus-card {
  background: linear-gradient(135deg, #0d1f14 0%, #0a0a0a 100%);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,229,255,0.08), transparent 70%);
  pointer-events: none;
}
.bonus-tag {
  display: inline-block;
  background: rgba(0,229,255,0.12);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.bonus-card h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 800;
  margin-bottom: 16px;
}
.bonus-value-badge {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dim);
  color: var(--gray-light);
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.bonus-card p {
  color: var(--gray-light);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 24px;
  text-align: center;
}
.bonus-highlight {
  background: rgba(0,255,127,0.08);
  border: 1px solid rgba(0,255,127,0.2);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--green);
  font-weight: 600;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: #0d0d0d; }
.proof-label {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.big-rating {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
}
.stars-big { color: #ffd700; font-size: 24px; }
.rating-count { font-size: 13px; color: var(--gray); }

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--green-dim);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.testi-b { background: #7b61ff; color: #fff; }
.testi-c { background: #ff6b35; color: #fff; }
.testi-header > div { flex: 1; }
.testi-header strong { font-size: 15px; display: block; }
.testi-meta { font-size: 12px; color: var(--gray); }
.testi-g {
  width: 28px; height: 28px;
  background: #fff;
  color: #4285F4;
  font-weight: 800; font-size: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-stars { color: #ffd700; font-size: 14px; margin-bottom: 10px; }
.testi-card p { font-size: 14px; color: var(--gray-light); margin-bottom: 12px; }
.verified { font-size: 12px; color: var(--green); }

/* =============================================
   PRICING
   ============================================= */
.pricing { background: var(--bg-main); }
.urgency-bar, .guarantee-bar {
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  margin-bottom: 12px;
  text-align: center;
}
.urgency-bar {
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  color: #ffb89a;
}
.urgency-bar strong { color: var(--orange); }
.guarantee-bar {
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.2);
  color: #ffe08a;
  margin-bottom: 32px;
}

.price-card {
  background: var(--bg-card);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(0,255,127,0.1);
}
.price-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 20px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 8px;
}
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.price-from { font-size: 14px; color: var(--gray); }
.price-main {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
}
.price-period { font-size: 16px; color: var(--gray); }
.price-note { font-size: 12px; color: var(--gray); margin-bottom: 24px; }
.price-tagline { font-size: 14px; color: var(--gray-light); margin: 16px 0; }

.bonus-included-box {
  background: rgba(100,60,200,0.15);
  border: 1px solid rgba(150,100,255,0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.bonus-included-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #b89cff;
  margin-bottom: 6px;
}
.bonus-included-box strong { font-size: 16px; display: block; margin-bottom: 4px; }
.bonus-val { font-size: 13px; color: var(--gray); }
.bonus-val s { color: var(--gray); }

.recover-bar {
  background: rgba(0,255,127,0.08);
  border: 1px solid rgba(0,255,127,0.2);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}
.checklist {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-row {
  background: rgba(0,255,127,0.05);
  border: 1px solid rgba(0,255,127,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-light);
}
.check-row.bonus-row {
  background: rgba(255,200,0,0.07);
  border-color: rgba(255,200,0,0.2);
  color: #ffd700;
}
.price-guarantee { font-size: 12px; color: var(--gray); margin-top: 14px; }

/* =============================================
   FAQ
   ============================================= */
.faq { background: #0d0d0d; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.faq-highlight { border-color: rgba(0,255,127,0.25); }
.faq-item.faq-highlight .faq-q { color: var(--green); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-icon {
  color: var(--green);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

/* =============================================
   FINAL CTA / CONTACT
   ============================================= */
.final-cta { background: var(--bg-main); }
.final-card {
  background: linear-gradient(135deg, #0d1f14 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 0 80px rgba(0,255,127,0.08);
}
.final-card h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  margin-bottom: 14px;
}
.final-card > p {
  color: var(--gray-light);
  font-size: 15px;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-form input {
  background: #1a1a1a;
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus { border-color: var(--green); }
.contact-form input::placeholder { color: var(--gray); }

.contact-form .btn-primary {
  animation: none;
  font-size: 17px;
}

.form-micro { font-size: 12px; color: var(--gray); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-dim);
  padding: 32px 20px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}
.footer-copy { font-size: 12px; color: var(--gray); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 480px) {
  .sticky-bar { flex-direction: column; text-align: center; gap: 8px; }
  .social-proof-bar { gap: 12px; }
  .proof-divider { display: none; }
  .price-main { font-size: 42px; }
}
