/* ==========================================================================
   SISTEMA DE DISEÑO DE LUJO "AMETHYST & GOLD" - VELAS ARTESANALES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Amatista y Oro - Paleta Oficial del Creador Elevada */
  --bg-amethyst-dark: hsl(273, 75%, 15%);     /* Violeta Imperial Profundo */
  --bg-amethyst-mid: hsl(285, 60%, 25%);      /* Amatista Real Oscuro */
  --bg-amethyst-light: hsl(285, 65%, 45%);    /* Púrpura de Gran Impacto */
  --bg-amethyst-glow: hsl(270, 100%, 45%);    /* Púrpura Neón */
  
  --primary-yellow: hsl(57, 100%, 48%);       /* Amarillo Original Creador */
  --primary-yellow-hover: hsl(57, 100%, 42%); /* Amarillo Dorado Profundo */
  --primary-orange: hsl(35, 100%, 50%);       /* Acento Naranja Cálido */
  
  --text-white: hsl(0, 0%, 100%);
  --text-cream: hsl(38, 40%, 96%);
  --text-dark: hsl(280, 25%, 12%);            /* Negro Terroso con Matiz Púrpura */
  --text-medium: hsl(280, 15%, 32%);
  --text-light: hsl(280, 10%, 55%);
  
  --bg-cream-light: hsl(38, 40%, 98%);
  --bg-lavender-light: hsl(280, 20%, 97%);    /* Lavanda descanso visual */
  
  /* Elevaciones de Lujo */
  --shadow-amethyst-glow: 0 15px 35px rgba(131, 0, 233, 0.25);
  --shadow-yellow-glow: 0 15px 30px rgba(237, 240, 0, 0.3);
  --shadow-premium: 0 30px 60px -15px rgba(33, 20, 41, 0.08);
  --shadow-hover: 0 45px 90px -20px rgba(33, 20, 41, 0.16);
  --shadow-soft: 0 15px 30px rgba(33, 20, 41, 0.04);
  
  /* Bordes, Radios y Transiciones */
  --border-gold-fine: 1px solid rgba(237, 240, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* ==========================================================================
   RESET & ESTILOS BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-cream-light);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-bg-warm {
  background-color: var(--bg-lavender-light);
}

/* ==========================================================================
   BANDERAS Y CINTILLOS DE TÍTULOS (ESTILO DIVI ELEVADO)
   ========================================================================== */

.section-title-banner {
  background: linear-gradient(90deg, var(--bg-amethyst-mid) 0%, var(--bg-amethyst-light) 100%);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  text-align: center;
  box-shadow: var(--shadow-amethyst-glow), inset 0 2px 4px rgba(255,255,255,0.15);
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.section-title-banner h2 {
  color: var(--text-white);
  font-size: 2.1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
}

.section-title-banner h2 span {
  color: var(--primary-yellow);
}

.section-title-banner-secondary {
  background: linear-gradient(90deg, var(--bg-amethyst-dark) 0%, var(--bg-amethyst-mid) 100%);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  text-align: center;
  box-shadow: var(--shadow-amethyst-glow), inset 0 2px 4px rgba(255,255,255,0.15);
  margin-bottom: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-banner-secondary h2 {
  color: var(--text-white);
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title-banner-secondary h2 span {
  color: var(--primary-yellow);
}

.section-title-banner-left {
  background: linear-gradient(90deg, var(--bg-amethyst-dark) 0%, var(--bg-amethyst-mid) 100%);
  border-radius: var(--radius-md);
  padding: 20px 25px;
  box-shadow: var(--shadow-amethyst-glow);
  margin-bottom: 30px;
  border-left: 6px solid var(--primary-yellow);
}

.section-title-banner-left h2 {
  color: var(--text-white);
  font-size: 1.7rem;
  text-transform: uppercase;
}

/* ==========================================================================
   CINTILLO SUPERIOR (TOP BAR)
   ========================================================================== */

.top-announcement {
  background: linear-gradient(90deg, #180026 0%, var(--bg-amethyst-dark) 50%, #180026 100%);
  color: var(--text-white);
  text-align: center;
  padding: 13px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  z-index: 1000;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-announcement span {
  display: inline-block;
  animation: pulse-top 2s infinite ease-in-out;
}

.top-announcement span i {
  color: var(--primary-yellow);
}

@keyframes pulse-top {
  0% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.015); opacity: 1; color: var(--primary-yellow); }
  100% { transform: scale(1); opacity: 0.95; }
}

/* ==========================================================================
   BOTÓN AMARILLO ORIGINAL DEL CREADOR (ELEVADO Y PARPADEANTE)
   ========================================================================== */

.btn-primary-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #D8DC00 100%);
  color: var(--text-dark);
  padding: 20px 50px;
  border-radius: 60px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-yellow-glow), 0 5px 0 #A8AA00, inset 0 2px 4px rgba(255,255,255,0.4);
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.btn-primary-yellow:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(237, 240, 0, 0.45), 0 5px 0 #A8AA00;
  background: linear-gradient(135deg, #FFF033 0%, var(--primary-yellow) 100%);
}

.btn-primary-yellow:active {
  transform: translateY(1px);
  box-shadow: 0 8px 15px rgba(237, 240, 0, 0.3), 0 1px 0 #A8AA00;
}

.btn-purchase-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #E8EB00 100%);
  color: var(--text-dark);
  padding: 22px 60px;
  border-radius: 60px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-yellow-glow), 0 6px 0 #9E9F00, inset 0 2px 4px rgba(255,255,255,0.4);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-purchase-yellow:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 25px 45px rgba(237, 240, 0, 0.5), 0 6px 0 #9E9F00;
}

