:root {
    --primary-dark: #0f1220;
    --primary-blue: #1a1a2e;
    /* --primary-green: #31ca6b; */ /* Comentado para usar rojo */
    --primary-cta-red: rgb(255, 4, 0);
    --primary-cta-red-dark: rgb(210, 4, 0);
    --highlight-yellow: #F8E71C;
    --primary-light: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #b0b8c5;
    /* --gradient-green: linear-gradient(135deg, #31ca6b 0%, #2aaf5f 100%); */
    --gradient-cta-red: linear-gradient(135deg, var(--primary-cta-red) 0%, var(--primary-cta-red-dark) 100%);
    --gradient-dark: linear-gradient(135deg, #0f1220 0%, #1a1a2e 100%);
    --gradient-blue: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 100%);
    --gradient-red: linear-gradient(135deg, var(--primary-cta-red) 0%, var(--primary-cta-red-dark) 100%);
}

body {
    font-family: 'Outfit', sans-serif; /* Usando una fuente similar a la principal */
    margin: 0;
    padding: 0;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden; /* Prevenir scroll horizontal por animaciones */
    width: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

body.popup-open {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: visible; /* Permitir que elementos animados se vean fuera del container */
}

/* Fondos alternados */
.bg-dark {
    /* background: linear-gradient(135deg, #0f1220 60%, #23243a 80%, #31ca6b 113%, #1a1a2e 120%); */
    background-color: var(--primary-dark);
}

.bg-blue {
    /* background: linear-gradient(120deg, #181a2b 50%, #2a2a4a 80%, #3a3a6a 100%, #00cfff 120%); */
    background-color: var(--primary-dark);
}

.bg-green {
    background: linear-gradient(120deg, #0f1220 40%, #31ca6b 80%, #1a1a2e 100%, #00ffb2 120%);
}

.bg-red {
    background: linear-gradient(120deg, #0f1220 40%, #ff0022 80%, #ff5e62 100%, #1a1a2e 120%);
}

.bg-purple {
    background: linear-gradient(120deg, #0f1220 40%, #7b2ff2 80%, #f357a8 100%, #1a1a2e 120%);
}

/* Asegura que el color base sea oscuro en todas las secciones */
.section {
    background-color: #0f1220;
}

/* Header Styles - Blanco y más compacto */
.landing-header {
    background: #1a1a2e;
    color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* El padding ya está en .container */
}

.logo-container .header-logo {
    max-height: 70px; /* Logo más pequeño */
    width: auto;
}

.header-text {
    text-align: right;
}

.header-text h1 {
    margin: 0 0 2px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6em; /* Más compacto */
    font-weight: 700;
    color: #ffffff;
}

.header-text p {
    font-size: 0.85em; /* Más compacto */
    margin-bottom: 0;
    color: #b0b8c5;
    opacity: 1;
}

/* Hero Landing Banner Section - Simplificado */
.hero-landing-banner {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-landing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(49, 202, 107, 0.15) 0%, rgba(26, 26, 46, 0) 70%);
    z-index: 0;
}

.hero-banner-container-simplified {
    max-width: 800px; /* Ajustar ancho para el texto */
    margin: 0 auto;
}

.hero-banner-text-content h1 {
    font-size: 3em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-light);
    width: 120%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-banner-text-content h1 span {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.hero-banner-text-content h1 span.highlight-yellow, h2 span.highlight-yellow {
    background-color: var(--highlight-yellow);
    color: var(--primary-dark);
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-banner-text-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-cta-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.hero-banner-text-content h1 span:hover::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: 1.5em;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-banner-text-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.7;
    color: var(--primary-light);
}

.hero-cta-button {
    padding: 16px 32px;
    font-size: 1.15em;
    display: inline-block;
}

/* Full Video Section */
.full-video-section {
    padding: 60px 0;
    background-color: #1a1a2e;
    position: relative; /* Para posible overlay o elementos adicionales */
    width: 100%;
}
.video-section-container {
    max-width: 900px; /* O el ancho que prefieras para el video */
    margin: 0 auto;
}

.video-wrapper.aspect-ratio-16-9 {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Sombra más pronunciada sobre fondo oscuro */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Section Base Styles */
.section {
    padding: 60px 0;
    text-align: center;
    width: 100%;
}

.section .container { /* Asegurar que el container de las secciones respete el padding general */
    padding-left: 15px;
    padding-right: 15px;
}

.section-title {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-light);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #1a1a2e;
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3em;
    color: var(--primary-light);
    margin-bottom: 40px;
}

.bg-blue .section-subtitle {
    color: #ffffff;
    opacity: 0.9;
}

/* Xhability Pro Section - Mockup Styles */
.xhability-mockup-container {
    position: relative;
    overflow: visible;
}

.xhability-mockup-container img {
    transition: box-shadow 0.6s ease;
}

/* Product Feature Section (Xhability Pro) */
.product-feature-section {
    background-color: #ffffff;
    padding: 60px 0;
    width: 100%;
}

.product-pro-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    text-align: left;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.product-pro-image {
    flex-basis: 40%;
    max-width: 450px;
}

.product-pro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease-out;
}

.product-pro-image img:hover {
    transform: scale(1.05);
}

.product-pro-details {
    flex-basis: 55%;
}

.product-pro-details h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #1a1a2e;
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 20px;
}

.product-pro-details .description {
    font-size: 1.1em;
    color: #546e87;
    margin-bottom: 25px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 1.05em;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #eb0400;
    margin-right: 12px;
    font-size: 1.2em;
}

.price-pro {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5em;
    color: #1a1a2e;
    margin: 20px 0;
    font-weight: 700;
}

.price-pro .price-type {
    font-size: 0.5em;
    font-weight: 500;
    color: #546e87;
    margin-left: 5px;
}

.buy-button-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cta-red);
    color: var(--primary-light) !important;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    transition: all 0.5s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 4, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.buy-button-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-cta-red-dark) 0%, var(--primary-cta-red) 100%);
    z-index: -1;
    transition: transform 0.5s ease;
}

