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

:root {
  --primary: #ff6b35;
  --primary-dark: #e55a25;
  --secondary: #ffd700;
  --green: #28a745;
  --dark: #1a1a2e;
  --text: #333;
  --bg-light: #f9f9f9;
  --white: #fff;
  --radius: 12px;
}

body {
  font-family: 'Fredoka', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

/* URGENCY BANNER */
.urgency-banner {
  background: linear-gradient(90deg, #e53935, #b71c1c);
  padding: 12px 0;
  text-align: center;
}
.urgency-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.date-highlight {
  background: var(--secondary);
  color: #333;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

/* HERO */
.hero {
  background: #354d16;
  padding: 50px 0 60px;
  text-align: center;
}
.hero-product-image {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 30px;
  position: relative;
}
.hero-product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero-pretitle {
  color: #ddd0a0;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.25;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title {
  color: #ddd0a0;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.25;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-highlight {
  background: rgba(200,190,140,0.18);
  padding: 1px 6px;
  border-radius: 3px;
  color: #ddd0a0;
}
.hero-bold {
  font-weight: 800;
  color: #ffffff;
}
.number-500 {
  color: var(--secondary);
}
.bonus-text {
  color: var(--primary);
}
.hero-subtitle {
  color: #b8ab7a;
  font-size: 1.15rem;
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle strong {
  text-decoration: underline;
  color: #cfc08a;
}
.hero-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: left;
}
.hero-bullets li {
  background: rgba(30, 20, 5, 0.55);
  border-radius: 10px;
  padding: 14px 14px;
  color: #c8bc8a;
  font-size: 0.88rem;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.hero-bullets li i {
  color: #c8a84b;
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.hero-cta-green {
  background: #5aaa5e !important;
  box-shadow: 0 6px 20px rgba(76,175,80,0.35) !important;
  border: 2px dashed rgba(255,255,255,0.55) !important;
  font-size: 1.15rem !important;
  padding: 20px 0 !important;
  width: 100%;
  max-width: 680px;
  border-radius: 50px !important;
  animation: none !important;
}
.hero-cta-green:hover {
  background: #4a9a4e !important;
  transform: translateY(-2px) !important;
}
.video-wrapper {
  max-width: 400px;
  margin: 0 auto 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255,107,53,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2s infinite;
  font-family: 'Fredoka', sans-serif;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,107,53,0.5);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
}

/* KIT PREVIEW */
.kit-preview {
  padding: 60px 0;
  background: #5c500f;
}
.kit-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 36px;
  line-height: 1.3;
}
.carousel-wrapper {
  background: #f5f0e8;
  border-radius: 20px;
  padding: 24px 0;
  margin-bottom: 16px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}
.carousel-slide {
  flex: 0 0 420px;
  margin-right: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.carousel-slide img {
  width: 420px;
  height: 320px;
  object-fit: contain;
  display: block;
  background: #fff;
}
.carousel-dots {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: #fff; }
.kit-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kit-tag {
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.kit-green  { background: #2e7d32; }
.kit-gold   { background: #b8860b; }
.kit-blue   { background: #1565c0; }
.kit-red    { background: #b71c1c; }

/* HOW IT WORKS */
.how-it-works {
  padding: 44px 0;
  background: #3a3a0e;
}
.hiw-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #c8c08a;
  margin-bottom: 24px;
  line-height: 1.3;
}
.hiw-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}
.hiw-card {
  background: #111108;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hiw-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.hiw-card h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1.2;
}
.hiw-card p {
  font-size: 0.82rem;
  color: #c8c4a8;
  line-height: 1.5;
  margin: 0;
}

/* EXCLUSIVE BENEFITS */
.exclusive-benefits {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.exclusive-benefits .section-title { color: var(--white); }
.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 700px) {
  .exclusive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .exclusive-card {
    padding: 18px 14px;
    text-align: center;
  }
  .exclusive-card h3 { font-size: 0.95rem; }
  .exclusive-card p { font-size: 0.82rem; }
}
.exclusive-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
}
.exclusive-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 14px;
  display: block;
}
.exclusive-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--secondary); }
.exclusive-card p { font-size: 0.9rem; color: #d0cdb8; }

/* VSL SECTION */
.vsl-section {
  background: #1c2a08;
  padding: 60px 0 50px;
  text-align: center;
  border-top: 4px solid #5abf50;
  border-bottom: 4px solid #5abf50;
}
.vsl-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
}
.vsl-title {
  color: #e8ddb0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 12px;
}
.vsl-title strong {
  font-weight: 800;
  color: #fff;
}
.vsl-play-hint {
  color: #f0d060;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.vsl-video-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  background: #000;
  position: relative;
}
.vsl-video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 14px;
}
.vsl-arrow {
  margin-top: 22px;
  font-size: 2.2rem;
  color: #5abf50;
  font-weight: 900;
  animation: bounce 1.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* RESULTS SECTION */
.results-section {
  padding: 60px 0;
  background: #2d4a18;
}
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.results-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
.results-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #6dbf5a;
  margin-bottom: 24px;
  line-height: 1.4;
}
.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.results-list li {
  background: #111108;
  border-radius: 10px;
  padding: 14px 18px;
  color: #e0e0d0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.results-list li i {
  color: #5abf50;
  font-size: 1.3rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .results-layout { grid-template-columns: 1fr; }
}

/* PRICING PLANS */
.pricing-plans {
  padding: 60px 0;
  background: #111208;
}
.pricing-plans .section-title { color: #fff; }
.plans-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}
.plans-timer-inner {
  background: linear-gradient(135deg, #c0392b, #8e1a0e);
  border-radius: 16px;
  padding: 18px 36px;
  text-align: center;
}
.timer-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}
.countdown-plans {
  display: inline-flex;
  gap: 12px;
}
.time-unit { text-align: center; }
.time-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff6b35;
  display: block;
  line-height: 1;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 10px 18px;
  min-width: 64px;
}
.time-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
  letter-spacing: 1px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: #1e2218;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  position: relative;
  border: 2px solid #2e3a1a;
}
.plan-card.popular {
  border-color: var(--primary);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.plan-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}
.price { text-align: center; margin-bottom: 20px; }
.old-price {
  font-size: 1rem;
  color: #777;
  text-decoration: line-through;
  display: block;
}
.new-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #5abf50;
  display: block;
  line-height: 1.1;
}
.period {
  font-size: 0.85rem;
  color: #888;
  display: block;
}
.savings-amount {
  background: rgba(90,191,80,0.15);
  color: #5abf50;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 6px;
  border: 1px solid rgba(90,191,80,0.3);
}
.premium-social-proof {
  text-align: center;
  margin-bottom: 16px;
}
.purchase-count {
  font-size: 0.85rem;
  color: #888;
}
.plan-features {
  list-style: none;
  margin-bottom: 24px;
}
.plan-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #2a3318;
  color: #d0cdb8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li i { min-width: 16px; }