.btn-purchase-yellow:active {
  transform: translateY(1px);
  box-shadow: 0 8px 15px rgba(237, 240, 0, 0.3), 0 1px 0 #9E9F00;
}

.pulsate-yellow {
  animation: heartbeat-yellow 2.5s infinite ease-in-out;
}

@keyframes heartbeat-yellow {
  0% { transform: scale(1); box-shadow: var(--shadow-yellow-glow), 0 5px 0 #A8AA00; }
  15% { transform: scale(1.035); box-shadow: 0 25px 40px rgba(237, 240, 0, 0.45), 0 5px 0 #A8AA00; }
  30% { transform: scale(1); box-shadow: var(--shadow-yellow-glow), 0 5px 0 #A8AA00; }
  45% { transform: scale(1.035); box-shadow: 0 25px 40px rgba(237, 240, 0, 0.45), 0 5px 0 #A8AA00; }
  70% { transform: scale(1); box-shadow: var(--shadow-yellow-glow), 0 5px 0 #A8AA00; }
  100% { transform: scale(1); box-shadow: var(--shadow-yellow-glow), 0 5px 0 #A8AA00; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  background: radial-gradient(circle at 50% 30%, var(--bg-amethyst-mid) 0%, var(--bg-amethyst-dark) 100%);
  padding: 90px 0 120px 0;
  position: relative;
  text-align: center;
  color: var(--text-white);
  border-bottom: 2px solid rgba(237, 240, 0, 0.15);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(33, 20, 41, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.hero-top-badges {
  margin-bottom: 25px;
}

.hero-badge-gold {
  background-color: rgba(237, 240, 0, 0.08);
  border: 1px solid var(--primary-yellow);
  color: var(--primary-yellow);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-size: 3.1rem;
  color: var(--text-white);
  max-width: 950px;
  margin: 0 auto 30px auto;
  line-height: 1.25;
  font-family: 'Playfair Display', serif;
}

.hero-title span {
  color: var(--primary-yellow);
  text-shadow: 0 0 15px rgba(237, 240, 0, 0.2);
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-cream);
  max-width: 750px;
  margin: 0 auto 50px auto;
  opacity: 0.95;
}

/* Video Player Integrado en el Hero */
.hero-video-wrapper {
  max-width: 820px;
  margin: 0 auto 50px auto;
  background: var(--text-dark);
  padding: 6px;
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 70px -10px rgba(0,0,0,0.5), var(--shadow-amethyst-glow);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-container-box {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-container-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-trigger {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(16, 8, 20, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.play-pulse-circle {
  width: 80px;
  height: 80px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(237,240,0,0.4);
  transition: var(--transition-smooth);
}

.play-pulse-circle i {
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-left: 6px;
}

.video-overlay-trigger span {
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.video-container-box:hover .play-pulse-circle {
  transform: scale(1.08);
  background-color: var(--text-white);
  box-shadow: 0 15px 30px rgba(255,255,255,0.4);
}

.video-container-box:hover .play-pulse-circle i {
  color: var(--bg-amethyst-glow);
}

.hero-action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-security-seals {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-cream);
  opacity: 0.85;
}

.hero-security-seals i {
  color: var(--primary-yellow);
}

/* ==========================================================================
   ESTE CURSO ES PARA TI SI... (Grid High Contrast)
   ========================================================================== */

.for-you-section {
  padding: 100px 0;
}

.for-you-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background-color: var(--bg-white);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--bg-amethyst-light);
  transition: var(--transition-smooth);
}

.check-bullet {
  width: 28px;
  height: 28px;
  background-color: rgba(131, 0, 233, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-bullet i {
  font-size: 0.8rem;
  color: var(--bg-amethyst-light);
}

.check-item p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.check-item p strong {
  color: var(--text-dark);
}

.check-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-premium);
  border-left-color: var(--primary-yellow);
}

.check-item:hover .check-bullet {
  background-color: var(--primary-yellow);
}

.check-item:hover .check-bullet i {
  color: var(--text-dark);
}

/* Visual Mockup Lateral */
.for-you-visual {
  position: relative;
}

.visual-card-premium {
  position: relative;
  background: var(--bg-white);
  padding: 15px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-gold-fine);
  transition: var(--transition-smooth);
}

.visual-card-premium img {
  width: 100%;
  border-radius: var(--radius-md);
}

.discount-badge-circle {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(214, 90, 66, 0.35);
  border: 4px solid var(--bg-cream-light);
  transform: rotate(10deg);
  animation: float-badge 3.5s infinite ease-in-out;
}

.discount-badge-circle span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes float-badge {
  0% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-6px) rotate(13deg); }
  100% { transform: translateY(0) rotate(10deg); }
}

.visual-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   OPORTUNIDAD DE NEGOCIO (6 Columnas Originales)
   ========================================================================== */

.opportunity-section {
  padding: 100px 0;
  background-color: var(--bg-lavender-light);
}

.opportunity-grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.opportunity-card-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(131, 0, 233, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-image-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-white);
  box-shadow: 0 8px 20px rgba(131, 0, 233, 0.15);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.card-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.card-text-content p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.card-text-content p strong {
  color: var(--bg-amethyst-light);
  font-weight: 700;
}

.opportunity-card-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-yellow);
}

.opportunity-card-item:hover .card-image-circle {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(237, 240, 0, 0.35);
  border-color: var(--primary-yellow);
}

/* ==========================================================================
   PROYECTOS GALERÍA EXPANDIDA
   ========================================================================== */

.gallery-section {
  padding: 100px 0;
}

.gallery-lead-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: -20px auto 50px auto;
  line-height: 1.7;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.project-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(131, 0, 233, 0.05);
  transition: var(--transition-smooth);
}

.project-img-container {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--bg-lavender-light);
}

.project-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: var(--transition-smooth);
}

.project-label-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(16, 8, 20, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary-yellow);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(237, 240, 0, 0.3);
}