.buy-button-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 4, 0, 0.4);
}

.buy-button-pro:hover::before {
    transform: scaleX(-1);
}

.bg-blue .buy-button-pro {
    background: #ffffff;
    color: #1a1a2e !important;
}

.buy-button-pro i {
    margin-right: 10px;
    font-size: 1.1em;
}

.highlight-yellow {
    background-color: var(--highlight-yellow);
    color: var(--primary-dark);
    padding: 0 5px;
}

/* Contact Form Landing Section */
.contact-form-landing {
    background-color: #eaf2f8;
    padding: 70px 0;
}

.landing-contact-form {
    max-width: 700px;
    margin: 30px auto;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: calc(50% - 10px); /* Para dos columnas con gap */
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    min-width: 100%;
}

.form-group label {
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 8px;
    text-align: left;
    font-size: 0.95em;
}

.form-control-landing {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cdd5de;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-control-landing:focus {
    border-color: #31ca6b;
    box-shadow: 0 0 0 3px rgba(49, 202, 107, 0.2);
    outline: none;
}

.textarea-landing {
    min-height: 120px;
    resize: vertical;
}

.submit-button-landing {
    display: inline-block;
    background: linear-gradient(135deg, #0f3460 0%, #1e5f9e 100%);
    color: #fff !important;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(15,52,96,0.2);
}

.submit-button-landing:hover {
    background: linear-gradient(135deg, #1e5f9e 0%, #0f3460 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15,52,96,0.3);
}

/* Payment Focus Section (dLocal Go) */
.payment-focus-section {
    background-color: #1a1a2e;
    color: #ffffff;
}

.payment-focus-section .section-title,
.payment-focus-section .section-subtitle {
    color: #ffffff;
}

.payment-focus-section .section-title::after {
    background: #ffffff;
}

.payment-module-dlocal {
    max-width: 550px;
    margin: 30px auto;
    background: #ffffff; 
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
}

.payment-logo-container-dlocal img {
    max-width: 220px; /* Ajustar si es necesario para el logo de dLocal Go */
    margin-bottom: 25px;
}

.payment-description-dlocal {
    font-size: 1em;
    color: #546e87;
    margin-bottom: 25px;
    line-height: 1.6;
}

.payment-summary-dlocal {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.payment-summary-dlocal h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #1a1a2e !important;
    font-size: 1.25em;
    margin-top: 0;
    margin-bottom: 15px;
}

.payment-summary-dlocal p {
    font-size: 1em;
    color: #333;
    margin-bottom: 8px;
}

.dlocal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a2e;
    color: #fff !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.dlocal-button i {
    margin-right: 10px;
    font-size: 1.3em;
}

.dlocal-button:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #31ca6b 100%);
    transform: scale(1.02);
}

.payment-secure-note-dlocal {
    font-size: 0.9em;
    color: #546e87;
    margin-top: 20px;
}

.payment-secure-note-dlocal i {
    color: #28a745;
    margin-right: 5px;
}

/* Footer Styles */
.landing-footer {
    background: #1a1a2e;
    color: #b0b8c5;
    padding: 50px 0 20px;
    margin-top: 70px;
    font-size: 0.95em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-logo-area, .footer-social-icons-widget, .footer-links-area {
    flex: 1;
    min-width: 220px;
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-slogan {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.footer-social-icons-widget h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 1.3em;
    margin-bottom: 15px; /* Alineado con padding-bottom de otros h4 */
    border-bottom: 1px solid #3a4a63;
    padding-bottom: 10px;
}

.footer-social-icons {
    display: flex;
    gap: 15px; /* Espacio entre iconos */
}

.footer-social-icons a {
    color: #b0b8c5;
    font-size: 1.6em; /* Iconos un poco más grandes */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
    color: #65e686;
    transform: scale(1.1);
}

.landing-footer h4 { /* Estilo base para h4 del footer */
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 1.3em;
    margin-bottom: 20px;
    border-bottom: 1px solid #3a4a63;
    padding-bottom: 10px;
}

.landing-footer ul {
    list-style: none;
    padding: 0;
}

.landing-footer ul li {
    margin-bottom: 10px;
}

.landing-footer a {
    color: #b0b8c5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-footer a:hover {
    color: #65e686;
    text-decoration: underline;
}

.footer-bottom-landing {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a4a63;
    font-size: 0.9em;
}

.developer-signature-landing a {
    color: #ffffff;
    font-weight: 600;
}

/* WhatsApp Float Button */
.whatsapp-float-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-button i {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    font-size: 2em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.3);
    color: #FFF;
}

/* WOW Animation Styles */
.wow-animate {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.wow-animate.fadeInUp {
    transform: translateY(40px);
}
.wow-animate.fadeInLeft {
    transform: translateX(-40px);
}
.wow-animate.fadeInRight {
    transform: translateX(40px); 
}
.wow-animate.fadeIn {
    opacity: 0;
}
.wow-animate.zoomIn {
    transform: scale(0.9);
}

.wow-animate.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Testimonial Section */
.testimonials-section {
    padding: 60px 0;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px auto;
    max-width: 1170px;
}

.testimonial-card {
    background: #2a2a4a;
    border-radius: 20px;
    padding: 35px 30px;
    border: 3px solid var(--highlight-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(248, 231, 28, 0.2);
}

.testimonial-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid var(--highlight-yellow);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-light);
    margin: 0 0 5px 0;
}

.testimonial-author .testimonial-title {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.testimonial-content {
    font-size: 1em;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
.testimonial-author p {
    display: block;
}

.testimonial-rating {
    margin-top: auto;
}

.testimonial-rating .fa-star {
    color: #F8E71C;
    font-size: 1.3em;
    margin: 0 2px;
}

.counter-container {
    margin-top: 40px;
    background: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.bg-blue .counter-container {
    background: rgba(255, 255, 255, 0.1);
}

.counter-container h3 {
    color: #ffffff;
    font-size: 1.6em;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

/* For You Section - New Grid Layout */
.for-you-section {
    padding: 60px 0;
    background-color: #1a1a2e;
    width: 100%;
}

.is-for-you-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.is-for-you-card {
    flex: 0 0 320px;
    width: 320px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.is-for-you-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 231, 28, 0.05) 0%, rgba(255, 4, 0, 0.05) 50%, rgba(26, 26, 46, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.is-for-you-card:hover::before {
    opacity: 1;
}

.is-for-you-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(248, 231, 28, 0.3);
}

.card-image {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.card-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(248, 231, 28, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.is-for-you-card:hover .card-image img {
    border-color: rgba(248, 231, 28, 0.6);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(248, 231, 28, 0.2);
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4em;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.card-content p {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    background: #ffffff;
    color: #1a1a2e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8em;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3em;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

/* Product Benefits */
.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    background: #f5f7fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.bg-blue .benefit-item {
    background: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    background: #1a1a2e;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-blue .benefit-icon {
    background: #ffffff;
    color: #1a1a2e;
}

.benefit-icon i {
    font-size: 1.5em;
}

.benefit-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3em;
    margin: 0 0 10px 0;
}

.benefit-content p {
    margin: 0;
    line-height: 1.6;
}

.cta-container {
    margin-top: 40px;
    text-align: center;
}

/* Achievements Section */
.achievements-section {
    background-color: #1a1a2e;
    padding: 60px 0;
    width: 100%;
}

.achievements-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.achievements-list li {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.05em;
    position: relative;
    padding-left: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #ffffff;
}

.achievements-list li:before {
    content: '✓';
    font-weight: bold;
    color: var(--primary-light);
    background-color: var(--primary-cta-red);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    background-color: #ffffff;
    width: 100%;
}

.welcome-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    line-height: 1.7;
}

/* Payment Popup */
.payment-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Oculto por defecto */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-popup.show {
    display: flex !important; /* Mostrar con flex cuando la clase .show está presente */
    opacity: 1;
    visibility: visible;
}

.payment-popup-content {
    background: var(--primary-dark);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.payment-popup.show .payment-popup-content {
    transform: scale(1);
}

.payment-popup-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-light);
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

.payment-popup-content p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 25px;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--primary-light);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    z-index: 10; /* Asegurar que esté por encima de otros elementos del contenido del popup */
}

.close-popup:hover {
    color: var(--primary-cta-red);
}

/* Estilos para los botones de país en el Country Selection Popup */
#country-selection-popup .country-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#country-selection-popup .country-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    color: var(--primary-light);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

#country-selection-popup .country-button:not(:disabled):hover {
    border-color: var(--primary-cta-red);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 4, 0, 0.2);
    background: rgba(255, 4, 0, 0.2);
}

#country-selection-popup .country-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

/* Estilos para la imagen de la bandera dentro del botón */
#country-selection-popup .country-button .country-flag-img {
    width: 50px; /* Ajusta según sea necesario */
    height: auto; /* Mantiene la proporción */
    margin-bottom: 10px;
    border-radius: 3px; /* Opcional: para bordes redondeados si las imágenes son rectangulares */
}

/* Eliminamos o comentamos los estilos para el ícono <i> que ya no se usa para la bandera */
/*
#country-selection-popup .country-button i {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--primary-green);
}
*/

#country-selection-popup .country-button span {
    font-size: 1em;
    font-weight: 500;
    color: var(--primary-light);
}

#country-selection-popup .country-button:disabled span {
    color: var(--text-secondary);
}

