html {
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

:root {
    --bg-dark: #00281A;
    --primary-green: #004b36;
    --neon-green: #00FFCC;
    --text-light: #FFF5EC;
    --text-dark: #333333;
    --orange: #FF9C1A;
    --orange-hover: #e68c17;
    --border-color: rgba(255, 255, 255, 0.08);
    --card-bg: linear-gradient(158deg, #011D13 4.17%, #01281A 94.14%);
    /* Variables para el cursor dinámico (actualizadas por JS) */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

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

body {
    cursor: default;
    font-family: 'Albert Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .dark-section {
        overflow-x: hidden;
    }
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 0;
    /* Sin padding para que el logo llegue a la esquina */
    border-radius: 0 0 24px 24px;
    position: relative;
    z-index: 10;
}

.header .container {
    max-width: 100%;
    /* Permitir que ocupe todo el ancho */
    padding: 0;
}

.logo {
    display: block;
    line-height: 0;
}

.logo img {
    display: block;
    height: auto;
}

.logo-desktop {
    display: block !important;
    border-radius: 0 0 0 24px;
}

.logo-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none !important;
    }

    .logo-mobile {
        display: block !important;
        padding: 5px;
        padding-left: 20px;
    }
}

/* Dark Sections con Spotlight */
.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0;
    position: relative;
    /* overflow-x removido para no romper sticky en desktop */
}

/* Hero Section */
.hero {
    height: 100vh;
    margin-top: -63px;
    overflow: hidden;
}

.hero-sticky {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-container {
    position: relative;
    display: block;
    height: 100%;
    z-index: 1;
    text-align: center;
}

.hero-title {
    position: absolute;
    top: calc(63px + 5vh);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 60px;
    font-size: clamp(40px, 5.5vh, 68px);
    font-weight: 600;
    letter-spacing: -1px;
    color: #ffffff;
}

/* Wrapper that stacks tagline y hero-content verticalmente */
.hero-reveal-wrapper {
    position: absolute;
    top: calc(33vh + 3vh);
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4px, 1vh, 12px) 0;
}

.tagline-sharp {
    font-size: clamp(36px, 6vh, 65px);
    font-weight: 700;
    color: #00281A;
    line-height: 1.1;
    text-align: center;
    margin: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin-top: clamp(4px, 1vh, 16px);
}