.project-details {
  padding: 25px 20px;
}

.project-details h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--bg-amethyst-mid);
}

.project-details p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-yellow);
}

.project-card:hover .project-img-container img {
  transform: scale(1.06);
}

/* Banner de la vela de Canela firma (CREATIVO_) */
.featured-signature-banner {
  background: radial-gradient(circle at top right, var(--bg-amethyst-mid) 0%, var(--bg-amethyst-dark) 100%);
  border: 1px solid rgba(237, 240, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
  max-width: 950px;
  margin: 50px auto 0 auto;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

.banner-grid-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.banner-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.banner-image img {
  width: 100%;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.featured-signature-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-yellow);
}

.featured-signature-banner:hover .banner-image img {
  transform: scale(1.03);
}

.premium-tag {
  background-color: rgba(237, 240, 0, 0.08);
  color: var(--primary-yellow);
  border: 1px solid var(--primary-yellow);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.banner-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.banner-info p {
  font-size: 0.95rem;
  color: var(--text-cream);
  line-height: 1.7;
}

/* ==========================================================================
   TEMARIO COMPLETO (Acordeones Púrpura Royal)
   ========================================================================== */

.syllabus-section {
  padding: 100px 0;
  background-color: var(--bg-lavender-light);
}

.syllabus-accordion-box {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-module-card {
  background-color: var(--bg-white);
  border: 3px solid var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.accordion-module-header {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.module-prefix-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-white);
  background-color: var(--bg-amethyst-light);
  padding: 5px 12px;
  border-radius: 50px;
  margin-right: 20px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.module-prefix-tag.gold {
  background-color: var(--primary-orange);
}

.accordion-module-header h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-grow: 1;
}

.accordion-toggle-indicator {
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition-fast);
  margin-left: 20px;
  flex-shrink: 0;
}

.accordion-module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.body-inner-content {
  padding: 0 30px 25px 82px;
  font-size: 0.95rem;
  color: var(--text-medium);
  border-top: 1px dashed rgba(131, 0, 233, 0.1);
  padding-top: 20px;
}

.lesson-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lesson-bullets-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
}

.lesson-bullets-list li i {
  color: var(--bg-amethyst-light);
  font-size: 0.65rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Estados Activos del Acordeón */
.accordion-module-card.active {
  border-color: var(--bg-amethyst-light);
  box-shadow: var(--shadow-premium);
}

.accordion-module-card.active .accordion-toggle-indicator {
  transform: rotate(45deg);
  color: var(--bg-amethyst-light);
}

.accordion-module-card.highlight-module {
  border-left-width: 6px;
  border-left-color: var(--bg-amethyst-glow);
}

.accordion-module-card.free-bonus-module {
  border-left-width: 6px;
  border-left-color: var(--primary-orange);
}

/* ==========================================================================
   BENEFICIOS DEL CURSO
   ========================================================================== */

.benefits-section {
  padding: 100px 0;
}

.benefits-vertical-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item-card {
  background-color: var(--bg-white);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(131, 0, 233, 0.05);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: var(--transition-smooth);
}

.benefit-card-icon {
  width: 55px;
  height: 55px;
  background-color: rgba(131, 0, 233, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-card-icon i {
  font-size: 1.35rem;
  color: var(--bg-amethyst-light);
}

.benefit-item-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.benefit-item-card p strong {
  color: var(--text-dark);
}

.benefit-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-yellow);
}

.benefit-item-card:hover .benefit-card-icon {
  background-color: var(--primary-yellow);
}

.benefit-item-card:hover .benefit-card-icon i {
  color: var(--text-dark);
}

/* ==========================================================================
   SECCIÓN BANNER DE DESCUENTO
   ========================================================================== */

.pricing-banner-section {
  padding: 80px 0;
}

.pricing-card-highlight {
  background: radial-gradient(circle at 10% 20%, var(--bg-amethyst-mid) 0%, var(--bg-amethyst-dark) 100%);
  border: 2px solid rgba(237, 240, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-white);
}

.pricing-badge-accent {
  background-color: #000000;
  border-radius: 50px;
  padding: 8px 25px;
  display: inline-block;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pricing-badge-accent span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-white);
  animation: pulse-badge 2s infinite;
  display: inline-block;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); color: var(--primary-yellow); }
  100% { transform: scale(1); }
}