@media (max-width: 480px) {
    #country-selection-popup .country-options {
        flex-direction: column;
        align-items: center;
    }

    #country-selection-popup .country-button {
        width: 100%;
        max-width: 200px;
    }
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .benefits-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .benefit-item {
        flex: 1 0 calc(50% - 15px);
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2em;
    }
    .hero-banner-text-content h1 {
        font-size: 2.2em;
    }
    .hero-banner-text-content p {
        font-size: 1.05em;
    }
}

@media (max-width: 767px) {
    /* General adjustments */
    body {
        font-size: 16px;
    }
    
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    /* Contador */
    .countdown-section {
        padding: 15px 10px;
    }
    
    .countdown-section h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    #countdown-timer {
        gap: 15px;
        justify-content: center;
    }
    
    .countdown-item {
        width: auto;
        padding: 0 10px;
        margin: 0;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8em;
    }
    
    .countdown-label {
        font-size: 0.75em;
    }
    
    /* Hero Banner */
    .hero-landing-banner {
        padding: 40px 0;
    }
    
    .hero-banner-text-content h1 {
        font-size: 1.8em;
        line-height: 1.3;
        margin-bottom: 15px;
        width: auto;
        left: auto;
        transform: none;
    }
    
    .hero-banner-text-content p {
        font-size: 1em;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    /* Video Section */
    .full-video-section {
        padding: 40px 0;
    }
    
    .video-wrapper.aspect-ratio-16-9 {
        margin-top: 20px;
    }
    
    /* Testimonial Cards */
    .testimonials-carousel-container {
        max-width: 350px;
        -webkit-mask-image: none;
        mask-image: none;
    }
    
    .testimonial-card {
        flex: 0 0 320px;
        width: 320px;
    }
    
    .testimonial-image {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .testimonial-content {
        font-size: 0.95em;
    }
    
    .testimonial-author h4 {
        font-size: 1.1em;
    }
    
    .counter-container {
        margin-top: 30px;
        padding: 15px;
    }
    
    .counter-container h3 {
        font-size: 1.3em;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 1.5em;
    }
    
    .feature-card h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    /* Benefits */
    .product-benefits {
        gap: 20px;
        margin: 30px 0;
    }
    
    .benefit-item {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-content h3 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .benefit-content p {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    /* Achievements */
    .achievements-list {
        margin: 30px auto;
    }
    
    .achievements-list li {
        padding: 15px 15px 15px 30px;
        font-size: 0.95em;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    /* Welcome Section */
    .welcome-description {
        font-size: 0.95em;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    /* Buttons */
    .cta-container {
        margin-top: 30px;
    }
    
    .buy-button-pro {
        width: 80%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 1em;
        margin: 0 auto;
    }
    
    /* Payment Popup */
    .payment-popup-content {
        width: 95%;
        padding: 20px 15px;
    }
    
    .payment-popup-content h2 {
        font-size: 1.6em;
    }
    
    .payment-logo-container-dlocal img {
        max-width: 180px;
    }
    
    .payment-summary-dlocal {
        padding: 15px;
    }
    
    .payment-summary-dlocal h4 {
        font-size: 1.1em;
    }
    
    .close-popup {
        top: 15px;
        right: 15px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6em;
    }
    
    .section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .countdown-item {
        padding: 0 8px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.6em;
    }
    
    .countdown-label {
        font-size: 0.65em;
    }
    
    .hero-banner-text-content h1 {
        font-size: 1.6em;
    }
    
    .hero-banner-text-content p {
        font-size: 0.9em;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-content {
        width: 100%;
    }
    
    .buy-button-pro {
        padding: 12px 15px;
        font-size: 0.9em;
        width: 100%;
    }
    
    .hero-cta-button {
        padding: 12px 15px;
        font-size: 0.9em;
        width: 100%;
        max-width: 280px;
    }
}

/* Ajustes específicos para iPhone */
@media (max-width: 390px) {
    #countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 0 5px;
    }
    
    .testimonial-card {
        padding: 15px 10px;
    }
    
    .feature-card {
        padding: 15px 10px;
    }
    
    .section-title {
        font-size: 1.5em;
    }
    
    .section-subtitle {
        font-size: 0.9em;
    }
    
    .hero-banner-text-content h1 {
        font-size: 1.5em;
    }
    
    .hero-banner-text-content p {
        font-size: 0.85em;
    }
    
    /* Xhability Pro Mockup - Mobile */
    .xhability-mockup-container {
        margin: 30px auto !important;
        max-width: 95% !important;
    }
    
    .xhability-mockup-container img {
        border-radius: 15px !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
    }
    
    /* For You Section - Mobile */
    .is-for-you-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 30px auto !important;
        padding: 0 10px !important;
    }
    
    .is-for-you-card {
        padding: 20px !important;
    }
    
    .card-image img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .card-content h3 {
        font-size: 1.2em !important;
    }
    
    .card-content p {
        font-size: 0.9em !important;
    }
}

/* Contador Regresivo - Estilo corregido */
.countdown-section {
    background: var(--gradient-cta-red);
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

.countdown-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-light);
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    color: var(--primary-light);
    padding: 5px 0;
    width: 70px;
    text-align: center;
    border: none;
    box-shadow: none;
    font-weight: bold;
}

.countdown-item span {
    display: block;
}

.countdown-item span:first-child {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.85em;
    margin-top: 5px;
    opacity: 0.9;
}

.countdown-disclaimer {
    font-size: 0.85em;
    max-width: 800px;
    margin: 10px auto 0;
    text-align: center;
    opacity: 0.9;
}

.price-container {
    text-align: center;
    margin: 40px 0;
}

.price-normal {
    font-size: 1.5em;
    text-decoration: line-through;
    color: #ff6b6b;
    display: block;
    margin-bottom: 5px;
}

.price-special {
    font-size: 5em;
    font-weight: 800;
    color: var(--primary-light);
    margin: 10px 0;
    line-height: 1;
}

.price-terms {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.is-for-you-title {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.is-for-you-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    text-align: left;
    border-left: 5px solid var(--primary-cta-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.is-for-you-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 4, 0, 0.2);
}

.is-for-you-item h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.what-you-get-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-you-get-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 4, 0, 0.2);
}

.what-you-get-item i {
    color: var(--primary-cta-red);
    font-size: 1.5em;
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-box i {
    font-size: 3.5em;
    color: var(--primary-cta-red);
    margin-bottom: 20px;
}

.guarantee-box h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.guarantee-box p {
    font-size: 1.1em;
    color: var(--text-secondary);
}

.guarantee-seal-container {
    transition: all 0.3s ease;
}

.guarantee-seal-container:hover {
    transform: scale(1.02);
    border-color: var(--primary-cta-red) !important;
    box-shadow: 0 4px 15px rgba(255, 4, 0, 0.2);
}

.guarantee-seal {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .guarantee-seal-container {
        min-width: 320px !important;
        padding: 12px 15px !important;
        font-size: 1em !important;
    }
    
    .guarantee-seal {
        width: 90px !important;
        height: 90px !important;
        right: 15px !important;
        bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .guarantee-seal-container {
        min-width: 280px !important;
        font-size: 0.9em !important;
        padding: 10px 12px !important;
    }
    
    .guarantee-seal {
        width: 70px !important;
        height: 70px !important;
        right: 10px !important;
        bottom: 10px !important;
    }
}

.program-value {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.program-value h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.program-value h3 span {
    color: var(--primary-cta-red);
}

.payment-methods-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment-methods-logos img {
    height: 30px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.payment-methods-logos img:hover {
    filter: brightness(1);
    transform: scale(1.1);
}

.payment-secure-note {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 20px;
}

.payment-secure-note i {
    color: var(--primary-cta-red);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .payment-module {
        padding: 20px 15px;
    }
    
    .payment-logo-container img {
        max-width: 180px;
    }
    
    .payment-methods-logos {
        gap: 10px;
    }
    
    .payment-methods-logos img {
        height: 25px;
    }
}

/* Programs Carousel Styles */
.programs-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1110px; /* (350px * 3) + (30px * 2) */
    margin: 40px auto;
    overflow: hidden;
    cursor: grab;
}

.programs-carousel-container:active {
    cursor: grabbing;
}

.programs-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.programs-track .course-card {
    flex: 0 0 350px;
    width: 350px;
    user-select: none;
}

@media (max-width: 1199px) {
    .programs-carousel-container {
        max-width: 730px; /* (350px * 2) + 25px */
    }
}

@media (max-width: 767px) {
    .programs-carousel-container {
        max-width: 350px;
    }

    .programs-track {
        gap: 20px;
    }

    .programs-track .course-card {
        flex: 0 0 320px;
        width: 320px;
    }
}

/* Carousel Controls Styles */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot.active {
    background: var(--primary-cta-red);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 4, 0, 0.4);
}

.carousel-dot:not(.active):hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Estilos específicos para controles de testimonios */
.testimonials-controls .carousel-dot {
    background: rgba(0, 123, 255, 0.3);
}

.testimonials-controls .carousel-dot.active {
    background: var(--primary-cta-red);
}

/* Estilos específicos para controles de programas (fondo azul) */
.programs-controls .carousel-dot {
    background: rgba(255, 255, 255, 0.4);
}

.programs-controls .carousel-dot.active {
    background: var(--primary-cta-red);
}

/* Responsive para controles */
@media (max-width: 768px) {
    .carousel-controls {
        margin-top: 20px;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 24px;
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .carousel-dots {
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dot.active {
        width: 20px;
        border-radius: 4px;
    }
}

/* Estilos para el carrusel de cursos */
.courses-carousel {
    position: relative;
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
}

.courses-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.course-card {
    background: var(--primary-blue);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-cta-red);
}

.course-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.course-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
    display: block;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.course-content {
    padding: 20px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-content h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.course-category {
    font-size: 0.9em;
    color: var(--primary-cta-red);
    font-weight: 500;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 4, 0, 0.1);
    border-radius: 20px;
    margin-top: 8px;
}

.courses-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.courses-control {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.courses-control:hover {
    background: var(--primary-cta-red);
    transform: translateY(-2px);
}

.courses-control i {
    color: var(--text-primary);
    font-size: 1.2em;
}

.courses-dots {
    display: flex;
    gap: 8px;
}

.courses-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.courses-dot.active {
    background: var(--primary-cta-red);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .course-card {
        flex: 0 0 240px;
    }
    .course-image {
        height: 140px;
    }
}

.course-card.empty-state {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.course-card.empty-state h3 {
    color: var(--text-secondary);
    font-size: 1.1em;
}

.courses-marquee-container {
    width: 100%;
    margin: 40px 0 30px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.courses-marquee {
    display: flex;
    width: max-content;
    gap: 32px;
    align-items: center;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.marquee-row-1 {
    animation-name: marquee-right;
    animation-duration: 140s;
    animation-direction: normal;
}

.marquee-row-2 {
    animation-name: marquee-left;
    animation-duration: 140s;
    animation-direction: normal;
}

@keyframes marquee-right {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes marquee-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.marquee-image {
    flex: 0 0 auto;
    width: 140px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.marquee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.marquee-image:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 24px rgba(255, 4, 0, 0.18);
}

@media (max-width: 768px) {
    .marquee-image {
        width: 100px;
        height: 64px;
    }
    .courses-marquee {
        gap: 18px;
    }
}

/* Eliminar fondo sólido para mostrar degradado */
.full-video-section,
.for-you-section,
.product-feature-section,
.welcome-section {
    background: none;
}

.floating-footer-countdown {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: linear-gradient(120deg, #ff0022, #cc001b, #ff0022 80%);
    background-size: 300% 300%;
    animation: redGradientMove 3s linear infinite;
    color: #fff;
    padding: 18px 0 14px 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18em;
    transition: transform 0.7s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.7s cubic-bezier(.68,-0.55,.27,1.55);
    opacity: 0.98;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    pointer-events: auto;
}
@keyframes redGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.floating-footer-countdown.show {
    transform: translateY(0) scale(1.04);
    opacity: 1;
    pointer-events: auto;
}
.floating-footer-countdown.hide {
    transform: translateY(120%) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.cta-animate-scroll {
    animation: bigBounceIn 1.1s cubic-bezier(.68,-0.55,.27,1.55) 1, bigPulse 1.2s 1.1s infinite, flash 1.5s 2.5s 2;
}
@keyframes bigBounceIn {
    0% { transform: scale(0.5) rotate(-8deg); opacity: 0; }
    60% { transform: scale(1.18) rotate(4deg); opacity: 1; }
    80% { transform: scale(0.92) rotate(-2deg); }
    100% { transform: scale(1) rotate(0); }
}
@keyframes bigPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,4,0,0.35); }
    70% { box-shadow: 0 0 0 24px rgba(255,4,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,4,0,0); }
}
@keyframes flash {
    0%, 100% { filter: brightness(1); }
    20%, 80% { filter: brightness(1.7); }
    40%, 60% { filter: brightness(1); }
}

.floating-cta-btn {
    position: fixed;
    right: 32px;
    bottom: 90px;
    z-index: 2100;
    background: var(--gradient-cta-red);
    color: var(--primary-light) !important;
    font-size: 1.1em;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255, 4, 0, 0.18);
    padding: 18px 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    animation: none;
    opacity: 0.98;
}
.floating-cta-btn.cta-animate {
    animation: bounceIn 1.2s cubic-bezier(.68,-0.55,.27,1.55) 1, pulse 1.5s 1.2s infinite;
}
@keyframes bounceIn {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    80% { transform: scale(0.95); }
    100% { transform: scale(1); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,4,0,0.25); }
    70% { box-shadow: 0 0 0 16px rgba(255,4,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,4,0,0); }
}
.floating-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-cta-red-dark) 0%, var(--primary-cta-red) 100%);
    color: #fff !important;
    transform: scale(1.07);
    box-shadow: 0 12px 32px rgba(255, 4, 0, 0.25);
}
@media (max-width: 768px) {
    .floating-footer-countdown {
        font-size: 1em;
        padding: 12px 0 8px 0;
    }
    .floating-cta-btn {
        right: 10px;
        bottom: 70px;
        padding: 12px 18px;
        font-size: 0.98em;
    }
}

/* Estilos para el botón de dLocal */
#dp-btn-7f2f0902-9870-4517-b779-213dfc325166 button,
#dp-btn-7f2f0902-9870-4517-b779-213dfc325166 a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--gradient-cta-red) !important;
    color: var(--primary-light) !important;
    padding: 18px 28px !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 1.15em !important;
    text-transform: uppercase !important;
    font-family: 'Outfit', sans-serif !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    box-shadow: 0 8px 20px rgba(255, 4, 0, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    letter-spacing: 0.01em !important;
}
#dp-btn-7f2f0902-9870-4517-b779-213dfc325166 button:hover,
#dp-btn-7f2f0902-9870-4517-b779-213dfc325166 a:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px rgba(255, 4, 0, 0.4) !important;
}
#dp-btn-7f2f0902-9870-4517-b779-213dfc325166 button::before,
#dp-btn-7f2f0902-9870-4517-b779-213dfc325166 a::before {
    content: '\26A1';
    font-family: 'Font Awesome 5 Free', 'FontAwesome', Arial, sans-serif;
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.1em;
    color: var(--primary-light);
    display: inline-block;
    vertical-align: middle;
}
#dp-btn-7f2f0902-9870-4517-b779-213dfc325166 button span,
#dp-btn-7f2f0902-9870-4517-b779-213dfc325166 a span {
    font-weight: 800 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.15em !important;
    color: var(--primary-light) !important;
    letter-spacing: 0.01em !important;
}
@media (max-width: 768px) {
    #dp-btn-7f2f0902-9870-4517-b779-213dfc325166 button,
    #dp-btn-7f2f0902-9870-4517-b779-213dfc325166 a {
        width: 100% !important;
        min-width: auto !important;
        padding: 12px 10px !important;
        font-size: 1em !important;
    }
}

