/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 15px rgba(46, 204, 113, 0.4); }
  50% { box-shadow: 0 0 30px rgba(46, 204, 113, 0.7), 0 0 60px rgba(46, 204, 113, 0.3); }
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ===========================
   UTILITIES
   =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
}

.section {
  padding: 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.title-accent {
  color: #2ecc71;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 8px;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  margin-top: 15px;
  border: none;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #27ae60, #219a52);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
}

.btn-glow {
  animation: glow 2.5s ease-in-out infinite;
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px solid #2ecc71;
  transform: translate(-50%, -50%);
  animation: pulseRing 2s ease-out infinite;
  pointer-events: none;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 38px;
  width: auto;
}

.header-btn {
  position: relative;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  overflow: hidden;
}

.header-btn:hover {
  background: linear-gradient(135deg, #27ae60, #219a52);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(46, 204, 113, 0.5);
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 50%, #0d0d0d 100%);
  color: white;
  text-align: center;
  padding: 140px 20px 70px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  margin-bottom: 28px;
}

.hero-logo img {
  height: 140px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 15px rgba(46, 204, 113, 0.3));
}

.hero-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(46, 204, 113, 0.25);
  animation: float 3s ease-in-out infinite;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-highlight {
  background: linear-gradient(135deg, #2ecc71, #58d68d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-underline {
  position: relative;
}

.hero-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71, #58d68d);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-image {
  margin: 30px auto;
  max-width: 500px;
}

.hero-image-placeholder {
  width: 100%;
  height: 260px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.9rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ===========================
   URGENCY BAR
   =========================== */
.urgency-bar {
  background: linear-gradient(90deg, #ff4c4c, #ff6b6b, #ff4c4c);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.95rem;
}

.urgency-bar p {
  margin: 0;
}

/* ===========================
   RESULTS (ANTES / DESPUÉS)
   =========================== */
.results {
  padding: 70px 0 40px;
  background: #f0f0f0;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.result-card {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
}

.result-before {
  border: 3px solid #ff4c4c;
}

.result-after {
  border: 3px solid #2ecc71;
}

.result-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
}

.label-before {
  background: #fff0f0;
  color: #e74c3c;
}

.label-after {
  background: #eafaf1;
  color: #27ae60;
}

.result-arrow {
  font-size: 2.5rem;
  color: #2ecc71;
  font-weight: 800;
  animation: float 2s ease-in-out infinite;
}

.result-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 14px;
}

.result-card p {
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===========================
   BENEFITS
   =========================== */
.benefits {
  padding: 70px 0;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #f8f9fa;
  padding: 30px 24px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71, #58d68d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 204, 113, 0.2);
}

.benefit-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.benefit-icon {
  font-size: 1.8rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===========================
   EXERCISES (CAROUSEL)
   =========================== */
.exercises {
  padding: 70px 0;
  background: #f0f0f0;
}

.exercises-carousel {
  position: relative;
}

/* Desktop: grid 3 columns */
.exercises-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exercise-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.exercise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 204, 113, 0.25);
}

.exercise-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #999;
  font-size: 0.9rem;
  border: 1px dashed #d0d0d0;
}

.exercise-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
  object-fit: contain;
}

.exercise-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.exercise-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Carousel dots & hint — hidden on desktop */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: all 0.3s ease;
}

.dot.active {
  background: #2ecc71;
  width: 28px;
  border-radius: 5px;
}

.carousel-hint {
  display: none;
  text-align: center;
  color: #999;
  font-size: 0.8rem;
  margin-top: 12px;
  animation: float 2.5s ease-in-out infinite;
}

/* ===========================
   CURRICULUM
   =========================== */
.curriculum {
  padding: 70px 20px;
  background: #fff;
}

.curriculum-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: none;
}

.curriculum-item {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 14px;
  border-left: none;
  transition: all 0.35s ease;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 2px solid transparent;
}

.curriculum-item:hover {
  background: #fff;
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 204, 113, 0.25);
}

.curriculum-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.curriculum-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.curriculum-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ===========================
   CTA MID
   =========================== */
.cta-mid {
  background: linear-gradient(135deg, #1a1a2e, #0d0d0d);
  text-align: center;
  padding: 60px 20px;
}

.cta-mid h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-mid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 70px 20px;
  background: #f0f0f0;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  max-width: 300px;
  flex: 1 1 250px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(245, 166, 35, 0.3);
}