.pricing-table-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.price-normal-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-cream);
  opacity: 0.8;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.old-price-value {
  font-size: 2.3rem;
  color: #FF2E2E;
  text-decoration: line-through;
  font-weight: 700;
}

.price-arrow-indicator {
  font-size: 2rem;
  color: var(--primary-yellow);
}

.price-promo-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-yellow);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.promo-price-value {
  font-size: 4.2rem;
  color: var(--primary-yellow);
  font-weight: 800;
  line-height: 1;
  text-decoration: underline;
  text-shadow: 0 0 20px rgba(237, 240, 0, 0.3);
}

.pricing-action-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cta-directions-text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-white);
}

.hotmart-seals-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-cream);
  margin-top: 15px;
  opacity: 0.85;
}

.seal-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seal-item i {
  color: var(--primary-yellow);
}

/* ==========================================================================
   LOS 9 BONOS GRATIS HOY
   ========================================================================== */

.bonuses-section {
  padding: 100px 0;
}

.bonuses-intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: -20px auto 55px auto;
  line-height: 1.7;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.bonus-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(131, 0, 233, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.bonus-img-container {
  position: relative;
  aspect-ratio: 1.25/1;
  overflow: hidden;
  background-color: var(--bg-lavender-light);
}

.bonus-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: var(--transition-smooth);
}

.free-stamp-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-orange);
  color: var(--text-white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.35);
}

.bonus-details {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bonus-num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bg-amethyst-light);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.bonus-details h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.35;
  color: var(--bg-amethyst-mid);
}

.bonus-details p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.bonus-price-tag {
  border-top: 1px dashed rgba(131, 0, 233, 0.1);
  padding-top: 15px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.bonus-price-tag .crossed {
  text-decoration: line-through;
}

.bonus-price-tag strong {
  color: var(--accent-green);
  font-size: 0.95rem;
  font-weight: 700;
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-yellow);
}

.bonus-card:hover .bonus-img-container img {
  transform: scale(1.04);
}