/* Payment Module Styles */
.payment-module {
    max-width: 550px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
}

.payment-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    padding: 10px 0;
}

.payment-logo-container img {
    /* Reset styles from previous attempts */
    background: transparent;
    padding: 0;
    filter: none;
    
    /* Sizing */
    max-width: 200px;
    height: auto;
    
    /* Shape & Professional look */
    border-radius: 16px; /* A modern, rounded rectangle */
    border: 1px solid rgba(255, 255, 255, 0.05); /* very subtle border */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 0 1px 4px rgba(0,0,0,0.1); /* Deeper, more professional shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-logo-container img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0,0,0,0.15);
}

.payment-description {
    font-size: 1em;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.payment-summary h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-light);
    font-size: 1.25em;
    margin-top: 0;
    margin-bottom: 15px;
}

.payment-summary p {
    font-size: 1em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-align: left;
}

.payment-methods-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment-methods-logos img {
    height: 30px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.payment-methods-logos img:hover {
    filter: brightness(1);
    transform: scale(1.1);
}

.payment-secure-note {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 20px;
}

.payment-secure-note i {
    color: var(--primary-cta-red);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .payment-module {
        padding: 20px 15px;
    }
    
    .payment-logo-container img {
        max-width: 180px;
    }
    
    .payment-methods-logos {
        gap: 10px;
    }
    
    .payment-methods-logos img {
        height: 25px;
    }
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.1) 0%, rgba(26, 26, 46, 0) 70%);
    z-index: 0;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.whatsapp-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 600px;
}

.whatsapp-text {
    margin-bottom: 35px;
}

.whatsapp-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-light);
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

.whatsapp-text p {
    font-size: 1.6em;
    color: var(--primary-light);
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.whatsapp-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.whatsapp-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    color: var(--primary-light) !important;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1ebe57 0%, #25d366 100%);
    z-index: -1;
    transition: transform 0.3s ease;
}

.whatsapp-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta-button:hover::before {
    transform: scaleX(-1);
}

.whatsapp-cta-button i {
    margin-right: 12px;
    font-size: 1.2em;
}

.whatsapp-icon {
    flex: 0 0 auto;
    font-size: 10em;
    color: #25d366;
    opacity: 0.9;
    animation: whatsappPulse 2s infinite;
    filter: drop-shadow(0 8px 16px rgba(37, 211, 102, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Responsive WhatsApp Section */
@media (max-width: 768px) {
    .whatsapp-section {
        padding: 60px 0;
    }
    
    .whatsapp-content {
        flex-direction: column;
        gap: 50px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .whatsapp-left-content {
        order: 2;
        max-width: 100%;
    }
    
    .whatsapp-text {
        margin-bottom: 30px;
    }
    
    .whatsapp-text h2 {
        font-size: 2.5em;
        line-height: 1.2;
    }
    
    .whatsapp-text p {
        font-size: 1.3em;
    }
    
    .whatsapp-cta-button {
        padding: 16px 30px;
        font-size: 1.1em;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .whatsapp-icon {
        font-size: 7em;
        order: 1;
    }
}

@media (max-width: 480px) {
    .whatsapp-text h2 {
        font-size: 2em;
    }
    
    .whatsapp-text p {
        font-size: 1.1em;
    }
    
    .whatsapp-cta-button {
        padding: 14px 25px;
        font-size: 1em;
    }
    
    .whatsapp-icon {
        font-size: 6em;
    }
}

/* Payment Form Styles */
.payment-form {
    margin-bottom: 30px;
}

.payment-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.payment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.95em;
}

.payment-form .form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--primary-light);
    font-size: 1em;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.payment-form .form-control:focus {
    outline: none;
    border-color: var(--primary-cta-red);
    box-shadow: 0 0 0 2px rgba(255, 4, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.payment-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.payment-form .buy-button-pro {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Validación del formulario */
.payment-form .form-control:invalid:not(:placeholder-shown) {
    border-color: var(--primary-red);
}

.payment-form .form-control:valid:not(:placeholder-shown) {
    border-color: var(--primary-cta-red);
}

@media (max-width: 768px) {
    .payment-form {
        margin-bottom: 20px;
    }
    
    .payment-form .form-group {
        margin-bottom: 15px;
    }
    
    .payment-form .form-control {
        padding: 10px 12px;
        font-size: 0.95em;
    }
}

/* Estilos para la nueva sección de 'Incertidumbre' */
#xhability-pro-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
}

#xhability-pro-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

#xhability-pro-section .col-lg-6.text-center {
    text-align: center;
}

#xhability-pro-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

#xhability-pro-section .section-title-small {
    font-size: 1.9em;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
    text-align: center;
    color: var(--text-primary);
}

#xhability-pro-section .list-icon {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

#xhability-pro-section .list-icon li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.2em;
    color: var(--text-primary);
    line-height: 1.5;
}