.hero-subtitle {
    font-size: clamp(36px, 6vh, 62px);
    font-weight: 600;
    color: #FFF5EC;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.30),
        0 0 16px rgba(255, 255, 255, 0.30),
        0 0 12px rgba(255, 255, 255, 0.30);
    line-height: 1.212;
    text-align: center;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: clamp(12px, 2.5vh, 40px);
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        margin-top: 0;
        overflow: hidden;
        /* Evitar desbordamiento por video */
    }

    .hero-sticky {
        height: auto;
        position: relative;
        padding: 100px 20px 60px 20px;
        overflow: hidden;
    }

    .hero-container {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .hero-title {
        position: static;
        font-size: 26px;
        margin-bottom: 30px;
        padding: 0;
        bottom: auto;
    }

    .hero-reveal-wrapper {
        position: static;
        top: auto;
        min-height: auto;
    }

    .hero-tagline {
        display: none !important;
        /* Eliminado en móvil por petición */
    }

    .hero-content {
        margin-top: 0;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    .hero-text-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-subtitle {
        font-size: 30px;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-description {
        font-size: 15px;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (min-width: 601px) {
    .hero-actions {
        flex-direction: row;
    }
}

.btn-hero {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
}

/* Tax Toggle Switch */
.tax-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border: 1px solid #FFF5EC;
    transition: .4s;
    border-radius: 12px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 1px;
    top: 1px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #FF9C1A;
    border-color: #FFF5EC;
}

input:checked+.slider:before {
    transform: translateX(16px);
    background-color: white;
}

.tax-label {
    font-size: 16px;
    color: #FFF5EC;
    font-weight: 500;
}

/* Features Section */
.section-title {
    text-align: center;
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title.dark-text {
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }
}

.feature-card {
    cursor: default;
    background: var(--card-bg);
    border: 8px solid var(--border-color);
    /* Grosor base siempre constante */
    border-radius: 40px;
    padding: 30px;
    transition: border-color 0.3s ease;
    position: relative;
    /* overflow: hidden; -- lo quitamos si queremos que el brillo se expanda un poco? No, mejor mantenerlo para el spotlight interno */
    overflow: hidden;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.25); /* Esto crea un aura de luz verde alrededor de toda la caja */
}

@media (max-width: 768px) {
    .feature-card {
        border-width: 2.5px;
        padding: 24px;
        border-radius: 30px;
    }

    .feature-card:hover {
        border-color: var(--neon-green);
    }

    .feature-card::before,
    .feature-card::after {
        display: none !important;
    }
}

/* El borde fino iluminado (Parte interna del borde grueso) */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 32px;
    /* CAMBIO: Subimos la opacidad del color de 0.6 a 1 y reducimos el difuminado al 60% para que el borde sea más nítido */
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
        radial-gradient(400px circle at var(--card-mouse-x) var(--card-mouse-y), rgba(0, 255, 204, 1), transparent 60%) border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Resplandor interno dinámico que ilumina el texto */
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* CAMBIO: Subimos la opacidad de 0.2 a 0.45 para que inunde más la tarjeta de luz */
    background: radial-gradient(500px circle at var(--card-mouse-x) var(--card-mouse-y), rgba(0, 255, 204, 0.45), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 12px;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.85) 24.33%, rgba(255, 255, 255, 0.70) 67.21%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    /* Title is visible but no glow initially */
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.6), 0 0 30px rgba(0, 255, 204, 0.3);
}

.feature-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
}

@media (max-width: 768px) {
    .feature-card h3 {
        font-size: 24px;
        text-shadow: none !important;
    }

    .feature-card p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: none !important;
    }
}

.mt-40 {
    margin-top: 40px;
}

/* Steps Section con Efecto Neón (Sequential Sticky) */
.steps-scroll-section {
    position: relative;
    background-color: var(--bg-dark);
    border-radius: 0 0 24px 24px;
    z-index: 1;
}

.steps-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centrar el contenido verticalmente en el vh */
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

.steps-sticky .section-title {
    color: #FFF5EC;
    margin-bottom: 0;
    /* Ajuste para el wrapper */
}

@media (max-width: 768px) {
    .steps-scroll-section {
        height: auto;
        padding-bottom: 60px;
    }

    .steps-sticky {
        height: auto;
        position: relative;
        padding: 40px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .steps-sticky .section-title {
        width: 100%;
        text-align: center;
    }

    .steps-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
        margin-top: 20px;
        width: 100%;
        overflow-x: hidden;
    }

    .step-container {
        opacity: 1 !important;
        transform: none !important;
        max-width: 100%;
        min-width: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-content {
        opacity: 1 !important;
        transform: none !important;
    }

    .step-svg {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(0, 255, 204, 0.6)) !important;
        transform: none !important;
    }

    .step-number {
        fill: #fff !important;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) !important;
    }

    /* Asegurar que el contenido no desborde */
    .step-content {
        width: 100%;
        max-width: 320px;
        /* Limitar texto para evitar que toque bordes */
        margin: 0 auto;
        padding: 0 12px;
    }

    .step-connector-svg,
    .step-line-container {
        display: none !important;
    }
}