/* Caja de Resumen Final de Bonos */
.arsenal-summary-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(131, 0, 233, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  box-shadow: var(--shadow-premium);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.arsenal-summary-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--bg-amethyst-mid);
}

.arsenal-summary-content p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.arsenal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arsenal-list li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.arsenal-list li i {
  color: var(--bg-amethyst-light);
  font-size: 1.05rem;
  margin-top: 3px;
}

.arsenal-summary-img {
  background: var(--bg-white);
  padding: 10px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(131, 0, 233, 0.05);
}

.arsenal-summary-img img {
  width: 100%;
}

/* ==========================================================================
   INSTRUCTOR BIO SECTION
   ========================================================================== */

.instructor-bio-section {
  padding: 100px 0;
}

.instructor-bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.instructor-bio-img .portrait-card {
  background: var(--bg-white);
  padding: 15px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(131, 0, 233, 0.08);
}

.instructor-bio-img img {
  width: 100%;
  border-radius: var(--radius-md);
}

.instructor-hello {
  font-size: 2.3rem;
  color: var(--bg-amethyst-mid);
  margin-bottom: 20px;
}

.bio-paragraph {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 30px;
}

.instructor-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px dashed rgba(131, 0, 233, 0.15);
  padding-top: 25px;
}

.quick-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bg-amethyst-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==========================================================================
   TESTIMONIOS CAROUSEL SECTION
   ========================================================================== */

.testimonials-carousel-section {
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: -20px auto 45px auto;
  line-height: 1.7;
}

.testimonials-slider-viewport {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  padding: 0 45px;
}

.testimonials-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 5px;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-chat-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background-color: var(--bg-white);
  padding: 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.testimonial-chat-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
}

.testimonial-chat-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-yellow);
}

.slider-arrows-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-arrow-btn {
  width: 45px;
  height: 45px;
  background-color: var(--bg-white);
  border: 1px solid rgba(131, 0, 233, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition-fast);
}

.slider-arrow-btn i {
  color: var(--bg-amethyst-mid);
  font-size: 0.95rem;
}

.slider-arrow-btn:hover {
  background-color: var(--bg-amethyst-light);
  border-color: var(--bg-amethyst-light);
}

.slider-arrow-btn:hover i {
  color: var(--text-white);
}

/* ==========================================================================
   CERTIFICADO OFICIAL GRADUATION
   ========================================================================== */

.certificate-graduation-section {
  padding: 100px 0;
}

.graduation-grid-display {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.graduation-text-info .graduation-paragraph {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.graduation-visual-mockup {
  background: var(--bg-white);
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-gold-fine);
  transition: var(--transition-smooth);
}

.graduation-visual-mockup img {
  width: 100%;
  border-radius: var(--radius-md);
}

.graduation-visual-mockup:hover {
  transform: scale(1.01) translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ Accordion)
   ========================================================================== */

.faq-section-accordion {
  padding: 100px 0;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-card-item {
  background-color: var(--bg-white);
  border: 1px solid rgba(131, 0, 233, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.faq-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-header-btn h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  flex-grow: 1;
}

.faq-toggle-indicator {
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition-fast);
  margin-left: 20px;
  flex-shrink: 0;
}

.faq-body-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-inner-text {
  padding: 0 30px 25px 30px;
  font-size: 0.9rem;
  color: var(--text-medium);
  border-top: 1px dashed rgba(131, 0, 233, 0.1);
  padding-top: 20px;
}

.faq-card-item.active {
  border-color: var(--bg-amethyst-light);
  box-shadow: var(--shadow-premium);
}

.faq-card-item.active .faq-toggle-indicator {
  transform: rotate(45deg);
  color: var(--bg-amethyst-light);
}

/* ==========================================================================
   GARANTÍA DE SATISFACCIÓN (Hotmart Oficial)
   ========================================================================== */

.satisfaction-guarantee-section {
  padding: 80px 0;
}

.satisfaction-guarantee-card {
  max-width: 820px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 45px 50px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(131, 0, 233, 0.15);
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 40px;
  align-items: center;
}

.guarantee-badge-gold {
  display: flex;
  justify-content: center;
}

.badge-inner-seal {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 3px dashed var(--primary-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
}

.badge-inner-seal .seal-days {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
}

.badge-inner-seal .seal-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-inner-seal .seal-label-sub {
  font-size: 0.55rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.guarantee-text-block h3 {
  font-size: 1.4rem;
  color: var(--bg-amethyst-mid);
  margin-bottom: 12px;
}

.guarantee-text-block p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 20px;
}

.seals-list-row {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  flex-wrap: wrap;
}

.seals-list-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seals-list-row i {
  color: var(--accent-green);
}

/* ==========================================================================
   FINAL SECCIÓN DE CIERRE DE COMPRA
   ========================================================================== */

.final-offer-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 30%, var(--bg-amethyst-mid) 0%, var(--bg-amethyst-dark) 100%);
  border-top: 2px solid rgba(237, 240, 0, 0.15);
  color: var(--text-white);
}

.offer-summary-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.highlight-badge-offer {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-yellow);
  background-color: rgba(237, 240, 0, 0.08);
  border: 1px solid var(--primary-yellow);
  padding: 7px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 25px;
}