.stars {
  color: #f5a623;
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.testimonial-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: contain;
}

.testimonial-img-placeholder {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #999;
  font-size: 0.85rem;
  border: 1px dashed #d0d0d0;
}

.author-name {
  font-weight: 700;
  color: #111;
  font-size: 1rem;
}

/* ===========================
   INCLUDES
   =========================== */
.includes {
  padding: 70px 20px;
  background: #fff;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.include-card {
  display: flex;
  align-items: flex-start;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border: 3px solid #e0e0e0;
  transition: all 0.35s ease;
  gap: 15px;
}

.include-card:hover {
  border-color: #2ecc71;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.15);
}

.include-check {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.include-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}

.include-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ===========================
   GUARANTEE
   =========================== */
.guarantee {
  padding: 60px 20px;
  background: #f0f0f0;
  text-align: center;
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #eafaf1, #d5f5e3);
  border: 2px solid rgba(46, 204, 113, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
}

.guarantee-icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
  animation: float 3s ease-in-out infinite;
}

.guarantee-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.guarantee-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* ===========================
   CTA FINAL / PRICING
   =========================== */
.cta-final {
  padding: 70px 20px;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 50%, #0d0d0d 100%);
  text-align: center;
}

.cta-final .section-title {
  color: #fff;
}

.cta-box {
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2ecc71, #58d68d, #2ecc71);
}

.cta-badge {
  background: #ff4c4c;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.pulse-badge {
  animation: badgePulse 2s ease-in-out infinite;
}

.cta-price {
  margin-bottom: 8px;
  text-align: center;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.price-current {
  font-size: 3rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.price-currency {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 4px;
}

.cta-access {
  color: #2ecc71;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.btn-cta-full {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-cta-full:hover {
  background: linear-gradient(135deg, #27ae60, #219a52);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
}

.btn-cta-full:hover .btn-arrow {
  transform: translateX(5px);
}

.cta-guarantees {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-guarantees span {
  font-size: 0.82rem;
  color: #666;
  font-weight: 500;
}

.cta-payment-methods {
  margin-top: 16px;
}

.cta-payment-methods p {
  font-size: 0.8rem;
  color: #999;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 70px 20px;
  background: #f0f0f0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 204, 113, 0.2);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-item summary:hover {
  color: #2ecc71;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #2ecc71;
  font-weight: 800;
  transition: transform 0.3s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
  background: #2ecc71;
  color: #fff;
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 30px 0;
  border-top: 1px solid #ddd;
  text-align: center;
  background: #f0f0f0;
}

.footer p {
  font-size: 0.85rem;
  color: #999;
}


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero {
    padding: 120px 20px 50px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-trust {
    gap: 12px;
  }

  .hero-trust span {
    font-size: 0.78rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-arrow {
    transform: rotate(90deg);
    font-size: 2rem;
  }

  .section-title {
    font-size: 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .exercises-grid {
    grid-template-columns: 1fr;
  }

  /* Carousel mobile */
  .exercises .container {
    padding-left: 0;
    padding-right: 0;
  }

  .exercises-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 20px 8px;
    scrollbar-width: none;
  }

  .exercises-track::-webkit-scrollbar {
    display: none;
  }

  .exercise-card {
    min-width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
    scroll-snap-align: center;
  }

  .carousel-dots {
    display: flex;
  }

  .carousel-hint {
    display: block;
  }

  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 20px 15px;
  }

  .btn-cta,
  .btn-cta-full {
    padding: 16px 28px;
    font-size: 1rem;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .price-current {
    font-size: 2.4rem;
  }

  .guarantee-box {
    padding: 30px 20px;
  }

  .guarantee-box h2 {
    font-size: 1.4rem;
  }

  .curriculum {
    padding: 50px 15px;
  }

  .curriculum-item h3 {
    font-size: 1.05rem;
  }

  .testimonials {
    padding: 50px 15px;
  }

  .includes {
    padding: 50px 15px;
  }

  .header-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    text-align: center;
  }

  .header-btn .btn-pulse {
    display: none;
  }

  .cta-mid h2 {
    font-size: 1.5rem;
  }

  .cta-guarantees {
    gap: 10px;
  }

  .urgency-bar {
    font-size: 0.82rem;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 8px 16px;
  }

  .curriculum-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefits-grid {
    gap: 16px;
  }
}