.plan-features .fa-check { color: #5abf50; }
.plan-features .fa-times { color: #e53935; }
.plan-features .fa-star { color: var(--secondary); }
.plan-features .fa-gift { color: var(--primary); }
.no-benefit { color: #666; }
.gold-item { color: #f5c518; font-weight: 600; }
.bonus-item { color: var(--primary); }
.plan-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Fredoka', sans-serif;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.basic-button {
  background: #3a3a3a !important;
  color: #fff !important;
  display: block !important;
  width: 100% !important;
}
.basic-button:hover { background: #4a4a4a !important; }
.premium-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
  animation: pulse 2s infinite;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 0;
  background: #12130f;
}
.testimonials .section-title { color: #fff; }
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
}
.testimonial-card {
  background: #1e2218;
  border-radius: var(--radius);
  padding: 18px 22px;
  border: 1px solid #2e3a1a;
}
.stars {
  color: #f5c518;
  font-size: 0.95rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.97rem;
  color: #edeae0;
  margin-bottom: 14px;
  font-style: italic;
  line-height: 1.65;
}
.testimonial-author { display: flex; align-items: center; }
.testimonial-author strong { display: block; font-size: 1rem; color: #fff; }
.testimonial-author span { font-size: 0.85rem; color: #8ab860; }

/* ABOUT / BRAND */
.about-author {
  padding: 70px 0;
  background: #0f1a08;
}
.brand-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.brand-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.brand-subtitle {
  font-size: 1.05rem;
  color: #a8c070;
  margin-bottom: 36px;
}
.brand-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.brand-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brand-stat-emoji { font-size: 1.6rem; margin-bottom: 4px; }
.brand-stat strong { font-size: 1.3rem; color: #fff; font-weight: 700; }
.brand-stat span { font-size: 0.8rem; color: #8aaa60; text-transform: uppercase; letter-spacing: 0.04em; }
.brand-quote {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid #5abf50;
  padding-left: 18px;
  text-align: left;
}

/* FAQ */
.faq {
  padding: 60px 0;
  background: #0f1208;
}
.faq .section-title { color: #fff; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border: 1px solid #2e3a1a;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: #1e2218;
  transition: background 0.2s;
}
.faq-question:hover { background: #252d1a; }
.faq-question h3 { font-size: 1rem; color: #e8ddb0; margin: 0; }
.faq-question i { color: #5abf50; transition: transform 0.3s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: #c0bfaa;
  font-size: 0.95rem;
  background: #1a1f10;
}
.faq-answer.open { display: block; }

/* GUARANTEE */
.guarantee {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  text-align: center;
  color: var(--white);
}
.guarantee-content { max-width: 600px; margin: 0 auto; }
.guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}
.badge-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  font-style: normal;
  font-family: Arial, sans-serif;
}
.badge-label { font-size: 0.7rem; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; }
.guarantee h2 { font-size: 1.8rem; margin-bottom: 14px; }
.guarantee p { color: #ccc; margin-bottom: 28px; }

/* FOOTER */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 0;
  font-size: 0.85rem;
}
.footer p { margin-bottom: 4px; }

/* NOTIFICATIONS */
.notification-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notification {
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 0.85rem;
  max-width: 280px;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}
.popup-overlay.active { display: flex; }
.popup-card {
  position: relative;
  background: #1e2218 !important;
  border: 2px solid #2e3a1a;
  border-radius: var(--radius);
  padding: 36px 28px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.popup-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
  margin-top: -8px;
}
.popup-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: #bbb;
  font-size: 1.3rem;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.popup-close:hover { color: #fff; background: rgba(255,255,255,0.18); }
.popup-title {
  font-size: 1.5rem;
  color: #f0e6c0 !important;
  margin-bottom: 8px;
}
.popup-subtitle { color: #d4c99a !important; font-size: 1.05rem; margin-bottom: 6px; }
.popup-upsell-text { color: #b0a878 !important; font-size: 0.88rem; margin-bottom: 16px; line-height: 1.5; }
.popup-benefits-label { font-size: 0.85rem; font-weight: 600; color: #c8bb8a !important; margin-bottom: 8px; text-align: left; }
.popup-price { margin-bottom: 20px; }
.popup-old-price {
  font-size: 1rem;
  color: #888 !important;
  text-decoration: line-through;
  display: block;
}
.popup-new-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  display: block;
}
.popup-benefits {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  background: #161a10 !important;
  border-radius: 8px;
  padding: 16px 20px;
}
.popup-benefits li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #d4c99a !important;
  border-bottom: 1px solid #2e3a1a !important;
}
.popup-benefits li::before {
  content: "✅ ";
}
.popup-benefits li:last-child { border-bottom: none !important; }
.popup-buttons { display: flex; flex-direction: column; gap: 10px; }
.popup-btn {
  display: block;
  padding: 14px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
  font-family: 'Fredoka', sans-serif;
}
.popup-btn-accept {
  background: linear-gradient(135deg, var(--green), #1e7e34);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(40,167,69,0.4);
}
.popup-btn-accept:hover { transform: scale(1.02); }
.popup-btn-decline {
  background: none;
  color: #888 !important;
  font-size: 0.85rem;
  text-decoration: underline;
}

/* RESPONSIVE — MOBILE FIRST */
@media (max-width: 700px) {
  /* Global */
  .container { padding: 0 16px; }
  .section-title { font-size: 1.35rem; margin-bottom: 24px; }

  /* Hero */
  .hero { padding: 32px 0 40px; }
  .hero-pretitle { font-size: 1.3rem; margin-bottom: 8px; }
  .hero-title { font-size: 1.3rem; margin-bottom: 10px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 20px; }
  .hero-bullets { grid-template-columns: 1fr; gap: 8px; margin-bottom: 24px; }
  .hero-bullets li { font-size: 0.82rem; padding: 10px 12px; line-height: 1.4; }
  .hero-cta-green { font-size: 1rem !important; padding: 16px 0 !important; }
  .hero-product-image { margin-bottom: 20px; }

  /* Kit Preview */
  .kit-preview { padding: 28px 0; }
  .kit-title { font-size: 1.1rem; margin-bottom: 16px; }
  .carousel-wrapper { border-radius: 12px; padding: 12px 0; margin-bottom: 12px; }
  .carousel-slide { flex: 0 0 200px; margin-right: 16px; }
  .carousel-slide img { width: 200px; height: 152px; }
  .kit-tag { font-size: 0.8rem; padding: 10px 16px; }

  /* How It Works */
  .how-it-works { padding: 32px 0; }
  .hiw-title { font-size: 1.35rem; margin-bottom: 18px; }
  .hiw-card { padding: 13px 16px; gap: 13px; }
  .hiw-emoji { font-size: 1.7rem; }
  .hiw-card h3 { font-size: 0.85rem; }
  .hiw-card p { font-size: 0.78rem; }

  /* Exclusive Benefits */
  .exclusive-benefits { padding: 36px 0; }
  .exclusive-card { padding: 16px 12px; }
  .exclusive-card h3 { font-size: 0.88rem; }
  .exclusive-card p { font-size: 0.78rem; }

  /* VSL */
  .vsl-section { padding: 36px 0 30px; }
  .vsl-title { font-size: 1.2rem; }
  .vsl-play-hint { font-size: 0.92rem; margin-bottom: 16px; }

  /* Results */
  .results-section { padding: 36px 0; }
  .results-layout { grid-template-columns: 1fr; gap: 20px; }
  .results-photo { display: none; }
  .results-title { font-size: 1.2rem; margin-bottom: 16px; }
  .results-list li { font-size: 0.85rem; padding: 11px 14px; }

  /* Pricing */
  .pricing-plans { padding: 36px 0; }
  .plans-timer { margin-bottom: 24px; justify-content: center; }
  .plans-timer-inner { padding: 18px 20px; border-radius: 16px; text-align: center; }
  .timer-text { font-size: 0.9rem; margin-bottom: 0; text-align: center; }
  .time-number { font-size: 1.7rem; padding: 8px 14px; min-width: 52px; }
  .plans-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan-card { padding: 24px 18px; }
  .plan-card.popular { transform: none; }
  .plan-card h3 { font-size: 1.2rem; }
  .new-price { font-size: 2rem; }
  .plan-features li { font-size: 0.88rem; }

  /* Testimonials */
  .testimonials { padding: 24px 0; }
  .testimonials .section-title { font-size: 1rem; margin-bottom: 14px; }
  .testimonials-grid { gap: 10px; }
  .testimonial-card { padding: 12px 14px; }
  .stars { font-size: 0.85rem; margin-bottom: 6px; }
  .testimonial-card p { font-size: 0.8rem; line-height: 1.5; margin-bottom: 8px; }
  .testimonial-author strong { font-size: 0.88rem; }
  .testimonial-author span { font-size: 0.78rem; }

  /* Brand/About */
  .about-author { padding: 40px 0; }
  .brand-title { font-size: 1.4rem; }
  .brand-subtitle { font-size: 0.92rem; margin-bottom: 24px; }
  .brand-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .brand-stat strong { font-size: 1.1rem; }

  /* FAQ */
  .faq { padding: 36px 0; }
  .faq-question h3 { font-size: 0.92rem; }
  .faq-answer { font-size: 0.88rem; }

  /* Guarantee */
  .guarantee { padding: 40px 0; }
  .guarantee h2 { font-size: 1.35rem; }
  .guarantee p { font-size: 0.88rem; }
  .guarantee-badge { width: 80px; height: 80px; }
  .badge-number { font-size: 2rem; }
  .guarantee-cta { font-size: 0.95rem !important; padding: 16px 24px !important; }

  /* Popup */
  .popup-card { padding: 24px 18px; }
  .popup-title { font-size: 1.2rem; }
  .popup-subtitle { font-size: 0.95rem; }
  .popup-upsell-text { font-size: 0.82rem; margin-bottom: 10px; }
  .popup-new-price { font-size: 2rem; }
  .popup-benefits li { font-size: 0.85rem; padding: 5px 0; }
  .popup-benefits-label { font-size: 0.8rem; }
  .popup-btn { font-size: 0.92rem; padding: 12px; }

  /* Footer */
  .footer { font-size: 0.78rem; padding: 22px 16px; }

  /* Notification */
  .notification-container { bottom: 12px; left: 12px; }
  .notification { font-size: 0.78rem; max-width: 240px; }
}
