    /* ==========================================================================
       SISTEMA DE DISEÑO / ESTILOS GLOBALES
       ========================================================================== */
    :root {
      /* Paleta de Colores de Alta Conversión (Dark Premium Dorado) */
      --bg-dark: #0a0e1a;
      --bg-panel: #111625;
      --bg-panel-hover: #171d30;
      
      /* Detalles Dorados Premium - WCAG AAA Compliant on Dark backgrounds */
      --gold-primary: #d4af37;
      --gold-light: #fbbf24;
      --gold-dark: #f59e0b;
      --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d4af37 50%, #f59e0b 100%);
      
      /* Colores de Estado */
      --success: #10b981;
      --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
      --danger: #ef4444;
      --danger-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
      
      /* Textos y Contrastes */
      --text-white: #ffffff;
      --text-light: #e2e8f0;   /* WCAG AAA compliant text on --bg-dark */
      --text-muted: #94a3b8;
      
      /* Transiciones y Sombras */
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      --transition-fast: all 0.2s ease;
      --shadow-glow: 0 0 25px -5px rgba(212, 175, 55, 0.4);
      --shadow-glow-strong: 0 0 35px rgba(251, 191, 36, 0.6);
      --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    }
    
    /* Reseteo y Base */
    html {
      scroll-padding-top: 100px;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      position: relative;
    }
    
    h1, h2, h3, h4, h5, h6, .font-heading {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: var(--text-white);
      letter-spacing: -0.02em;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    /* Utilidades de Layout */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    .section-padding {
      padding: 5rem 0;
      position: relative;
      z-index: 5;
      scroll-margin-top: 110px;
    }
    
    .text-center {
      text-align: center;
    }

    /* Fondo Geométrico Low Poly (Vectores SVG embebidos de opacidad baja) */
    .low-poly-bg {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800' preserveAspectRatio='none'%3E%3Cpath d='M0 0L320 0L160 220Z' fill='%23d4af37' fill-opacity='0.02' stroke='%23d4af37' stroke-opacity='0.04' stroke-width='1'/%3E%3Cpath d='M320 0L800 0L540 280L160 220Z' fill='%23fbbf24' fill-opacity='0.015' stroke='%23fbbf24' stroke-opacity='0.03' stroke-width='1'/%3E%3Cpath d='M0 0L160 220L0 440Z' fill='%23f59e0b' fill-opacity='0.02' stroke='%23f59e0b' stroke-opacity='0.04' stroke-width='1'/%3E%3Cpath d='M160 220L540 280L330 520L0 440Z' fill='%23d4af37' fill-opacity='0.01' stroke='%23d4af37' stroke-opacity='0.03' stroke-width='1'/%3E%3Cpath d='M800 0L800 380L540 280Z' fill='%23d4af37' fill-opacity='0.02' stroke='%23d4af37' stroke-opacity='0.05' stroke-width='1'/%3E%3Cpath d='M540 280L800 380L680 620L330 520Z' fill='%23fbbf24' fill-opacity='0.015' stroke='%23fbbf24' stroke-opacity='0.03' stroke-width='1'/%3E%3Cpath d='M0 440L330 520L110 720L0 720Z' fill='%23f59e0b' fill-opacity='0.02' stroke='%23f59e0b' stroke-opacity='0.04' stroke-width='1'/%3E%3Cpath d='M330 520L680 620L480 800L110 720Z' fill='%23d4af37' fill-opacity='0.015' stroke='%23d4af37' stroke-opacity='0.04' stroke-width='1'/%3E%3Cpath d='M680 620L800 800L480 800Z' fill='%23d4af37' fill-opacity='0.02' stroke='%23d4af37' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      pointer-events: none;
      z-index: 1;
    }
    
    /* Botones Premium con Detalles Dorados */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 1rem 2.25rem;
      border-radius: 0.35rem;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
      z-index: 2;
      text-align: center;
    }
    
    /* Botón Primario: Fondo Dorado con texto oscuro (Alto contraste WCAG AAA) */
    .btn--primary {
      background: var(--gold-gradient);
      color: #05070f;
      box-shadow: var(--shadow-glow);
    }
    
    .btn--primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-glow-strong);
    }
    
    .btn--primary::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: rotate(25deg);
      transition: 0.8s ease;
      z-index: -1;
    }
    
    .btn--primary:hover::after {
      left: 120%;
    }
    
    /* Botón Secundario / Outline / Ghost: Bordes dorados con texto dorado */
    .btn--outline {
      background: rgba(212, 175, 55, 0.03);
      border: 2px solid var(--gold-primary);
      color: var(--gold-light);
    }
    
    .btn--outline:hover {
      background: rgba(212, 175, 55, 0.12);
      color: var(--text-white);
      transform: translateY(-2px);
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    }
    
    .btn-pulse {
      animation: pulseBtn 2.5s infinite;
    }
    
    @keyframes pulseBtn {
      0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
      70% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
      100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
    }
    
    /* Estructuras de Tarjeta Glassmorphic */
    .glass-card {
      background: rgba(17, 22, 37, 0.95);
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-radius: 0.5rem;
      padding: 2rem 1.5rem;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-card);
      position: relative;
      z-index: 2;
    }
    
    .glass-card:hover {
      border-color: rgba(251, 191, 36, 0.3);
      transform: translateY(-5px);
    }
    
    /* ==========================================================================
       HEADER / NAVEGACIÓN
       ========================================================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      transform: translateY(0);
      transition: transform 0.35s ease, padding 0.35s ease, background 0.35s ease, border-color 0.35s ease;
      padding: 1.25rem 0;
      background: rgba(10, 14, 26, 0.95);
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
    
    .header--scrolled {
      padding: 0.85rem 0;
      background: rgba(7, 10, 18, 0.98);
      border-bottom-color: rgba(212, 175, 55, 0.3);
    }

    .header--hidden {
      transform: translateY(calc(-100% - 10px));
      pointer-events: none;
    }
    
    .header__container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .header__logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      cursor: pointer;
    }

    .brand-logo-image {
      display: block;
      width: 100%;
      height: auto;
    }

    .header__logo-image {
      width: 230px;
      max-width: 48vw;
      filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
    }
    
    .logo-symbol {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .logo-text {
      font-family: 'Outfit', sans-serif;
      font-size: 1.65rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.05em;
    }
    
    .logo-text span {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .header__actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    
    .header__fast-track {
      font-size: 0.9rem;
      padding: 0.75rem 1.25rem;
      border-radius: 0.4rem;
    }
    
    .header__cta-btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
      border-radius: 0.4rem;
    }

    .header__mobile-cta {
      display: none;
    }
    
    /* ==========================================================================
       SECCIÓN 1: HERO / PORTADA (Banner Informativo 1)
       ========================================================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 8rem;
      padding-bottom: 4rem;
      overflow: hidden;
    }
    
    .hero__grid-bg {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(212, 175, 55, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.015) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 90%);
      -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 90%);
      z-index: 2;
    }
    
    .hero__container {
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 4rem;
      align-items: center;
    }
    
    .hero__content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    
    .hero__badge-top {
      font-family: 'Outfit', sans-serif;
      font-size: 0.85rem;
      color: var(--gold-light);
      background: rgba(212, 175, 55, 0.08);
      border: 1px solid rgba(212, 175, 55, 0.3);
      padding: 0.5rem 1.25rem;
      border-radius: 2rem;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
    }
    
    .hero__title {
      font-size: 3.65rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
    }
    
    .hero__title span {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
      margin-top: 0.25rem;
    }
    
    .hero__paragraph {
      font-size: 1.15rem;
      color: var(--text-light);
      margin-bottom: 2.25rem;
      max-width: 600px;
      line-height: 1.7;
    }
    
    .hero__badges-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
      margin-bottom: 2.75rem;
      width: 100%;
      max-width: 650px;
    }
    
    .hero__badge-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(212, 175, 55, 0.08);
      color: var(--text-light);
      padding: 0.85rem 1.25rem;
      border-radius: 0.5rem;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      transition: var(--transition-fast);
    }
    
    .hero__badge-item:hover {
      background: rgba(212, 175, 55, 0.04);
      border-color: rgba(212, 175, 55, 0.25);
    }
    
    .hero__badge-check {
      color: var(--gold-light);
      font-weight: bold;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    
    .hero__ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      align-items: center;
      width: 100%;
    }
    
    .hero__cta-primary-wrapper {
      flex: 1;
      min-width: 250px;
    }
    
    .hero__cta-primary {
      width: 100%;
    }
    
    .hero__cta-secondary {
      flex: 1;
      min-width: 250px;
    }

    .hero__cta-info {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
      padding-left: 0.25rem;
    }

    .interaction-hint {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gold-light);
      opacity: 0.92;
    }

    .interaction-hint--center {
      justify-content: center;
      width: 100%;
      text-align: center;
    }

    .interaction-hint--hero {
      margin-top: -1rem;
      margin-bottom: 1.4rem;
    }

    .interaction-hint--selection {
      margin: 0 auto 1rem;
    }

    .interaction-hint--sim {
      margin: 0 0 0.85rem;
    }

    .interaction-hint__arrow {
      display: inline-block;
      animation: hintNudge 1.3s ease-in-out infinite;
    }

    .interaction-hint__step {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(212, 175, 55, 0.12);
      border: 1px solid rgba(212, 175, 55, 0.3);
      color: var(--text-white);
      font-size: 0.75rem;
      line-height: 1;
      flex-shrink: 0;
    }

    .carousel-shell {
      width: 100%;
      min-width: 0;
    }

    .carousel-nav {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 0.45rem;
    }

    .carousel-nav--hidden {
      display: none !important;
    }

    .carousel-nav__copy {
      font-family: 'Outfit', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gold-light);
      opacity: 0.85;
    }

    .carousel-arrow {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.32);
      background: rgba(17, 22, 37, 0.92);
      color: var(--gold-light);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: var(--transition-fast);
      box-shadow: 0 10px 18px rgba(5, 7, 15, 0.25);
    }

    .carousel-arrow:hover {
      transform: translateY(-1px);
      border-color: var(--gold-primary);
      background: rgba(23, 29, 48, 0.98);
    }

    .carousel-arrow:disabled {
      opacity: 0.35;
      cursor: default;
      transform: none;
      box-shadow: none;
    }

    @keyframes hintNudge {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(5px); }
    }
    
    /* Visual de Simulador en Hero */
    .hero__visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .hero__visual-glow {
      position: absolute;
      width: 110%;
      height: 110%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }
    
    .hero__ring-outer {
      position: absolute;
      border: 1px dashed rgba(212, 175, 55, 0.15);
      border-radius: 50%;
      width: 100%;
      height: 100%;
      animation: rotateClockwise 45s linear infinite;
    }
    
    .hero__ring-inner {
      position: absolute;
      border: 1px solid rgba(212, 175, 55, 0.08);
      border-radius: 50%;
      width: 85%;
      height: 85%;
      animation: rotateCounterClockwise 30s linear infinite;
    }
    
    .hero__preview-card {
      background: rgba(17, 22, 37, 0.95);
      border: 2px solid var(--gold-primary);
      border-radius: 0.5rem;
      padding: 1.75rem;
      width: 90%;
      box-shadow: var(--shadow-card), 0 0 30px rgba(212, 175, 55, 0.1);
      position: relative;
      z-index: 5;
    }
    
    .hero__preview-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
      padding-bottom: 0.5rem;
    }
    
    .hero__preview-dots {
      display: flex;
      gap: 0.35rem;
    }
    
    .hero__preview-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.2);
    }
    
    .hero__preview-dot:nth-child(1) { background-color: var(--danger); }
    .hero__preview-dot:nth-child(2) { background-color: #f59e0b; }
    .hero__preview-dot:nth-child(3) { background-color: var(--success); }
    
    .hero__preview-tag {
      font-family: 'Outfit', sans-serif;
      font-size: 0.7rem;
      color: #05070f;
      background: var(--gold-gradient);
      padding: 0.2rem 0.65rem;
      border-radius: 0.15rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .hero__preview-question {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-white);
      margin-bottom: 1.25rem;
      line-height: 1.5;
    }
    
    .hero__preview-options {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    
    .hero__preview-option {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(212, 175, 55, 0.1);
      padding: 0.85rem 1rem;
      border-radius: 0.4rem;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text-light);
    }
    
    .hero__preview-option--active {
      background: rgba(16, 185, 129, 0.08);
      border-color: var(--success);
      color: var(--text-white);
    }
    
    .hero__preview-bullet {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: bold;
      flex-shrink: 0;
    }
    
    .hero__preview-option--active .hero__preview-bullet {
      background-color: var(--success);
      border-color: var(--success);
      color: var(--text-white);
    }
    
    @keyframes rotateClockwise {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    @keyframes rotateCounterClockwise {
      from { transform: rotate(0deg); }
      to { transform: rotate(-360deg); }
    }
    
    /* ==========================================================================
       SECCIÓN 2: EL DOLOR Y LA SOLUCIÓN (Banner Informativo 2)
       ========================================================================== */
    .pain-sol {
      background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-panel) 100%);
      position: relative;
    }

    .pain-sol__module {
      background: linear-gradient(135deg, rgba(17, 22, 37, 0.96) 0%, rgba(10, 14, 26, 0.98) 100%);
      border: 1.5px solid rgba(212, 175, 55, 0.16);
      border-radius: 0.85rem;
      padding: 2.5rem;
      box-shadow: var(--shadow-card);
    }
    
    .pain-sol__container {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 2rem;
      align-items: start;
    }
    
    .pain-sol__left {
      display: flex;
      flex-direction: column;
      gap: 1.15rem;
    }
    
    .pain-sol__subtitle {
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
    }
    
    .pain-sol__title {
      font-size: 2.45rem;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }
    
    .pain-sol__cards-wrapper {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .pain-card {
      background: rgba(239, 68, 68, 0.02);
      border: 1px solid rgba(239, 68, 68, 0.12);
      padding: 1.15rem 1.5rem;
      border-radius: 0.4rem;
      display: flex;
      gap: 1.15rem;
      align-items: flex-start;
      transition: var(--transition-fast);
    }
    
    .pain-card:hover {
      border-color: rgba(239, 68, 68, 0.25);
      background: rgba(239, 68, 68, 0.04);
      transform: translateX(4px);
    }
    
    .pain-card__icon {
      color: var(--danger);
      font-weight: bold;
      font-size: 1.25rem;
      line-height: 1;
      flex-shrink: 0;
      padding-top: 0.15rem;
    }
    
    .pain-card__title {
      font-size: 0.95rem;
      color: var(--text-light);
      font-weight: 600;
    }
    
    /* Interactive Simulator */
    .simulator-widget {
      background: rgba(10, 14, 26, 0.7);
      border: 2px solid var(--gold-primary);
      border-radius: 0.5rem;
      padding: 2.25rem;
      box-shadow: var(--shadow-card), 0 0 25px rgba(212, 175, 55, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .simulator-widget__poly-bg {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 400 400'%3E%3Cpath d='M0 0 L150 50 L80 180 Z' fill='%23d4af37' fill-opacity='0.02' stroke='%23d4af37' stroke-opacity='0.06' stroke-width='1'/%3E%3Cpath d='M150 50 L400 0 L320 220 L80 180 Z' fill='%23fbbf24' fill-opacity='0.015' stroke='%23fbbf24' stroke-opacity='0.05' stroke-width='1'/%3E%3Cpath d='M320 220 L400 400 L200 350 L80 180 Z' fill='%23f59e0b' fill-opacity='0.02' stroke='%23f59e0b' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
      background-size: cover;
      pointer-events: none;
      z-index: 1;
    }
    
    .simulator-widget__content {
      position: relative;
      z-index: 5;
    }

    .simulator-guidance {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      max-width: 100%;
      margin: 0 0 0.75rem;
      padding: 0.52rem 0.78rem;
      border-radius: 999px;
      background: rgba(212, 175, 55, 0.08);
      border: 1px solid rgba(212, 175, 55, 0.22);
      color: var(--gold-light);
      font-family: 'Outfit', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      line-height: 1.3;
      box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.18);
      animation: simGuidancePulse 1.9s ease-in-out infinite;
    }

    .simulator-guidance__tap {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--gold-primary);
      color: transparent;
      box-shadow: 0 0 0 rgba(212, 175, 55, 0.45);
      animation: simTapPulse 1.6s ease-out infinite;
      flex-shrink: 0;
    }
    
    .simulator-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
      padding-bottom: 0.75rem;
    }
    
    .simulator-title {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gold-light);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .simulator-badge {
      background: var(--success);
      color: #05070f;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 0.15rem;
      text-transform: uppercase;
    }
    
    .sim-question {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-white);
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }
    
    .sim-options {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .sim-option-btn {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(212, 175, 55, 0.15);
      padding: 1rem 1.25rem;
      border-radius: 0.4rem;
      cursor: pointer;
      width: 100%;
      text-align: left;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text-light);
      transition: var(--transition-fast);
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .sim-option-btn--prompt {
      animation: simOptionPrompt 1.8s ease-in-out infinite;
    }
    
    .sim-option-btn:hover {
      background: rgba(212, 175, 55, 0.05);
      border-color: var(--gold-primary);
    }
    
    .sim-option-bullet {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.75rem;
      flex-shrink: 0;
    }
    
    .sim-option-btn.correct {
      background: rgba(16, 185, 129, 0.08) !important;
      border-color: var(--success) !important;
      color: var(--text-white);
    }
    .sim-option-btn.correct .sim-option-bullet {
      background: var(--success);
      border-color: var(--success);
      color: #05070f;
    }
    
    .sim-option-btn.incorrect {
      background: rgba(239, 68, 68, 0.08) !important;
      border-color: var(--danger) !important;
      color: var(--text-white);
    }
    .sim-option-btn.incorrect .sim-option-bullet {
      background: var(--danger);
      border-color: var(--danger);
      color: var(--text-white);
    }
    
    .sim-feedback {
      margin-top: 1.5rem;
      padding: 1.15rem;
      border-radius: 0.4rem;
      font-size: 0.875rem;
      line-height: 1.5;
      display: none;
      animation: fadeIn 0.4s ease forwards;
    }

    .sim-feedback.active {
      display: block;
    }
    
    .sim-feedback.correct-box {
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: var(--text-white);
    }
    
    .sim-feedback.incorrect-box {
      background: rgba(239, 68, 68, 0.08);
      border: 1px solid rgba(239, 68, 68, 0.25);
      color: var(--text-white);
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes simGuidancePulse {
      0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.06); }
      50% { transform: translateY(-1px); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    }

    @keyframes simTapPulse {
      0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.42); transform: scale(1); }
      70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); transform: scale(1.08); }
      100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); transform: scale(1); }
    }

    @keyframes simOptionPrompt {
      0%, 100% { border-color: rgba(212, 175, 55, 0.15); transform: translateY(0); }
      50% { border-color: rgba(212, 175, 55, 0.36); transform: translateY(-1px); }
    }
    
    /* ==========================================================================
       SECCIÓN 3: DIFERENCIADORES Y AUTORIDAD (Banner Informativo 3)
       ========================================================================== */
    .stats-diff {
      background: var(--bg-dark);
      position: relative;
    }
    
    .stats-diff__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    
    .stat-card {
      text-align: center;
      background: rgba(17, 22, 37, 0.95);
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-radius: 0.5rem;
      padding: 2.5rem 1.5rem;
      box-shadow: var(--shadow-card);
      transition: var(--transition-smooth);
    }
    
    .stat-card:hover {
      border-color: var(--gold-primary);
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
      transform: translateY(-4px);
    }
    
    .stat-val {
      font-family: 'Outfit', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1;
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.75rem;
    }
    
    .stat-lbl {
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-white);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }
    
    .stat-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    
    /* Puente de Diploma */
    .diploma-bridge-section {
      background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-panel) 100%);
      position: relative;
    }

    .authority-box {
      background: linear-gradient(135deg, rgba(20, 26, 44, 0.95) 0%, rgba(13, 17, 29, 0.98) 100%);
      border: 2px solid var(--gold-primary);
      border-radius: 0.75rem;
      padding: 3rem 4rem;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 3.5rem;
      align-items: center;
      box-shadow: var(--shadow-card), 0 0 20px rgba(212, 175, 55, 0.1);
    }
    
    .authority-left {
      display: flex;
      flex-direction: column;
      gap: 1.15rem;
      text-align: left;
    }
    
    .authority-tag {
      font-family: 'Outfit', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    
    .authority-title {
      font-size: 2.15rem;
      line-height: 1.25;
    }
    
    .authority-desc {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.7;
    }
    
    /* Visual de Certificado */
    .cert-frame {
      width: 100%;
      aspect-ratio: 1.414; /* A4 Ratio */
      background: #ffffff;
      border: 8px solid #111625;
      outline: 2px solid var(--gold-primary);
      border-radius: 0.25rem;
      position: relative;
      color: #0f172a;
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-family: 'Outfit', sans-serif;
      box-shadow: var(--shadow-card);
      transition: var(--transition-smooth);
    }
    
    .cert-frame:hover {
      transform: scale(1.03) rotate(0.5deg);
    }
    
    .cert-border {
      position: absolute;
      inset: 6px;
      border: 2px solid #e2e8f0;
      pointer-events: none;
    }
    
    .cert-header {
      text-align: center;
    }
    
    .cert-logo {
      font-size: 1.15rem;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: 0.05em;
    }
    
    .cert-logo span {
      color: #b8901c;
    }
    
    .cert-body {
      text-align: center;
      margin: 0.5rem 0;
    }
    
    .cert-title {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #475569;
      font-weight: 700;
      margin-bottom: 0.35rem;
    }
    
    .cert-recipient-lbl {
      font-size: 0.5rem;
      color: #64748b;
      text-transform: uppercase;
      margin-bottom: 0.15rem;
    }
    
    .cert-recipient {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f172a;
      border-bottom: 1.5px solid #cbd5e1;
      padding-bottom: 0.25rem;
      max-width: 80%;
      margin: 0 auto 0.35rem;
    }
    
    .cert-text {
      font-size: 0.5rem;
      color: #475569;
      line-height: 1.4;
      font-family: 'Plus Jakarta Sans', sans-serif;
      max-width: 90%;
      margin: 0 auto;
    }
    
    .cert-footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    
    .cert-signature {
      width: 40%;
      border-top: 1px solid #94a3b8;
      padding-top: 0.2rem;
      font-size: 0.45rem;
      color: #64748b;
      text-align: center;
    }
    
    .cert-stamp {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px double #b8901c;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.32rem;
      font-weight: 800;
      color: #b8901c;
      transform: rotate(-12deg);
      opacity: 0.85;
    }
    
    /* ==========================================================================
       SECCIÓN 4: SELECCIÓN DE CURSOS (Core de la Conversión)
       ========================================================================== */
    .selection-section {
      background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-dark) 100%);
      position: relative;
    }
    
    .selection-title {
      font-size: 2.65rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .selection-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 3.5rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .selection-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
      gap: 2rem;
      align-items: start;
      max-width: 1280px;
      margin: 0 auto;
    }

    .selection-layout__courses,
    .selection-layout__summary {
      min-width: 0;
    }

    .selection-layout__summary {
      position: sticky;
      top: var(--sticky-top, 120px);
    }

    .selection-layout .courses-list,
    .selection-layout .calculator-panel {
      max-width: none;
      margin-left: 0;
      margin-right: 0;
    }

    .selection-layout .courses-list {
      margin-bottom: 0;
    }

    .selection-layout .calculator-panel {
      margin-bottom: 0;
    }

    .selection-layout__summary .interaction-hint--selection {
      justify-content: flex-start;
      margin-left: 0;
      width: auto;
    }

    .selection-layout__summary .calculator-panel {
      overflow: hidden;
    }

    .selection-layout__summary .calc-results-row {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      align-items: end;
    }

    .selection-layout__summary .calc-stat {
      min-width: 0;
    }

    .selection-layout__summary .calc-stat__lbl {
      font-size: 0.8rem;
      line-height: 1.45;
      word-break: break-word;
    }

    .selection-layout__summary .calc-stat__val {
      font-size: clamp(2rem, 2.8vw, 2.9rem);
      line-height: 1;
      overflow-wrap: anywhere;
    }

    .selection-layout__summary .calc-stat__val--total {
      font-size: clamp(2.1rem, 3vw, 3.15rem);
    }
    
    /* Tarjetas Colapsables de Cursos (Acordeón) */
    .courses-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 4rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .course-card {
      background: rgba(17, 22, 37, 0.95);
      border: 1.5px solid rgba(212, 175, 55, 0.15);
      border-radius: 0.5rem;
      transition: var(--transition-smooth);
      position: relative;
      z-index: 10;
      overflow: hidden;
    }
    
    .course-card:hover {
      border-color: rgba(251, 191, 36, 0.4);
      background: rgba(23, 29, 48, 0.8);
    }
    
    /* Bordes brillantes en dorado al ser seleccionadas */
    .course-card.selected {
      border-color: var(--gold-primary);
      background: rgba(212, 175, 55, 0.04);
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.15), var(--shadow-card);
    }
    
    .course-card__header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }
    
    .course-card__header-left {
      display: flex;
      align-items: center;
      gap: 1rem;
      min-width: 0; /* Prevents overflow */
    }
    
    .course-card__name {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-white);
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .course-card__header-right {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-shrink: 0;
    }
    
    .course-card__price-tag {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--gold-light);
    }
    
    .course-card__arrow {
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: transform 0.3s ease;
    }
    
    .course-card.expanded .course-card__arrow {
      transform: rotate(180deg);
    }
    
    .course-checkbox-wrapper {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      cursor: pointer;
    }
    
    .course-checkbox {
      appearance: none;
      -webkit-appearance: none;
      width: 24px;
      height: 24px;
      border: 2px solid var(--gold-primary);
      border-radius: 0.25rem;
      background: rgba(255, 255, 255, 0.02);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-fast);
      position: relative;
    }
    
    .course-checkbox:checked {
      background: var(--gold-gradient);
      border-color: var(--gold-primary);
    }
    
    .course-checkbox:checked::after {
      content: '✓';
      color: #05070f;
      font-weight: bold;
      font-size: 0.95rem;
      position: absolute;
    }
    
    .course-card__details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .course-card__details-inner {
      padding: 0 1.5rem 1.5rem 1.5rem;
      border-top: 1px solid rgba(212, 175, 55, 0.1);
      padding-top: 1.25rem;
    }
    
    .course-card__headline {
      font-size: 0.95rem;
      color: var(--text-light);
      font-weight: 600;
      margin-bottom: 0.75rem;
      line-height: 1.5;
    }
    
    .course-card__desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }
    
    .course-card__list-title {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-white);
      margin-bottom: 0.5rem;
    }
    
    .course-card__bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.5rem;
    }
    
    .course-card__bullet {
      font-size: 0.85rem;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .course-card__bullet-icon {
      color: var(--gold-light);
      font-size: 0.85rem;
      flex-shrink: 0;
    }
    
    .course-card__footer-metrics {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px dashed rgba(212, 175, 55, 0.15);
      padding-top: 1rem;
      margin-top: 1rem;
    }
    
    .course-card__metrics {
      display: flex;
      gap: 1.15rem;
    }
    
    .course-card__metric-item {
      font-family: 'Outfit', sans-serif;
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    
    .course-card__metric-item strong {
      color: var(--gold-light);
      font-size: 0.95rem;
    }
    
    /* Panel del Calculador de Precios */
    .calculator-panel {
      background: linear-gradient(135deg, rgba(17, 22, 37, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%);
      border: 2px solid var(--gold-primary);
      border-radius: 0.5rem;
      padding: 3rem;
      box-shadow: var(--shadow-card), 0 0 30px rgba(212, 175, 55, 0.15);
      max-width: 900px;
      margin: 0 auto 2.5rem;
      position: relative;
    }
    
    .calc-header {
      text-align: center;
      margin-bottom: 2.25rem;
    }
    
    .calc-title {
      font-size: 1.85rem;
      margin-bottom: 0.5rem;
    }
    
    .calc-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
    }
    
    .calc-results-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      border-top: 1px solid rgba(212, 175, 55, 0.15);
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
      padding: 2rem 0;
      margin-bottom: 2.5rem;
      text-align: center;
    }
    
    .calc-stat {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .calc-stat__lbl {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
    }
    
    .calc-stat__val {
      font-family: 'Outfit', sans-serif;
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--text-white);
    }
    
    .calc-stat__val--total {
      color: var(--gold-light);
      font-weight: 800;
      text-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
    }
    
    .calc-checkout-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .calc-submit-btn {
      width: 100%;
      max-width: 500px;
      font-size: 1.15rem;
      padding: 1.25rem 3.5rem;
    }
    
    .calc-subtext {
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    
    /* ==========================================================================
       SECCIÓN 5: PACKS DE CURSOS (Recomendaciones Automáticas)
       ========================================================================== */
    .packs-section {
      background: var(--bg-dark);
      position: relative;
    }
    
    .packs-title {
      font-size: 2.45rem;
      margin-bottom: 1rem;
    }
    
    .packs-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 3.5rem;
    }
    
    /* Carrusel de scroll horizontal fluido para móvil */
    .packs-carousel {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 1rem 0.25rem 2rem 0.25rem;
      scrollbar-width: none; /* Firefox */
      -webkit-overflow-scrolling: touch;
    }
    
    .packs-carousel::-webkit-scrollbar {
      display: none; /* Chrome/Safari/Opera */
    }
    
    .pack-card {
      flex: 0 0 85%; /* Muestra el 85% de la tarjeta y asoma la siguiente */
      scroll-snap-align: center;
      background: rgba(17, 22, 37, 0.95);
      border: 1.5px solid rgba(212, 175, 55, 0.15);
      border-radius: 0.5rem;
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
      text-align: left;
    }
    
    .pack-card:hover {
      border-color: var(--gold-primary);
      background: rgba(23, 29, 48, 0.95);
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }
    
    .pack-badge {
      align-self: flex-start;
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: #05070f;
      background: var(--gold-gradient);
      padding: 0.35rem 0.85rem;
      border-radius: 0.15rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1.5rem;
    }
    
    .pack-title {
      font-size: 1.5rem;
      line-height: 1.3;
      margin-bottom: 0.75rem;
      color: var(--text-white);
    }
    
    .pack-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.75rem;
    }
    
    .pack-included {
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(212, 175, 55, 0.08);
      border-radius: 0.4rem;
      padding: 1.15rem 1.25rem;
      margin-bottom: 2rem;
    }
    
    .pack-included-title {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
    }
    
    .pack-included-list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      list-style: none;
    }
    
    .pack-included-item {
      font-size: 0.85rem;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .pack-included-check {
      color: var(--success);
      font-weight: bold;
    }
    
    .pack-price-box {
      margin-bottom: 1.5rem;
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }
    
    .pack-price-amount {
      font-family: 'Outfit', sans-serif;
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--text-white);
    }
    
    .pack-price-currency {
      font-size: 0.95rem;
      color: var(--text-muted);
    }
    
    .pack-cta-btn {
      width: 100%;
      padding: 0.95rem 1.5rem;
      font-size: 0.9rem;
    }
    
    /* ==========================================================================
       SECCIÓN 6: PREGUNTAS FRECUENTES (Q&A Accordion)
       ========================================================================== */
    .faq-section {
      background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-panel) 100%);
      position: relative;
    }
    
    .faq-title-main {
      font-size: 2.45rem;
      margin-bottom: 1rem;
    }
    
    .faq-subtitle-main {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 3.5rem;
    }
    
    .faq-container {
      max-width: 850px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    /* Acordeón con ángulos marcados (Estilo Low Poly / Sharp Corners) */
    .faq-item {
      background: rgba(17, 22, 37, 0.9);
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-radius: 0px; /* Ángulos 100% rectos */
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    
    .faq-item:hover {
      border-color: rgba(251, 191, 36, 0.4);
    }
    
    .faq-item.active {
      border-color: var(--gold-primary);
      background: rgba(23, 29, 48, 0.95);
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    }
    
    /* Cabecera con corte poligonal sutil en extremos */
    .faq-header {
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      transition: var(--transition-fast);
      clip-path: polygon(0% 0%, 100% 0%, 99.5% 100%, 0.5% 100%);
    }
    
    .faq-question {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-white);
      padding-right: 1.5rem;
    }
    
    .faq-icon-wrapper {
      width: 28px;
      height: 28px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 0px; /* Ángulo recto */
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-light);
      transition: var(--transition-smooth);
      flex-shrink: 0;
    }
    
    .faq-item.active .faq-icon-wrapper {
      transform: rotate(135deg); /* Efecto x */
      background: var(--gold-gradient);
      color: #05070f;
      border-color: transparent;
    }
    
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .faq-body {
      padding: 0 2rem 1.75rem 2rem;
      border-top: 1px solid rgba(212, 175, 55, 0.1);
      padding-top: 1.25rem;
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.75;
    }
    
    /* ==========================================================================
       SECCIÓN 7: LLAMATIVO FINAL (Cierre de Venta)
       ========================================================================== */
    .closing-section {
      background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%), var(--bg-dark);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .closing-container {
      max-width: 800px;
      position: relative;
      z-index: 10;
      margin: 0 auto;
    }
    
    .closing-title {
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 2rem;
      text-transform: uppercase;
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.01em;
    }
    
    .closing-warnings {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 550px;
      margin: 0 auto 3rem;
      text-align: left;
    }
    
    .closing-warning-item {
      font-size: 1.05rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }
    
    .closing-warning-icon {
      color: var(--danger);
      font-weight: bold;
      flex-shrink: 0;
    }
    
    .closing-warning-item.success-item {
      color: var(--text-white);
      font-weight: 700;
      border-top: 1px solid rgba(212, 175, 55, 0.15);
      padding-top: 1rem;
      margin-top: 0.5rem;
    }
    
    .closing-warning-item.success-item .closing-warning-icon {
      color: var(--gold-light);
    }
    
    .closing-tagline {
      font-family: 'Outfit', sans-serif;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 3.5rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .closing-cta-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 4rem;
    }
    
    .closing-giant-btn {
      font-size: 1.25rem;
      padding: 1.35rem 4rem;
      width: 100%;
      max-width: 600px;
    }
    
    .closing-subtext {
      font-size: 0.95rem;
      color: var(--text-muted);
    }
    
    .closing-brand {
      width: min(360px, 80vw);
    }
    
    /* ==========================================================================
       FOOTER
       ========================================================================== */
    .footer {
      border-top: 1px solid rgba(212, 175, 55, 0.15);
      padding: 4rem 0 6rem 0;
      background: #060912;
      position: relative;
      z-index: 5;
    }
    
    .footer__container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.75rem;
      text-align: center;
    }
    
    .footer__badge {
      background: rgba(212, 175, 55, 0.05);
      border: 1px solid rgba(212, 175, 55, 0.2);
      color: var(--gold-light);
      padding: 0.5rem 1.5rem;
      border-radius: 2rem;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    
    .footer__brand {
      width: min(320px, 75vw);
    }
    
    .footer__copyright {
      font-size: 0.85rem;
      color: var(--text-muted);
      max-width: 650px;
      line-height: 1.6;
    }
    
    .footer__cert-mentions {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
    }
    
    .footer__cert-mentions strong {
      color: var(--text-light);
    }
    
    /* ==========================================================================
       sticky ASISTENCIA FLOATING WIDGET (Adultos Mayores)
       ========================================================================== */
    .sticky-support {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #06633b; /* Premium forest green (WCAG AAA compliant with white text) */
      color: #ffffff;
      padding: 0.9rem 1.5rem;
      border-radius: 50px;
      box-shadow: 0 10px 25px rgba(6, 99, 59, 0.4), 0 0 0 2px var(--gold-primary);
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      transition: transform 0.28s ease, width 0.28s ease, padding 0.28s ease, gap 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
      animation: floatWidget 3s ease-in-out infinite;
      transform-origin: right bottom;
      white-space: nowrap;
    }
    
    .sticky-support:hover {
      background: #055c36; /* Darker green (WCAG AAA compliant) */
      transform: scale(1.05) translateY(-3px);
      box-shadow: 0 15px 30px rgba(5, 92, 54, 0.5), 0 0 0 3px var(--gold-light);
    }
    
    .sticky-support__icon {
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .sticky-support__label {
      display: inline-block;
      max-width: 260px;
      opacity: 1;
      overflow: hidden;
      transition: max-width 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
    }

    .sticky-support--collapsed {
      gap: 0;
      padding: 0.95rem;
      min-width: 60px;
      width: 60px;
      border-radius: 999px;
      animation: none;
      transform: scale(0.98);
    }

    .sticky-support--collapsed .sticky-support__label {
      max-width: 0;
      opacity: 0;
      transform: translateX(12px);
    }

    body.viewport-compact .section-padding {
      padding: 4.1rem 0;
    }

    body.viewport-compact .hero__container,
    body.viewport-compact .pain-sol__container,
    body.viewport-compact .authority-box {
      gap: 2.5rem;
    }

    body.viewport-compact .hero__title {
      font-size: 3rem;
    }

    body.viewport-compact .pain-sol__title,
    body.viewport-compact .packs-title,
    body.viewport-compact .faq-title-main,
    body.viewport-compact .closing-title,
    body.viewport-compact .selection-title {
      font-size: 2.15rem;
    }

    body.viewport-compact .authority-title {
      font-size: 1.9rem;
    }

    body.viewport-compact .authority-box,
    body.viewport-compact .simulator-widget,
    body.viewport-compact .calculator-panel,
    body.viewport-compact .pack-card {
      padding: 2rem;
    }

    body.viewport-compact .course-card__header-row {
      padding: 1rem 1.25rem;
    }

    body.viewport-compact .course-card__name {
      font-size: 1.05rem;
    }

    body.viewport-compact .selection-subtitle,
    body.viewport-compact .packs-subtitle,
    body.viewport-compact .faq-subtitle-main,
    body.viewport-compact .authority-desc {
      font-size: 1rem;
    }

    body.viewport-short .hero {
      min-height: 92vh;
      padding-bottom: 3rem;
    }

    body.viewport-short .pain-sol__title {
      font-size: 2rem;
    }

    body.viewport-short .pack-desc,
    body.viewport-short .sim-question {
      font-size: 0.95rem;
    }
    
    @keyframes floatWidget {
      0% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
      100% { transform: translateY(0); }
    }
    
    /* ==========================================================================
       SISTEMA DE MODALES (Pop-ups)
       ========================================================================== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 7, 15, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      padding: 1rem;
    }
    
    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    
    .modal-box {
      background: var(--bg-panel);
      border: 2px solid var(--gold-primary);
      border-radius: 0.5rem;
      width: 100%;
      max-width: 500px;
      padding: 2.25rem 2rem;
      position: relative;
      transform: scale(0.92);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--shadow-glow), 0 10px 30px rgba(0,0,0,0.8);
      max-height: 90vh;
      overflow-y: auto;
    }
    
    .modal-overlay.active .modal-box {
      transform: scale(1);
    }
    
    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 1.75rem;
      cursor: pointer;
      line-height: 1;
      transition: var(--transition-fast);
    }
    
    .modal-close:hover {
      color: var(--text-white);
    }
    
    .form-group {
      margin-bottom: 1.25rem;
      text-align: left;
    }
    
    .form-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-white);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .form-input {
      width: 100%;
      padding: 0.85rem 1rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(212, 175, 55, 0.25);
      border-radius: 0.35rem;
      color: var(--text-white);
      font-family: inherit;
      font-size: 0.95rem;
      transition: var(--transition-fast);
    }
    
    .form-input:focus {
      outline: none;
      border-color: var(--gold-light);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 0 10px rgba(251, 191, 36, 0.1);
    }
    
    /* Componente Diploma en vivo */
    .mini-diploma {
      background: #fdfbf7;
      border: 4px double #d4af37;
      padding: 1rem 1.25rem;
      border-radius: 4px;
      color: #1c1917;
      text-align: center;
      position: relative;
      font-family: 'Outfit', sans-serif;
      margin: 1.25rem 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .mini-diploma__header {
      font-size: 0.7rem;
      text-transform: uppercase;
      color: #b8901c;
      font-weight: 800;
      letter-spacing: 0.05em;
      margin-bottom: 0.25rem;
    }
    
    .mini-diploma__name {
      font-size: 1.25rem;
      font-weight: 700;
      color: #111625;
      border-bottom: 1.5px dashed #d4af37;
      display: inline-block;
      min-width: 65%;
      margin: 0.4rem 0;
      padding-bottom: 0.15rem;
      text-align: center;
      letter-spacing: 0.02em;
    }
    
    .mini-diploma__footer {
      font-size: 0.55rem;
      color: #78716c;
      margin-top: 0.4rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    
    /* Cookie Disclaimer Banner */
    .cookie-banner {
      position: fixed;
      bottom: 2rem;
      left: 2rem;
      right: 2rem;
      background: rgba(17, 22, 37, 0.95);
      border: 1.5px solid var(--gold-primary);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--shadow-glow);
      border-radius: 8px;
      padding: 1.25rem 2.5rem 1.25rem 1.5rem;
      z-index: 999;
      display: block;
      animation: slideUpCookie 0.5s ease-out;
      max-width: 900px;
      margin: 0 auto;
    }
    
    @keyframes slideUpCookie {
      from { transform: translateY(100px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    .cookie-banner__content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    
    .cookie-banner__text {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.5;
      text-align: left;
    }
    
    .cookie-banner__close {
      background: transparent;
      border: none;
      color: var(--gold-light);
      font-size: 1.75rem;
      cursor: pointer;
      line-height: 1;
      transition: var(--transition-fast);
      flex-shrink: 0;
    }
    
    .cookie-banner__close:hover {
      color: var(--text-white);
    }

    /* ==========================================================================
       MEDIA QUERIES (RESPONSIVO OPTIMIZADO)
       ========================================================================== */
    @media (max-width: 1100px) {
      .hero__title {
        font-size: 3rem;
      }
      .authority-box {
        padding: 2.5rem;
        gap: 2.5rem;
      }
    }

    @media (max-width: 980px) {
      .selection-layout {
        grid-template-columns: 1fr;
      }
      .selection-layout__summary {
        position: static;
      }
      .selection-layout__summary .interaction-hint--selection {
        justify-content: center;
        width: 100%;
      }
    }
    
    @media (max-width: 950px) {
      .section-padding {
        padding: 4rem 0;
      }
      .hero__container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
      }
      .hero__content {
        align-items: center;
      }
      .hero__badges-grid {
        justify-content: center;
      }
      .hero__paragraph {
        margin-left: auto;
        margin-right: auto;
      }
      .hero__ctas {
        justify-content: center;
      }
      .pain-sol__container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
      }
      .pain-sol__left {
        text-align: center;
      }
      .pain-card {
        text-align: left;
      }
      .stats-diff__grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .authority-box {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .authority-left {
        align-items: center;
      }
      .cert-frame {
        max-width: 450px;
        margin: 0 auto;
      }
      .selection-layout__summary .interaction-hint--selection {
        justify-content: center;
      }
    }
    
    @media (max-width: 768px) {
      html {
        scroll-snap-type: y proximity;
      }
      body {
        overflow-x: clip;
      }
      .hero,
      .pain-sol,
      .stats-diff,
      .diploma-bridge-section,
      .selection-section,
      .packs-section,
      .faq-section,
      .closing-section {
        scroll-snap-align: start;
      }
      .section-padding {
        padding: 3.5rem 0;
      }
      .container {
        padding: 0 1rem;
      }
      .header__fast-track {
        display: none; /* Oculta botón de planes en header de móvil para simplificación */
      }
      .header__mobile-cta {
        display: none !important;
      }
      .header {
        padding: 0.9rem 0;
      }
      .header--scrolled {
        padding: 0.7rem 0;
      }
      .header__logo-image {
        width: 112px;
        max-width: 32vw;
      }
      .header__container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.55rem;
        position: relative;
      }
      .header__logo {
        min-width: 0;
        flex: 1;
      }
      .header__actions {
        display: flex;
        position: static;
        transform: none;
        justify-self: end;
        gap: 0;
      }
      .header__cta-btn {
        padding: 0.68rem 0.8rem;
        font-size: 0.68rem;
        letter-spacing: 0.03em;
        white-space: nowrap;
      }
      .hero {
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 6.6rem;
        padding-bottom: 1.5rem;
      }
      .hero__container {
        gap: 1.35rem;
        align-items: start;
        text-align: left;
      }
      .hero__content {
        width: 100%;
        align-items: flex-start;
        min-width: 0;
      }
      .hero__badge-top {
        display: inline-flex;
        align-items: center;
        font-size: 0.66rem;
        line-height: 1.35;
        padding: 0.5rem 0.8rem;
        margin-bottom: 1rem;
        max-width: 100%;
        white-space: normal;
        text-wrap: pretty;
      }
      .hero__title {
        font-size: clamp(1.78rem, 8.4vw, 2.4rem);
        line-height: 1.04;
        margin-bottom: 1rem;
        max-width: 100%;
        text-wrap: balance;
      }
      .hero__title span {
        margin-top: 0.15rem;
      }
      .hero__paragraph {
        font-size: 0.98rem;
        line-height: 1.55;
        margin-bottom: 1.2rem;
        max-width: 32ch;
        margin-left: 0;
        margin-right: 0;
      }
      .hero__badges-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        gap: 1rem;
        padding-bottom: 0.75rem;
        margin-bottom: 1rem;
        min-width: 0;
        max-width: 100%;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
      .hero__badges-grid::-webkit-scrollbar {
        display: none;
      }
      .hero__badge-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-height: 72px;
        padding: 0.95rem 1rem;
        font-size: 0.88rem;
        min-width: 0;
      }
      .hero__ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        min-width: 0;
        max-width: 100%;
      }
      .hero__cta-primary-wrapper,
      .hero__cta-secondary {
        width: 100%;
        min-width: 0;
      }
      .hero__cta-primary,
      .hero__cta-secondary {
        padding: 0.95rem 1rem;
        font-size: 0.9rem;
        line-height: 1.2;
        white-space: normal;
      }
      .hero__cta-info {
        padding-left: 0;
        text-align: left;
      }
      .hero__visual {
        display: none;
      }
      .interaction-hint {
        font-size: 0.68rem;
        letter-spacing: 0.07em;
      }
      .carousel-nav {
        display: inline-flex;
      }
      .carousel-nav__copy {
        font-size: 0.64rem;
      }
      .carousel-arrow {
        width: 32px;
        height: 32px;
      }
      .interaction-hint--hero {
        margin-top: -0.2rem;
        margin-bottom: 1rem;
        justify-content: flex-start;
      }
      .closing-title {
        font-size: 2.5rem;
      }
      .pain-sol {
        min-height: auto;
        display: flex;
        align-items: center;
        padding: 2.1rem 0;
      }
      .pain-sol__module {
        width: 100%;
        padding: 0.95rem;
      }
      .pain-sol__container {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        align-items: start;
      }
      .pain-sol__left {
        display: grid;
        gap: 0.45rem;
      }
      .pain-sol__subtitle {
        font-size: 0.66rem;
        letter-spacing: 0.08em;
        margin-bottom: 0;
      }
      .pain-sol__title {
        font-size: 1.26rem;
        line-height: 1.08;
        max-width: none;
        margin-bottom: 0;
      }
      .pain-sol__cards-wrapper {
        margin-top: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.42rem;
        padding-bottom: 0;
        overflow: visible;
      }
      .pain-card {
        min-height: auto !important;
        height: auto !important;
        padding: 0.58rem 0.62rem;
        gap: 0.48rem;
        display: grid;
        grid-template-columns: 16px minmax(0, 1fr);
        align-items: start;
        border-radius: 0.8rem;
      }
      .pain-card:last-child {
        grid-column: 1 / -1;
      }
      .pain-card__title {
        font-size: 0.69rem;
        line-height: 1.22;
        margin: 0;
      }
      .pain-card__icon {
        font-size: 0.95rem;
        padding-top: 0.02rem;
      }
      .simulator-widget {
        margin-top: 0;
        position: relative;
        z-index: 10;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding: 0.82rem 0.78rem 0.8rem;
        border-radius: 0.7rem;
      }
      .interaction-hint--sim {
        display: none;
      }
      .simulator-guidance {
        display: inline-flex;
        margin-bottom: 0.55rem;
        padding: 0.46rem 0.7rem;
        font-size: 0.64rem;
      }
      .simulator-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.55rem;
      }
      .sim-question {
        font-size: 0.82rem;
        line-height: 1.24;
        margin-bottom: 0.6rem;
      }
      .sim-options {
        gap: 0.42rem;
      }
      .sim-option-btn {
        padding: 0.56rem 0.62rem;
        font-size: 0.69rem;
        line-height: 1.18;
        gap: 0.52rem;
        border-radius: 0.65rem;
      }
      .sim-option-bullet {
        width: 17px;
        height: 17px;
        font-size: 0.62rem;
      }
      .sim-feedback {
        margin-top: 0.6rem;
        padding: 0.68rem;
        font-size: 0.68rem;
        line-height: 1.3;
      }
      .stats-diff__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
      .stats-diff__grid::-webkit-scrollbar {
        display: none;
      }
      .stat-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
      }
      .selection-title {
        font-size: 2rem;
      }
      .selection-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.5rem;
      }
      .selection-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .selection-layout__summary {
        position: static;
      }
      .selection-layout__summary .calc-results-row {
        grid-template-columns: 1fr;
      }
      .courses-list {
        margin-bottom: 2rem;
      }
      .calculator-panel {
        padding: 1.5rem 1.1rem;
        margin-bottom: 1.75rem;
      }
      .authority-box {
        padding: 2rem 1.2rem;
        gap: 1.5rem;
      }
      .authority-title {
        font-size: 1.85rem;
      }
      .authority-desc {
        font-size: 0.95rem;
        line-height: 1.6;
      }
      .packs-title,
      .faq-title-main {
        font-size: 2rem;
        line-height: 1.08;
      }
      .packs-subtitle,
      .faq-subtitle-main {
        font-size: 0.98rem;
        margin-bottom: 2rem;
      }
      .pack-card {
        flex-basis: 92%;
        padding: 1.5rem 1.2rem;
      }
      .calc-header {
        margin-bottom: 1.25rem;
      }
      .calc-title {
        font-size: 1.4rem;
      }
      .calc-results-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem 0;
        margin-bottom: 1.25rem;
      }
      .sticky-support {
        left: 1rem;
        right: auto;
        bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 1rem);
        width: auto;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.82rem;
        max-width: calc(100vw - 2rem);
      }
      .sticky-support--collapsed {
        width: 58px;
        min-width: 58px;
        padding: 0.85rem;
      }
      .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 0.75rem 2rem 0.75rem 0.85rem;
      }
      .cookie-banner__content {
        gap: 0.75rem;
      }
      .cookie-banner__text {
        font-size: 0.78rem;
      }
    }
    
    /* Responsive para Packs: Grid en desktop, carrusel en móvil */
    @media (min-width: 768px) {
      .packs-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
      }
      .pack-card {
        flex: none;
        width: auto;
        padding: 2.5rem 2rem;
      }
    }
    
    @media (max-width: 480px) {
      .header__logo-image {
        width: 102px;
      }
      .header__cta-btn {
        padding: 0.64rem 0.75rem;
        font-size: 0.66rem;
      }
      .hero__title {
        font-size: 2rem;
      }
      .hero__paragraph {
        font-size: 0.94rem;
      }
      .pain-sol__subtitle {
        display: none;
      }
      .pain-sol__title {
        font-size: 1.06rem;
        line-height: 1.05;
      }
      .pain-sol__cards-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.32rem;
      }
      .pain-card {
        grid-template-columns: 14px minmax(0, 1fr);
        padding: 0.48rem 0.52rem;
      }
      .pain-card:last-child {
        grid-column: 1 / -1;
      }
      .pain-card__title {
        font-size: 0.62rem;
        line-height: 1.18;
      }
      .simulator-widget {
        padding: 0.72rem 0.68rem;
        max-width: 100%;
      }
      .carousel-nav {
        gap: 0.55rem;
      }
      .carousel-nav__copy {
        font-size: 0.58rem;
      }
      .carousel-arrow {
        width: 29px;
        height: 29px;
        font-size: 1rem;
      }
      .simulator-guidance {
        width: 100%;
        justify-content: center;
        font-size: 0.58rem;
        padding: 0.42rem 0.56rem;
      }
      .simulator-header {
        margin-bottom: 0.45rem;
        padding-bottom: 0.45rem;
      }
      .sim-question {
        font-size: 0.72rem;
        line-height: 1.18;
        margin-bottom: 0.48rem;
      }
      .sim-options {
        gap: 0.32rem;
      }
      .sim-option-btn {
        padding: 0.44rem 0.5rem;
        font-size: 0.61rem;
        line-height: 1.12;
      }
      .sim-option-bullet {
        width: 15px;
        height: 15px;
        font-size: 0.56rem;
      }
      .sim-feedback {
        font-size: 0.62rem;
        padding: 0.56rem;
      }
      .course-card__header-row {
        padding: 1rem;
      }
      .course-card__header-right {
        gap: 0.7rem;
      }
      .course-card__name {
        font-size: 0.94rem;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }
      .course-card__price-tag {
        font-size: 0.95rem;
      }
      .course-card__details-inner {
        padding: 0 1rem 1.25rem 1rem;
      }
      .hero__badge-item,
      .stat-card {
        flex-basis: 88%;
      }
      .hero__badge-top {
        font-size: 0.68rem;
      }
      .simulator-title,
      .simulator-badge {
        font-size: 0.64rem;
      }
      .authority-title,
      .packs-title,
      .faq-title-main {
        font-size: 1.72rem;
      }
      .pack-title {
        font-size: 1.3rem;
      }
      .pack-desc {
        font-size: 0.86rem;
      }
      .closing-brand,
      .footer__brand {
        width: min(260px, 78vw);
      }
      .closing-title {
        font-size: 2rem;
      }
      .closing-warning-item {
        font-size: 0.9rem;
      }
      .faq-header {
        padding: 1.25rem 1.5rem;
      }
      .faq-question {
        font-size: 0.95rem;
      }
      .faq-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
      }
    }