/* Estilos de Escritorio Protegidos */
@media (min-width: 769px) {
    .steps-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        margin: 40px 0 60px 0;
        flex-wrap: nowrap;
        width: 100%;
    }

    .step-container {
        flex: 1;
        min-width: 240px;
        max-width: 260px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .step-icon-wrapper {
        width: 100%;
        max-width: 220px;
        /* Centrado claro */
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .step-connector-svg {
        flex: 0 0 160px;
        height: 48px;
        margin-top: 18px;
        margin-left: -50px;
        margin-right: -50px;
        z-index: 1;
        mix-blend-mode: color-dodge;
        transition: all 0.5s ease;
        --con-stop-1: #D2D2D2;
        --con-stop-2: #898787;
        --con-stop-3: transparent;
        opacity: 0;
        pointer-events: none;
    }

    .step-visible-1 #step-1-container .step-icon-wrapper,
    .step-visible-2 #step-2-container .step-icon-wrapper,
    .step-visible-3 #step-3-container .step-icon-wrapper {
        transform: scale(1.05);
    }
}

/* Estilos Comunes y Ajustes Mobile */
.step-icon-wrapper {
    height: 183px;
    width: auto;
    position: relative;
    /* Tamaño contenido para mobile */
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 279 / 188;
    /* Relación de aspecto del SVG original para mantener espacio físico */
}

/* Imágenes de las lámparas */
.step-img-off,
.step-img-on {
    width: 125%;
    height: 125%;
    object-fit: contain;
    position: absolute;
    top: -15px;
    left: -28px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.step-img-off {
    opacity: 1;
}

.step-img-on {
    opacity: 0;
}

.step-content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 0 10px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #FFF5EC;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: #FFF5EC;
    line-height: 1.5;
}

/* Connectors - PNG Style */
.step-connector-img {
    flex: 0 0 120px;
    height: 48px;
    margin-top: 30px;
    margin-left: -70px;
    margin-right: -70px;
    z-index: 1;
    mix-blend-mode: color-dodge;
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
    object-fit: contain;
    width: 180px;
}

/* (Control de visibilidad consolidado en el bloque mobile) */

/* Estilos de lámpara encendida (Active States) */
.step-visible-1 #step-1-container .step-img-off,
.step-visible-2 #step-2-container .step-img-off,
.step-visible-3 #step-3-container .step-img-off {
    opacity: 0;
}

.step-visible-1 #step-1-container .step-img-on,
.step-visible-2 #step-2-container .step-img-on,
.step-visible-3 #step-3-container .step-img-on {
    opacity: 1;
}

.step-visible-1 #step-1-container .step-content,
.step-visible-2 #step-2-container .step-content,
.step-visible-3 #step-3-container .step-content {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (min-width: 601px) {

    .step-visible-2 #connector-1,
    .step-visible-3 #connector-2 {
        opacity: 1;
    }
}


.step-visible-1 #step-1-container .step-icon-wrapper,
.step-visible-2 #step-2-container .step-icon-wrapper,
.step-visible-3 #step-3-container .step-icon-wrapper {
    transform: scale(1.05);
}

/* --- Animations for Hero Sequence --- */

/* --- Animations for Hero Sequence (Scroll Based) --- */

#hero-video {
    position: absolute;
    top: -34vh;
    left: 0;
    width: 100%;
    height: 134vh;
    object-fit: cover;
    object-position: center 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-text-reveal {
    margin-bottom: clamp(4px, 1.5vh, 20px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

/* Spotlight effect only for Features section */
.features.dark-section {
   background-image: none;
}

.features.dark-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none; /* ¡Vital! Si no pones esto, la luz bloqueará los clics en los botones y tarjetas */
    z-index: 10; /* La ponemos por encima del contenido */
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 255, 204, 0.20), /* Subimos un poco la opacidad de 0.07 a 0.20 */
            transparent 50%);
    mix-blend-mode: screen; /* Esto hace que actúe como una luz real sumándose a los colores base */
}

/* Buttons */
.center-btn {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 601px) {
    .center-btn {
        margin-top: 40px;
    }
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--orange);
    color: #FFF5EC;
}

.btn-primary:hover {
    background-color: var(--orange-hover);
    transform: scale(1.02);
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding: 80px 0 20px 0;
    border-radius: 0 0 24px 24px;
    position: relative;
    z-index: 2;
}