#xhability-pro-section .list-icon-check.list-icon-colored li::before {
    content: '×';
    font-family: Arial, sans-serif;
    color: white;
    background-color: var(--primary-cta-red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    font-size: 16px;
}

#xhability-pro-section .lead {
    font-size: 2em;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

#xhability-pro-section .text-warning {
    color: var(--highlight-yellow) !important;
    font-size: 2.2em;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ---------- NUEVOS ESTILOS PROGRESS SECTION ---------- */
.highlight-green {
    background-color: #31ca6b;
    color: var(--primary-dark);
    padding: 0 5px;
}
#progress-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
}
#progress-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
#progress-section .col-lg-6.text-center {
    text-align: center;
}
#progress-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
#progress-section .section-title {
    font-size: 2.7em;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 45px;
    text-align: center;
}
#progress-section .features-list li {
    font-size: 1.2em;
    margin-bottom: 18px;
}
@media (max-width: 991px) {
    #progress-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #progress-section .col-lg-6:first-child { margin-bottom: 40px; }
    #progress-section .section-title { font-size: 2.2em; }
}

/* Media query for responsive design */
@media (max-width: 991px) {
    #xhability-pro-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #xhability-pro-section .col-lg-6:first-child {
        margin-bottom: 40px;
        text-align: center;
    }

    #xhability-pro-section .section-title-small,
    #xhability-pro-section .list-icon,
    #xhability-pro-section .lead,
    #xhability-pro-section .text-warning {
        text-align: center;
    }
     #xhability-pro-section .list-icon li {
        padding-left: 0; /* Remove padding for centered text */
        display: block; /* Ensure it takes full width */
    }

    #xhability-pro-section .list-icon-check.list-icon-colored li::before {
        display: none; /* Hide custom bullet on mobile if centered */
    }
}

