* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00BCD4;
    --primary-dark: #00ACC1;
    --dark: #2c3e50;
    --gray: #5a6c7d;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--gray);
    background: white;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

/* HEADER */
header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.logo-text {
    color: var(--primary);
}

.logo-subtext {
    color: #adb5bd;
    font-weight: 300;
    margin-left: 5px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* HERO */
.hero {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.badge {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* SERVICES GRID */
.services-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* SVG Services Grid */
.services-grid-svg {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-svg-card {
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.service-svg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-svg-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #e8f8fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.service-svg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-svg-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-svg-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #e8f8fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* PROMO SECTION */
.promo-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.promo-banner {
    text-align: center;
    margin-bottom: 50px;
}

.promo-banner img {
    max-width: 300px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.plan-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.plan-content {
    padding: 25px;
}

.plan-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.plan-content p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* SPEEDTEST CTA */
.speedtest-banner {
    background: #1e293b;
    color: white;
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
}

.speedtest-banner h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.speedtest-banner p {
    color: #cbd5e1;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.speedtest-banner .btn {
    background: white;
    color: #1e293b;
    font-weight: 700;
}

/* FORM */
.form-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    font-family: 'Lato', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-message {
    margin: 15px 0;
    padding: 12px;
    border-radius: 8px;
    display: none;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.submit-btn:disabled {
    background: #adb5bd;
    cursor: not-allowed;
}

/* FOOTER */
footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: 0.3s;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.copyright {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    color: white;
    font-size: 28px;
    transition: 0.3s;
    text-decoration: none;
    /* Removed underline */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA5A;
}

/* SPEEDTEST MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    /* Permite scroll si el contenido es largo */
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: transparent;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: fixed;
    /* 👈 Cambiado a fixed para que no desaparezca al hacer scroll */
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: white;
    background: #00BCD4;
    /* 👈 Color primario para que resalte */
    border: none;
    cursor: pointer;
    z-index: 10100;
    /* 👈 Por encima del modal-content */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.close-modal:active {
    transform: scale(0.9);
}

/* Integrated SpeedTest Styles - Professional Design */
.speedtest-modal-content {
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
    max-width: 600px;
}

.speedtest-integrated {
    width: 100%;
    min-height: 650px;
    padding: 30px 20px;
    color: white;
}

.speedtest-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.speedtest-container .header h1 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: white;
    letter-spacing: 2px;
}

/* Gauge Design */
.speed-gauge-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.speed-gauge-circle {
    position: relative;
    width: 240px;
    height: 240px;
}

.gauge-svg {
    width: 100%;
    height: 100%;
}

.gauge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.speed-number {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: #00d9ff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.speed-label {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    letter-spacing: 2px;
}

/* Logo */
.speedtest-logo {
    text-align: center;
    margin: 30px 0;
}

.speedtest-logo img {
    max-width: 250px;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

/* Status */
.test-status {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 25px 0;
    min-height: 30px;
    font-weight: 300;
}

/* Results */
.speed-results {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.speed-results.show {
    display: grid;
}

.result-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.result-icon {
    font-size: 1.5rem;
    color: #00d9ff;
    margin-bottom: 10px;
}

.result-info {
    text-align: center;
}

.result-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-weight: 600;
}

.result-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

/* Button */
.test-button {
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    letter-spacing: 1px;
    margin-top: 10px;
}

.test-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.test-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Botón Finalizar Extra */
.finish-btn-v2 {
    background: #00BCD4;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    margin-top: 25px;
    display: none;
    /* Se activa por JS */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .speed-gauge-circle {
        width: 200px;
        height: 200px;
    }

    .speed-number {
        font-size: 3.5rem;
    }

    .speed-results {
        grid-template-columns: 1fr;
    }


    .speedtest-logo img {
        max-width: 200px;
    }
}



/* RESPONSIVE */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-svg {
        grid-template-columns: repeat(3, 1fr);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
        /* 👈 Padding reducido para que no sea tan alto */
    }

    .logo {
        font-size: 1.2rem;
        /* 👈 Logo un poco más chico */
    }

    .logo i {
        font-size: 1.4rem;
    }

    .header-flex {
        flex-direction: column;
        gap: 8px;
        /* 👈 Espacio entre logo y botones reducido */
    }

    .header-buttons .btn {
        padding: 6px 15px;
        /* 👈 Botones más compactos */
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-svg {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .service-svg-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .service-svg-card {
        padding: 12px 8px;
    }

    .service-svg-card h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .service-svg-card p {
        display: none;
        /* Hide descriptions on very small screens to fit 3 per row */
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .speedtest-banner {
        padding: 30px 20px;
    }

    .form-wrapper {
        padding: 25px;
    }

    .modal-content {
        width: 95%;
        max-width: 95%;
    }

    #speedTestContainer {
        min-height: 500px;
    }

    #speedTestContainer iframe {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .logo-subtext {
        display: inline-block;
        /* 👈 Vuelve a ser visible */
        font-size: 0.8rem;
        /* 👈 Un poco más chico para que entre bien */
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
    }

    .header-buttons .btn {
        flex: 1;
        /* 👈 Botones reparten el ancho pero son petisos */
        justify-content: center;
        padding: 5px 10px;
    }
}

/* Custom Native Speedtest Styles */
.speedtest-ui {
    text-align: center;
    color: #2c3e50;
    max-width: 600px;
    margin: 0 auto;
}

.gauge-section {
    position: relative;
    width: 280px;
    height: 140px;
    margin: 0 auto 30px;
    overflow: hidden;
}

.gauge-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    background: #f0f0f0;
    border-radius: 50%;
}

.gauge-arc {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 20px solid #e0e0e0;
    border-top-color: var(--primary);
    /* Blue top */
    border-right-color: var(--primary);
    transform: rotate(-135deg);
    /* Start position */
    transition: transform 0.2s ease-out;
}

.gauge-value {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
}

#currentSpeed {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.gauge-value small {
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
}

.test-status {
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stats-panel {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 140px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-info {
    text-align: left;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-unit {
    font-size: 0.8rem;
    color: #999;
}

/* Image Modal Specifics */
/* Custom Image Modal */
.custom-image-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black background */
    align-items: center;
    justify-content: center;
}

.custom-image-modal.active {
    display: flex;
    /* Show when active */
}

.custom-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

#modalImage {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    margin: auto;
    border-radius: 8px;
    object-fit: contain;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

#closeImageModalBtn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

#closeImageModalBtn:hover,
#closeImageModalBtn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* --- NEW SECTIONS STYLES --- */

/* Video Section */
.video-container {
    padding: 40px 0 20px;
    background: #f8f9fa;
}

.video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    max-width: 1000px;
    /* Constrain width */
    margin: 0 auto;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pospago Section */
.pospago-section {
    background: #fafafa;
    padding: 50px 0;
}

.pospago-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Increased gap */
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pospago-image img {
    width: 100%;
    max-width: 450px;
    /* Limit image size */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sub-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pospago-content h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.pospago-content h2 .highlight-text {
    font-weight: 700;
    color: #000;
}

.large-text {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 30px;
}

.pospago-icons img {
    max-width: 350px;
    /* Constrain icons width */
    height: auto;
}

/* Pospago CTA Addition */
.pospago-cta-box {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(142, 45, 226, 0.15);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.pospago-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #4A00E0, #8E2DE2);
}

.pulse-badge-small {
    background: linear-gradient(90deg, #4A00E0, #8E2DE2);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    animation: pulseViolet 2s infinite;
    display: inline-block;
    margin-bottom: 12px;
}

.offer-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}

.offer-desc strong {
    color: #8E2DE2;
    font-weight: 800;
}

.mt-4 { margin-top: 1.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }

/* Flow Section */
.flow-section {
    background: linear-gradient(135deg, #2d8b8d 0%, #4ecdc4 100%);
    color: white;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.flow-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    /* Give more space to image */
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    /* Allow container to be wider */
    margin: 0 auto;
}

.sub-title-light {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.flow-content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.2;
}

.flow-brand {
    font-weight: 800;
}

.flow-content-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 100%;
}

.flow-partners img {
    max-width: 350px;
    /* Constrain partners */
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    /* Make icons white if they aren't already */
}

.flow-price {
    margin-bottom: 30px;
}

.flow-price small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffda00;
    line-height: 1.1;
    margin: 5px 0;
}

.flow-promo-banner img {
    max-width: 200px;
    /* Smaller promo banner */
    transform: rotate(-3deg);
    transition: transform 0.3s;
    background: #ffda00;
    /* Add yellow bg if transparent png needs pop, or remove if not needed */
    padding: 5px;
    border-radius: 8px;
    /* Style visual aid */
    background: none;
    /* Reset if png is good */
}

.flow-promo-banner img:hover {
    transform: rotate(0deg) scale(1.05);
}

.flow-image-preview img {
    width: 100%;
    max-width: 750px;
    /* Increased from 500px */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

/* Responsive adjustments */
.flow-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    /* Image (left) gets 60%, Text (right) gets 40% */
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    /* Allow container to be wider */
    margin: 0 auto;
}

/* ... styles ... */

/* Responsive adjustments */
@media (max-width: 991px) {

    .pospago-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }

    /* Flow Mobile Specifics */
    .flow-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        gap: 20px;
    }

    .flow-content-text {
        display: contents;
        /* Unwrap so children can be ordered with the image */
    }

    /* Mobile Ordering: 1. Header, 2. Image, 3. Body */
    .flow-header {
        order: 1;
        width: 100%;
    }

    .flow-image-preview {
        order: 2;
        width: 100%;
        margin-bottom: 20px;
    }

    .flow-body {
        order: 3;
        width: 100%;
    }

    .pospago-content {
        padding: 0;
    }

    .flow-header h2,
    .pospago-content h2 {
        font-size: 1.8rem;
    }

    .pospago-image {
        order: -1;
    }

    .pospago-image img,
    .flow-image-preview img {
        max-width: 100%;
        width: 100%;
    }

    .pospago-icons img,
    .flow-partners img {
        margin: 0 auto 20px;
    }

    .flow-body p {
        margin: 0 auto 30px;
    }
}

/* Plans Table Styles */
.plans-expand-container {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.plans-toggle-btn {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plans-toggle-btn:hover {
    background: #000;
    color: #fff;
}

.plans-table-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    opacity: 0;
}

.plans-table-wrapper.expanded {
    max-height: 2000px;
    /* Arbitrary large height */
    opacity: 1;
    margin-top: 30px;
    transition: max-height 0.8s ease-in, opacity 0.3s;
}

.plans-table-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-top: 20px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    /* Force scroll on mobile to keep layout */
    text-align: left;
}

.plans-table th {
    padding: 15px;
    border-bottom: 2px solid #000;
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    background: #f8f9fa;
}

.plans-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    color: #555;
    font-size: 0.95rem;
}

.plans-table tr:hover {
    background-color: #f9f9f9;
}

.plan-price {
    font-size: 1.4rem;
    font-weight: 300;
    color: #666;
    white-space: nowrap;
}

.plan-data {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: 1.2rem;
}

.whatsapp-color {
    color: #25D366;
}

.benefit-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.plan-roaming {
    max-width: 250px;
    line-height: 1.4;
}

.plan-roaming strong {
    color: #000;
}

/* --- MARKETING LANDING PAGE STYLES --- */

/* Top Announcement Bar */
.top-announcement-bar {
    background: linear-gradient(90deg, #4A00E0 0%, #8E2DE2 100%);
    color: white;
    text-align: center;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.4);
}

#countdown-timer {
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
    letter-spacing: 1px;
}

/* Marketing Hero Updates */
.marketing-hero {
    background: transparent; /* Canvas will handle background */
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

#fiberOpticCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.pulse-badge {
    background: linear-gradient(90deg, #4A00E0, #8E2DE2);
    color: white;
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    animation: pulseViolet 2s infinite;
    display: inline-block;
    position: relative;
    z-index: 1;
}

@keyframes pulseViolet {
    0% { box-shadow: 0 0 0 0 rgba(74, 0, 224, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(74, 0, 224, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 0, 224, 0); }
}

.hero-headline {
    font-size: 3.8rem !important;
    margin-bottom: 25px;
    color: #ffffff; /* White to contrast dark fiber bg */
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.highlight {
    background: linear-gradient(90deg, #00d9ff 0%, #8E2DE2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.highlight::after {
    display: none;
}

.hero-subheadline {
    font-size: 1.25rem !important;
    color: rgba(255, 255, 255, 0.85); /* Off-white for readability */
    max-width: 800px;
    margin: 0 auto 35px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.marketing-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.marketing-benefits span {
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1); /* Translucent dark mode pill */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.marketing-benefits span:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 217, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.marketing-benefits i {
    color: #00d9ff;
    font-size: 1.3rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 16px 45px;
    background: linear-gradient(90deg, #4A00E0 0%, #00d9ff 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-large:hover {
    background: linear-gradient(90deg, #00d9ff 0%, #4A00E0 100%) !important;
}

.btn-pulse {
    animation: pulseBtnViolet 2.5s infinite;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4) !important;
}

@keyframes pulseBtnViolet {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3); }
}

.urgency-text {
    width: 100%;
    margin-top: 18px !important;
    font-size: 0.95rem !important;
    color: #00d9ff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials-section {
    background: white;
    padding: 70px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* WhatsApp Tooltip */
.whatsapp-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsapp-float {
    position: relative; /* Override existing */
    bottom: 0;
    right: 0;
    display: flex;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
    animation: bounceTooltip 2s infinite;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

@keyframes bounceTooltip {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-5px); }
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: -100px; /* Hidden by default */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    padding: 18px 25px;
    z-index: 998;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: none; /* Only show on mobile */
    border-top: 2px solid #8E2DE2;
}

.sticky-mobile-cta.visible {
    bottom: 0;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.limited-offer {
    color: #8E2DE2;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-text strong {
    color: var(--dark);
    font-size: 1.1rem;
}

/* Responsive adjustments for new features */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-headline {
        font-size: 2.2rem !important;
    }
    
    .marketing-benefits {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .marketing-benefits span {
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 12px 20px;
        width: 100%;
        max-width: 300px;
    }
    
    .whatsapp-wrapper {
        bottom: 90px;
    }

    .sticky-mobile-cta {
        display: block;
    }
    
    .top-announcement-bar {
        font-size: 0.8rem;
    }
}

/* =============================================
   REDISEÑO 2026 - VOUCHER SYSTEM & CONVERSION
   ============================================= */

:root {
    --voucher-bg: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --voucher-accent: #00d4ff;
    --voucher-gold: #ffd700;
    --hero-dark: #0a0a1a;
}

/* TOP ANNOUNCEMENT BAR - Rediseñado */
.top-announcement-bar {
    background: linear-gradient(90deg, #ff416c, #ff4b2b) !important;
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
    z-index: 1001 !important;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.announcement-icon {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.announcement-text strong {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-divider {
    opacity: 0.4;
}

.announcement-timer {
    font-size: 0.85rem;
    opacity: 0.9;
}

#countdown-timer {
    background: rgba(0,0,0,0.25) !important;
    padding: 2px 10px !important;
    border-radius: 4px;
    margin-left: 3px;
}

/* HERO - Rediseño split layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 30px;
}

.hero-left {
    padding-right: 20px;
}

.hero-headline {
    font-size: 2.8rem !important;
    margin-bottom: 20px !important;
    line-height: 1.15 !important;
}

.text-small {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.text-big {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.text-mid {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin: 8px 0 5px;
}

.text-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.7);
}

.hero-compare {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.compare-item {
    text-align: center;
    flex: 1;
}

.compare-item.old .compare-value {
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
    font-size: 1.5rem;
    font-weight: 700;
}

.compare-item.new .compare-value {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 800;
}

.compare-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 5px;
}

.compare-price {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.compare-arrow {
    font-size: 1.5rem;
    color: #00d4ff;
    flex-shrink: 0;
}

.btn-large-outline {
    font-size: 1rem !important;
    padding: 14px 30px !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: #fff !important;
    background: transparent !important;
}

.btn-large-outline:hover {
    border-color: #25D366 !important;
    background: rgba(37, 211, 102, 0.1) !important;
}

/* VOUCHER CARD */
.voucher-card {
    background: var(--voucher-bg);
    border-radius: 20px;
    padding: 5px;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    max-width: 380px;
    margin: 0 auto;
    animation: floatVoucher 6s ease-in-out infinite;
}

@keyframes floatVoucher {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.voucher-ribbon {
    position: absolute;
    top: 15px;
    right: -8px;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    color: white;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(255, 65, 108, 0.4);
}

.voucher-ribbon::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    border-left: 8px solid transparent;
    border-top: 13px solid #ff416c;
    border-bottom: 13px solid #ff416c;
}

.voucher-header {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.voucher-header i {
    color: var(--voucher-accent);
    font-size: 1.3rem;
}

.voucher-header span {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.voucher-body {
    padding: 25px 20px;
    text-align: center;
}

.voucher-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
    font-weight: 600;
}

.voucher-code {
    font-family: 'Courier New', monospace;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--voucher-accent);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    margin-bottom: 20px;
}

.voucher-offer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.voucher-speed {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.voucher-speed small {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.voucher-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--voucher-gold);
}

.voucher-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 5px;
}

.voucher-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.btn-voucher-refresh, .btn-voucher-claim {
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-voucher-refresh {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
}

.btn-voucher-refresh:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.btn-voucher-claim {
    background: linear-gradient(90deg, #00d4ff, #0088cc);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-voucher-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* OFERTA DESTACADA SECTION */
.oferta-destacada {
    padding: 70px 0;
    background: var(--light-bg);
}

.oferta-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.oferta-badge {
    background: linear-gradient(90deg, #4A00E0, #8E2DE2);
    color: white;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.oferta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
    align-items: center;
}

.oferta-content h2 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--dark);
}

.oferta-content p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.oferta-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.oferta-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.oferta-list li:last-child {
    border-bottom: none;
}

.oferta-list li i {
    color: #00BCD4;
    font-size: 1.2rem;
}

.speed-compare {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.speed-bar {
    position: relative;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
}

.speed-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 12px;
    transition: width 1s ease;
    z-index: 0;
}

.old-speed .speed-bar-fill {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
    opacity: 0.15;
}

.new-speed .speed-bar-fill {
    background: linear-gradient(90deg, #00b894, #00d4ff);
    opacity: 0.2;
}

.speed-bar-label, .speed-bar-price {
    position: relative;
    z-index: 1;
}

.speed-bar-label {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
}

.speed-bar-price {
    display: block;
    font-size: 1rem;
    color: var(--gray);
}

.new-speed .speed-bar-label {
    color: #00b894;
}

.speed-save {
    font-size: 0.95rem;
    color: #00b894;
    font-weight: 700;
    text-align: center;
}

/* VOUCHER TOAST NOTIFICATION */
.voucher-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e293b;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,212,255,0.2);
    pointer-events: none;
}

.voucher-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.voucher-toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.voucher-toast-content i {
    color: var(--voucher-accent);
    font-size: 1.2rem;
}

.voucher-toast-content strong {
    color: var(--voucher-accent);
}

/* FORM VOUCHER PREVIEW */
.form-voucher-preview {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #0f0c29, #302b63);
    border-radius: 12px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-voucher-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-voucher-code {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--voucher-accent);
    letter-spacing: 3px;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(0,212,255,0.3);
}

/* PLAN FROM PRICE */
.plan-from {
    margin-top: 15px !important;
    font-size: 1.1rem !important;
}

.plan-from strong {
    color: var(--primary);
    font-size: 1.3rem;
}

/* HIGHLIGHT TEXT */
.highlight-text {
    background: linear-gradient(90deg, #00BCD4, #4A00E0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-compare {
        justify-content: center;
    }

    .hero-headline {
        text-align: center;
    }

    .oferta-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.2rem !important;
    }
    
    .text-big {
        font-size: 3rem;
    }
    
    .text-price {
        font-size: 2.5rem;
    }
    
    .voucher-card {
        max-width: 320px;
    }
    
    .voucher-code {
        font-size: 1.6rem;
    }
    
    .voucher-speed {
        font-size: 2rem;
    }
    
    .oferta-grid {
        padding: 20px;
    }
    
    .oferta-content h2 {
        font-size: 1.6rem;
    }
    
    .speed-bar-label {
        font-size: 1.4rem;
    }
    
    .form-voucher-code {
        font-size: 1.3rem;
    }

    .btn-large-outline {
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
    }
}