.faq-subtitle {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 32px;
    font-size: 18px;
    color: #00402A;
}

.accordion-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 80px;
    width: 100%;
    overflow: hidden;
}

.accordion-btn {
    background-color: #00402A;
    color: var(--text-light);
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-btn:hover {
    background-color: #003627;
}

.accordion-btn .icon {
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s;
}

.accordion-btn.active .icon {
    transform: rotate(45deg);
}

.accordion-panel {
    background-color: #00402A;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-radius: 0 0 6px 6px;
}

.accordion-panel.active-panel {
    margin-top: -6px;
    padding-top: 6px;
}

.accordion-panel p {
    padding: 0 20px 0 20px;
    margin: 0 0 6px 0;
    font-size: 13px;
    color: #FFF5EC;
}

.accordion-panel p:last-child {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.accordion-list {
    padding: 4px 20px 8px 40px;
    margin: 0;
    color: #FFF5EC;
    font-size: 13px;
    list-style: disc;
}

.accordion-list li {
    margin-bottom: 4px;
}

/* Legal text */
.legal-conditions {
    overflow: hidden;
    /* Evitar que el grid desborde en Chrome */
}

.legal-conditions h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.legal-text-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    font-size: 12px;
    color: #5B5959;
    margin-bottom: 25px;
    text-align: justify;
    width: 100%;
    overflow: hidden;
    line-height: normal;
}

.legal-links {
    list-style: none;
    font-size: 11px;
}

.legal-links li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #2F6852;
    text-align: center;
    font-family: "Albert Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #00402A;
    color: #ffffff;
    padding: 60px 0 40px;
    margin-top: -24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Seguir la norma de contención */
}

.footer-logo-row {
    margin-bottom: 24px;
    text-align: left;
}

.footer-main-logo {
    width: 145px;
    height: auto;
}

.footer-social-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    transition: transform 0.2s ease;
    display: flex;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons svg {
    display: block;
}


.trustpilot-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.trustpilot-score {
    font-size: 24px;
    font-weight: 600;
    transform: translateY(2px);
    /* Pequeño ajuste para alinear el número con la base del texto del logo */
}

.trustpilot-footer img {
    max-width: 134px;
    width: 100%;
    height: auto;
}

.trustpilot-footer:hover {
    opacity: 0.8;
}

.star-icon {
    width: 22px;
    height: 22px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
}

.footer-bottom {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}


/* VIP Plan Section */
.vip-plan {
    padding: 100px 0;
}

.vip-card {
    background: var(--card-bg);
    border: 8px solid var(--border-color);
    border-radius: 45px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    /* overflow: hidden removido para permitir que el resplandor de los bordes se vea fuera */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vip-card:hover {
    box-shadow: 0 0 50px rgba(0, 255, 204, 0.1);
}

/* Ocultamos las capas de brillo por defecto y las mostramos en hover */
.vip-glow-layers {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vip-card:hover .vip-glow-layers {
    opacity: 1;
}

/* Nueva capa super brillante para el centro */
.vip-card::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    /* Mucho más corta, solo en el centro */
    height: 20px;
    /* Un poco más alta */

    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(160, 255, 226, 0.4) 60%,
            rgba(1, 215, 149, 0) 100%);
    filter: blur(3px);
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    /* Para que quede por encima de la barra principal */
}

.vip-card:hover::before {
    opacity: 1;
}