/* ---------- NUEVOS ESTILOS INSTRUCTOR SECTION ---------- */
#instructor-section .instructor-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    max-width: 900px;
    margin: 40px auto 0;
}

#instructor-section .instructor-photo {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    max-width: 200px;
    margin-right: 40px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--highlight-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#instructor-section .instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#instructor-section .instructor-content {
    flex: 1;
    min-width: 300px;
}

#instructor-section .instructor-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-light);
    margin-top: 0;
    margin-bottom: 15px;
}

#instructor-section .instructor-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

#instructor-section .cta-container {
    margin-top: 30px;
    text-align: left;
}

@media (max-width: 767px) {
    #instructor-section .instructor-wrap {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }
    #instructor-section .instructor-photo {
        margin-right: 0;
        margin-bottom: 30px;
    }
    #instructor-section .instructor-content h3 {
        font-size: 1.8em;
    }
    #instructor-section .instructor-content p {
        font-size: 1em;
    }
    #instructor-section .cta-container {
        text-align: center;
    }
}

/* ---------- ESTILOS PARA EL ACORDEÓN DE FAQ ---------- */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-light);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question i {
    font-size: 1em;
    transition: transform 0.3s ease-in-out;
}

.faq-question.active i {
    transform: rotate(45deg);
    color: var(--primary-cta-red);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    text-align: left;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1.05em;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .faq-answer p {
        font-size: 1em;
        padding-bottom: 15px;
    }
}