.offer-summary-card h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 15px;
}

.offer-summary-card p {
  font-size: 1.05rem;
  color: var(--text-cream);
  max-width: 650px;
  margin: 0 auto 40px auto;
  opacity: 0.95;
}

.offer-pricing-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 45px;
}

.pricing-col.normal {
  text-align: right;
}

.pricing-col.normal span {
  font-size: 0.85rem;
  color: var(--text-cream);
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.pricing-col.normal h4 {
  font-size: 2.1rem;
  color: var(--text-cream);
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-arrow-icon {
  font-size: 1.8rem;
  color: var(--primary-yellow);
}

.pricing-col.promo {
  text-align: left;
}

.pricing-col.promo span {
  font-size: 0.95rem;
  color: var(--primary-yellow);
  font-weight: 700;
}

.pricing-col.promo h3 {
  font-size: 4rem;
  color: var(--primary-yellow);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 20px rgba(237, 240, 0, 0.3);
}

.checkout-hint {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

.checkout-safety-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-cream);
  margin-top: 25px;
  opacity: 0.85;
}

.checkout-safety-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #100615;
  color: var(--text-cream);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 20px auto;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  margin-bottom: 40px;
  opacity: 0.85;
}

.footer-nav-links a:hover {
  color: var(--primary-yellow);
}

.hotmart-disclaimer {
  font-size: 0.7rem !important;
  color: var(--text-light) !important;
  max-width: 800px !important;
  line-height: 1.6;
  opacity: 0.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  margin: 0 auto;
}

/* ==========================================================================
   MEDIA QUERIES (100% Responsivo Avanzado)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .opportunity-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .arsenal-summary-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .for-you-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .check-item {
    padding: 18px 20px;
  }
  
  .visual-card-premium {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .opportunity-grid-six {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title-banner h2 {
    font-size: 1.6rem;
  }
  
  .section-title-banner-secondary h2 {
    font-size: 1.6rem;
  }
  
  .creativo-banner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .instructor-bio-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .instructor-bio-img .portrait-card {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .instructor-quick-stats {
    justify-content: center;
  }
  
  .graduation-grid-display {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .graduation-visual-mockup {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .pricing-table-display {
    flex-direction: column;
    gap: 15px;
  }
  
  .price-arrow-indicator {
    transform: rotate(90deg);
  }
  
  .satisfaction-guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  
  .seals-list-row {
    justify-content: center;
  }
  
  .offer-pricing-grid {
    flex-direction: column;
    gap: 15px;
  }
  
  .pricing-arrow-icon {
    transform: rotate(90deg);
  }
  
  .site-footer {
    padding: 60px 0;
  }
  
  .footer-nav-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-nav-links span {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-security-seals {
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-security-seals span {
    font-size: 0.75rem;
  }
  
  .btn-primary-yellow {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
  }
  
  .btn-purchase-yellow {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  
  .accordion-module-header {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .accordion-module-header h4 {
    font-size: 0.95rem;
  }
  
  .body-inner-content {
    padding: 0 20px 20px 20px;
    padding-top: 15px;
  }
  
  .faq-header-btn {
    padding: 18px 20px;
  }
  
  .faq-header-btn h4 {
    font-size: 0.95rem;
  }
  
  .faq-inner-text {
    padding: 0 20px 20px 20px;
    padding-top: 15px;
  }
  
  .pricing-card-highlight {
    padding: 40px 20px;
  }
  
  .promo-price-value {
    font-size: 3rem;
  }
  
  .pricing-col.promo h3 {
    font-size: 3rem;
  }
  
  .offer-summary-card h2 {
    font-size: 1.9rem;
  }
  
  .checkout-safety-footer {
    flex-direction: column;
    gap: 8px;
  }
  
  .floating-badge {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
  }
  
  .discount-badge-circle {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
    top: -15px;
    right: -10px;
  }
}