.vip-card::after {
    content: "";
    position: absolute;
    bottom: -6px;
    /* Justo en el borde de la tarjeta */
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 15px;
    /* Gradiente vertical: verde oscuro -> verde claro -> blanco -> verde claro -> verde oscuro */
    background: linear-gradient(to bottom,
            rgba(1, 215, 149, 0) 0%,
            rgba(160, 255, 226, 0.8) 30%,
            rgba(255, 255, 255, 1) 50%,
            rgba(160, 255, 226, 0.8) 70%,
            rgba(1, 215, 149, 0) 100%);
    border-radius: 50%;
    /* Mantener la forma concentrada en el centro */
    filter: blur(3px);
    /* Muy nítido para que se vea el blanco del centro */
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.vip-card:hover::after {
    opacity: 1;
}

/* Uniform glow for VIP card - no longer tracking mouse */
.vip-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.vip-card:hover .vip-card-glow {
    opacity: 1;
}

/* --- Capas de Brillo Complejo (Figma) --- */
.vip-glow-layers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.glow-frame {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    mix-blend-mode: screen;
    pointer-events: none;
}

.glow-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: linear-gradient(to right, #01D795, #A0FFE2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.glow-frame-1 {
    filter: blur(1px);
}

.glow-frame-1::before {
    padding: 2px;
}

.glow-frame-2 {
    filter: blur(10px);
}

.glow-frame-2::before {
    padding: 4px;
}

.glow-frame-3 {
    filter: blur(37.5px);
}

.glow-frame-3::before {
    padding: 8px;
}

.glow-frame-4 {
    filter: blur(112.5px);
}

.glow-frame-4::before {
    padding: 32px;
}

.glow-ellipses {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.glow-ellipse {
    position: absolute;
    background: #A0FFE2;
    mix-blend-mode: screen;
    bottom: -10px;
    /* Un poco fuera para que el brillo suba desde la base */
}

.glow-ellipse-5 {
    width: 700px;
    height: 30px;
    border-radius: 1045.583px;
    filter: blur(30.5px);
}

.vip-card-text {
    flex: 1;
}

.vip-title {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.85) 24.33%, rgba(255, 255, 255, 0.70) 67.21%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    /* Title is visible but no glow initially */
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.vip-card:hover .vip-title {
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.30), 0 0 16px rgba(255, 255, 255, 0.30), 0 0 12px rgba(255, 255, 255, 0.30);
}

.vip-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 440px;
    transition: color 0.5s ease;
    position: relative;
    z-index: 1;
}

.vip-card:hover .vip-description {
    color: rgba(255, 255, 255, 1);
}

.vip-card-image {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.vip-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    overflow: hidden;
    /* Asegurar que la imagen respete su propio radio */
}

/* Responsive VIP Plan */
@media (max-width: 768px) {
    .vip-plan {
        overflow: hidden;
    }

    .vip-card {
        flex-direction: column;
        padding: 32px;
        text-align: center;
        gap: 32px;
        border-width: 8px;
        border-radius: 45px;
        overflow: hidden;
        margin-top: 0;
    }

    .vip-card-image {
        justify-content: center;
        order: 3;
    }

    .vip-card-text {
        order: 1;
    }
}

/* MEDIA QUERIES PARA ADAPTACIÓN (MOBILE-FIRST SCALE UP) */

@media (min-width: 601px) {

    .steps-flex {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }

    .step-line-container {
        max-width: 100px;
        height: 20px;
        margin: 0 -10px;
        width: auto;
    }

    .step-line {
        width: 100%;
        height: 100%;
    }

    .legal-text-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 768px) {

    .vip-plan,
    .features,
    .dark-section,
    .steps-scroll-section,
    .hero,
    .footer {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    .glow-ellipse-5 {
        max-width: 100%;
    }

    #hero-video {
        display: none;
    }

    .footer-social-meta-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

@media (min-width: 801px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .accordion-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* Legal section between hero and VIP */
.legal-hero-section {
    background-color: #01281A;
    color: #ffffff;
    padding: 40px 0;
}

.legal-hero-section .legal-conditions h3 {
    color: #ffffff;
}

.legal-hero-section .legal-conditions p {
    color: rgba(255, 255, 255, 0.8);
}

.legal-hero-section .legal-links a {
    color: #ffffff;
}

.legal-hero-section .legal-links li {
    color: #ffffff;
}