/* Pricing section layout */
#pricing-section .pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

#pricing-section .pricing-card {
    position: relative;
    flex: 1 1 360px;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

#pricing-section .pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

#pricing-section .pricing-header h3 {
    margin: 0;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--highlight-yellow);
    color: #0f1220;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 1.1em;
}

#pricing-section .price {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-light);
}

#pricing-section .pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#pricing-section .pricing-card .pricing-features li {
    font-size: 1.05em;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#pricing-section .pricing-card .pricing-features i {
    color: var(--primary-cta-red);
    margin-top: 4px;
}

#pricing-section .pricing-card .badge {
    position: absolute;
    top: 18px;
    right: 24px;
    background: var(--highlight-yellow);
    color: #0f1220;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.6px;
}

#pricing-section .pricing-card.recommended {
    border-color: var(--highlight-yellow);
    box-shadow: 0 18px 45px rgba(248, 231, 28, 0.18);
}

#pricing-section .pricing-card.recommended .pricing-header h3 {
    box-shadow: 0 8px 20px rgba(248, 231, 28, 0.25);
}

@media (max-width: 991px) {
    #pricing-section .pricing-card {
        flex: 1 1 100%;
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    #pricing-section .pricing-grid {
        flex-direction: column;
        gap: 24px;
    }

    #pricing-section .pricing-card {
        padding: 28px 24px;
    }

    #pricing-section .pricing-card .badge {
        position: static;
        align-self: center;
        margin-bottom: 10px;
    }

    #pricing-section .pricing-header {
        gap: 10px;
    }
}


