:root {
    /* --- Palette --- */
    --bg-deep: #030014;
    /* Deepest Void Purple/Black */
    --bg-card: rgba(18, 18, 40, 0.6);
    /* Glass Card core */

    /* Accents */
    --primary: #6366f1;
    /* Indigo 500 */
    --primary-glow: #818cf8;
    --secondary: #d946ef;
    /* Fuchsia 500 */
    --accent-cyan: #06b6d4;
    /* Cyan 500 for tech feel */

    /* Gradients */
    --grad-text: linear-gradient(135deg, #fff 30%, #a5b4fc 100%);
    --grad-brand: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    --grad-glow: linear-gradient(180deg, rgba(99, 102, 241, 0) 0%, rgba(99, 102, 241, 0.3) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --radius-lg: 24px;
    --radius-md: 16px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: var(--bg-deep);
    color: #ffffff;
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
.logo,
.btn {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Background FX --- */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: var(--primary);
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -100px;
    background: var(--secondary);
}

.orb-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    background: var(--accent-cyan);
    opacity: 0.2;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.text-muted {
    color: #94a3b8;
}

.text-center {
    text-align: center;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-glass);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* --- Component: Buttons --- */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-brand);
    color: white;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.glow-effect:hover::after {
    left: 100%;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-full {
    width: 100%;
    margin-top: auto;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-icon {
    padding: 0.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: white;
}

.logo-icon {
    background: var(--grad-brand);
    border-radius: 12px;
    padding: 4px;
    display: flex;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.logo-text span {
    color: var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 2rem;
    border-radius: 100px;
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

/* --- Hero --- */
.hero {
    padding: 180px 0 100px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    margin-top: -85px;
    /* Pull up to sit under sticky navbar area if transparent */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-glow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.h-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.h-feat i {
    color: var(--accent-cyan);
    width: 18px;
}

/* Trustpilot Hero */
.trustpilot-hero {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: fit-content;
    backdrop-filter: blur(5px);
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars i {
    width: 20px;
    height: 20px;
    fill: #00b67a;
    /* Trustpilot Green */
    color: #00b67a;
}

.trustpilot-hero p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 0;
}

.trustpilot-hero .trust-brand {
    font-weight: 700;
    color: white;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.visual-card {
    position: relative;
    padding: 1rem;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease-out;
}

.hero-visual:hover .visual-card {
    transform: rotateY(0) rotateX(0);
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    display: block;
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    min-width: 180px;
    animation: float 6s ease-in-out infinite;
}

.fb-1 {
    top: 20%;
    left: -30px;
}

.fb-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

.float-badge i {
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.float-badge span {
    display: block;
    font-size: 0.8rem;
    color: #cbd5e1;
}

.float-badge strong {
    display: block;
    font-size: 1.1rem;
    color: white;
}

/* --- Tech Scroller --- */
.tech-scroller {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
}

.tech-scroller .container {
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    padding: 0;
}

.tech-logos {
    display: flex;
    gap: 4rem;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1.1rem;
    align-items: center;
    white-space: nowrap;
    animation: scroll 60s linear infinite;
    /* Slower speed for longer list */
}

.tech-logos span {
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-logos span:hover {
    opacity: 1;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Feature / Services Grid --- */
.section-padding {
    padding: 32px 0;
}

.eyebrow {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-heading p {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

/* Features Grid (Standard) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Bento features (retained if used) */
.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.large-bento {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    background: linear-gradient(90deg, rgba(30, 27, 75, 0.5), rgba(79, 70, 229, 0.1));
}

.bento-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-icon-sm {
    width: 40px;
    height: 40px;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

/* --- Steps Section --- */
.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--grad-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.step-arrow {
    align-self: center;
    font-size: 2rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2.5rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-author {
    margin-top: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: right;
}

/* --- Pricing --- */
.pricing-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.plan-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.popular {
    transform: scale(1.05);
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 0.5rem 0;
}

.plan-period {
    color: #94a3b8;
}

.plan-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.feat-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.feat-item i {
    color: var(--secondary);
    width: 20px;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--grad-brand);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.savings-chip {
    display: inline-block;
    background: rgba(217, 70, 239, 0.2);
    color: #f0abfc;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* --- Footer Lux --- */
.footer-lux {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #64748b;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

/* --- Mobile --- */
@media(max-width: 900px) {

    .hide-mobile,
    .desktop-only {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    /* Magic Section Mobile */
    .magic-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }

    .box-main,
    .box-compat {
        grid-column: span 1 !important;
    }

    .large-bento {
        grid-column: auto;
        flex-direction: column;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar .container {
        padding: 0 1.5rem;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .popular {
        transform: scale(1);
        border: 1px solid var(--primary);
    }

    .hero-title {
        font-size: 3rem;
    }

    .steps-grid {
        flex-direction: column;
        gap: 0;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
        align-self: center;
    }
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 8s ease-in-out infinite;
}

/* --- 6 Card Features Grid --- */
.features-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-clean {
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card-clean:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-box i {
    width: 28px;
    height: 28px;
    color: var(--primary-glow);
}

.feature-card-clean h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-card-clean p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media(max-width: 900px) {
    .features-grid-6 {
        grid-template-columns: 1fr;
    }

    .feature-card-clean {
        text-align: center;
    }

    .feature-icon-box {
        margin: 0 auto 1.5rem;
    }
}

/* --- Intro Section Enhanced --- */
.intro-section {
    overflow: visible;
}

.intro-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-image {
    flex-shrink: 0;
    width: 500px;
}

.intro-floating-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(99, 102, 241, 0.3));
    opacity: 0.9;
}

.intro-content {
    flex: 1;
    max-width: 600px;
    padding: 3rem;
    text-align: left;
}

.intro-content .badge-premium {
    margin-bottom: 1.5rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-content p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
}

@media(max-width: 900px) {
    .intro-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .intro-image {
        width: 350px;
    }

    .intro-content {
        text-align: center;
        padding: 2rem;
    }

    .intro-content .badge-premium {
        margin: 0 auto 1.5rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }
}

/* --- Device Toggle for Pricing --- */
.device-toggle {
    display: inline-flex;
    background: rgba(10, 10, 30, 0.9);
    border-radius: 50px;
    padding: 0.4rem;
    gap: 0.3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.toggle-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    position: relative;
}

.toggle-btn:hover {
    color: #cbd5e1;
}

.toggle-btn.active {
    background: var(--grad-brand);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.5);
}

/* Popular tag on toggle */
.toggle-btn.popular-toggle::after {
    content: 'Más Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-brand);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.fill-star {
    width: 18px;
    height: 18px;
    fill: #eab308;
    color: #eab308;
}

.review-text {
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.reviewer-details h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.reviewer-details span {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media(max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Stats Marquee Section --- */
.stats-marquee-section {
    padding: 2rem 0;
    margin-top: -1rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to right, rgba(10, 10, 30, 0), rgba(10, 10, 30, 0.4) 20%, rgba(10, 10, 30, 0.4) 80%, rgba(10, 10, 30, 0));
}

.stats-marquee-section::before,
.stats-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.stats-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.stats-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.stat-card-clean {
    flex: 0 0 auto;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.stat-card-clean:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.2);
    transform: scale(1.05);
}

.stat-highlight {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Countdown Offer Section --- */
.countdown-section {
    position: relative;
    z-index: 10;
}

.offer-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 32px 4rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(219, 39, 119, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    gap: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #ec4899, #8b5cf6);
}

.offer-content {
    flex: 1;
    min-width: 280px;
}

.offer-badge {
    background: linear-gradient(90deg, #ec4899, #d946ef);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.4);
}

.offer-content h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(to right, #fff, #fbcfe8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.3));
}

.offer-content p {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.offer-timer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.timer-block {
    text-align: center;
    min-width: 100px;
}

.timer-block span {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(79, 70, 229, 0.5);
}

.timer-block small {
    display: block;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

.timer-separator {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    margin-top: -2rem;
}

.pulse-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    border: none;
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(236, 72, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

@media(max-width: 900px) {
    .offer-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .offer-banner::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }

    .offer-content h2 {
        font-size: 2.5rem;
    }

    .offer-timer {
        width: 100%;
        justify-content: center;
        padding: 1.5rem 1rem;
        gap: 0.5rem;
    }

    .timer-block {
        min-width: 60px;
    }

    .timer-block span {
        font-size: 2rem;
    }

    .timer-block small {
        font-size: 0.6rem;
    }

    .timer-separator {
        font-size: 1.5rem;
        margin-top: -1.5rem;
    }
}

/* --- Trustpilot Reviews Section --- */
.trustpilot-section {
    background: linear-gradient(180deg, rgba(3, 0, 20, 0) 0%, rgba(0, 182, 122, 0.05) 50%, rgba(3, 0, 20, 0) 100%);
}

.trust-badge-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.fill-trust {
    fill: #00b67a;
    color: #00b67a;
    width: 20px;
    height: 20px;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tp-card {
    padding: 2rem;
    border: 1px solid rgba(0, 182, 122, 0.1);
    transition: all 0.3s ease;
}

.tp-card:hover {
    border-color: rgba(0, 182, 122, 0.3);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

.tp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tp-stars {
    display: flex;
    gap: 2px;
}

.tp-date {
    font-size: 0.8rem;
    color: #94a3b8;
}

.tp-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.tp-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tp-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tp-name {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.tp-verified {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #00b67a;
}

.tp-verified i {
    width: 14px;
    height: 14px;
}

/* --- FAQ Section Improved --- */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.5);
    border-left-color: var(--color-brand);
    /* Accent on active */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
    /* Ensure text takes available space */
    line-height: 1.4;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8;
    flex-shrink: 0;
    /* Prevent icon shrinking */
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #ec4899;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
    /* Darker bg for answer */
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
    padding-top: 0.5rem;
}

/* --- Mobile Menu Styles (Base) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.close-menu-btn svg {
    width: 32px;
    height: 32px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cbd5e1;
    transition: 0.3s;
}

.mobile-link:hover,
.mobile-link:active {
    color: white;
    transform: scale(1.1);
}

/* --- Responsive Adjustments --- */
@media(max-width: 900px) {

    /* Navbar */
    .mobile-menu-btn {
        display: block !important;
        z-index: 101;
        font-size: 1.5rem;
    }

    .desktop-only {
        display: none !important;
    }

    /* Reduce global container padding on mobile */
    .container {
        padding: 0 1.25rem;
    }

    /* Hide the 'Ver Planes' button and chat icon in header on mobile to prevent crowding */
    /* They are accessible via the mobile menu overlay */
    .nav-actions .btn:not(.mobile-menu-btn) {
        display: none;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Hero */
    .hero {
        padding: 110px 0 50px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller title to fit screen */
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
        padding: 0;
        /* Removed extra padding */
    }

    .hero-actions {
        flex-direction: column;
        /* Stack buttons on mobile */
        gap: 1rem;
        padding: 0;
        /* Removed extra padding */
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .trustpilot-hero {
        margin: 2rem auto 0;
    }

    .hero-visual {
        margin-top: 2rem;
        transform: none;
        /* simple view */
    }

    .hero-img {
        transform: scale(1);
        margin: 0 auto;
        max-width: 100%;
    }

    .float-badge {
        display: none;
    }

    /* Sections */
    .section-padding {
        padding: 3rem 0;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    /* Stats Marquee Mobile Fix */
    .stats-marquee-section {
        margin-top: 0;
    }

    .stat-card-clean {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-brand p {
        margin: 1rem auto 0;
    }
}

/* --- Device Toggle Centering --- */
/* --- Device Toggle Centering --- */
.device-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem;
    border-radius: 100px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.toggle-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid transparent;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.toggle-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.toggle-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Page Header Specifics --- */
.page-header h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.page-header .eyebrow {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.4rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .device-toggle {
        width: 100%;
        max-width: 100%;
        margin: 1.5rem 0;
        padding: 0.3rem;
        gap: 0.2rem;
        justify-content: center;
    }

    .toggle-btn {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
        flex: 1;
        white-space: nowrap;
        min-width: 0;
        text-align: center;
    }
}

/* --- Enhanced Footer & Floating Button --- */
.footer-lux {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
    padding: 32px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 90%;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 0.9rem;
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
    stroke: white;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Tweaks Overrides */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-brand p {
        margin: 1rem auto;
    }

    .footer-links a:hover {
        transform: none;
    }

    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}


/* --- Secure Payment Card (Global) --- */
.secure-payment-card {
    text-align: center;
    max-width: 700px;
    margin: 5rem auto 2rem;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.secure-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.secure-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.shield-icon {
    color: #3b82f6;
    /* Blue shield */
    fill: rgba(59, 130, 246, 0.2);
    width: 28px;
    height: 28px;
}

.secure-subtitle {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.secure-methods-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 120px;
    /* Fixed width for equal spacing */
    text-align: center;
}

.method-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid;
    transition: transform 0.3s ease;
}

.method-circle:hover {
    transform: translateY(-3px);
}

.method-circle svg {
    width: 28px;
    height: 28px;
}

/* Specific Colors */
.orange-ring {
    border-color: #f97316;
    color: #f97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.1);
}

.blue-ring {
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

.green-ring {
    border-color: #22c55e;
    color: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}

.gold-ring {
    border-color: #eab308;
    color: #eab308;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.1);
}

.method-item span {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Mini Payment Icons (Inside Plan Cards) --- */
.plan-payment-mini {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.plan-payment-mini svg {
    width: 20px;
    height: 20px;
    color: #94a3b8;
}

/* --- Section Overrides --- */
#por-que-elegirnos,
.trustpilot-section {
    padding-top: 0 !important;
}

/* --- Channel Modal Styles --- */
.channel-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.channel-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.channel-modal {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.channel-modal-overlay.active .channel-modal {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
}

.modal-title img,
.modal-title svg {
    height: 32px;
    width: auto;
}

.close-modal {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
    padding: 0.5rem;
    border-radius: 50%;
}

.close-modal:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    /* Custom Scrollbar for Modal */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.search-input-modal {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    margin-bottom: 1.5rem;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.search-input-modal:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

#channelListContainer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.channel-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.2s;
    border: 1px solid transparent;
}

.channel-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
}

.channel-logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Redesigned Country/Channel Cards ("Device Card" Style) --- */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.country-card {
    aspect-ratio: 1;
    /* Square shape */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(10, 10, 25, 0.6);
    /* Deep dark background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle border */
    border-radius: 24px;
    /* Large rounded corners key to the look */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover State */
.country-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 15, 35, 0.8);
    border-color: rgba(99, 102, 241, 0.5);
    /* Primary color highlight */
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
}

.country-card:hover .country-flag {
    transform: scale(1.1);
}

.country-flag {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.country-flag-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.country-card:hover .country-flag-img {
    transform: scale(1.1);
}

.country-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.country-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.country-info span {
    font-size: 0.85rem;
    color: #64748b;
    /* Muted text for subtitle */
    font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile usually better than auto-fill mini */
        gap: 1rem;
    }

    .country-card {
        padding: 1rem;
        border-radius: 20px;
    }

    .country-flag {
        font-size: 2.5rem;
    }
}

/* --- Search Bar (Channels) --- */
.search-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 8px 8px 8px 24px !important;
    /* Override glass-card padding */
    max-width: 700px;
    margin: 0 auto;
    border-radius: 100px !important;
    /* Force pill shape */
    background: rgba(15, 23, 42, 0.6) !important;
    /* Darker background for contrast */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    color: var(--primary-glow);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-family: var(--font-body);
    outline: none;
    padding: 0.5rem 0;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-container .btn {
    padding: 0.8rem 2.5rem;
    border-radius: 100px;
    /* Match container radius */
    font-size: 1rem;
}

/* --- New Features Styles --- */

/* 1. Live Status Indicator */
.status-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

/* 2. Hero Search Bar */
.hero-search-container {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    margin-bottom: 3rem;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-search-container:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.search-icon {
    color: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 20px;
}

.hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
}

.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-search {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background: var(--primary-glow);
    transform: translateY(-1px);
}

/* Match Countdown */
.match-section {
    padding: 0 0 2rem;
    position: relative;
    z-index: 10;
}

.match-card {
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.live-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(220, 38, 38, 0.4);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

.match-comp {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.match-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.3) 0%, transparent 70%);
    z-index: 1;
    animation: pulse 3s infinite;
}

/* --- Device Ecosystem --- */
.device-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 900px) {
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.device-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.device-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px) !important;
    /* Override float temporarily on hover */
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.device-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.device-card:hover .device-icon {
    transform: scale(1.1) rotate(5deg);
}

.box-tv {
    background: linear-gradient(135deg, #FF6B6B, #EE5253);
    box-shadow: 0 10px 20px rgba(238, 82, 83, 0.4);
}

.box-phone {
    background: linear-gradient(135deg, #4834d4, #686de0);
    box-shadow: 0 10px 20px rgba(104, 109, 224, 0.4);
}

.box-tablet {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    box-shadow: 0 10px 20px rgba(16, 172, 132, 0.4);
}

.box-laptop {
    background: linear-gradient(135deg, #0984e3, #74b9ff);
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.4);
}

.device-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.device-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

/* Animations */
.float-slow {
    animation: float 6s ease-in-out infinite;
}

.float-medium {
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.link-hover {
    color: var(--primary-glow);
    font-weight: 500;
    margin-left: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.link-hover:hover {
    color: white;
    text-decoration: underline;
}

/* --- Smart Match Countdown Premium --- */
.match-section {
    padding: 4rem 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.match-card {
    background: linear-gradient(145deg, rgba(10, 10, 25, 0.95) 0%, rgba(20, 20, 45, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.match-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
    position: relative;
}

.live-badge {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #fca5a5;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.1);
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 10px #ef4444;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.match-comp {
    background: linear-gradient(90deg, #c084fc, #db2777);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.match-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.team-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    z-index: 2;
}

.team-logo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-box:hover .team-logo-placeholder {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    color: white;
}

.team-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vs-badge {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    font-style: italic;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.countdown-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: #818cf8;
    /* Indigo accent */
    line-height: 1;
    text-shadow: 0 0 20px rgba(129, 140, 248, 0.4);
    font-variant-numeric: tabular-nums;
}

.time-unit small {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #64748b;
    margin-top: 0.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.time-sep {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    margin-top: -15px;
    animation: blink 2s infinite;
}

@media (max-width: 768px) {
    .match-content {
        flex-direction: row;
        /* Keep row even on mobile if possible, or overlap */
        gap: 1rem;
        margin-bottom: 2rem;
    }

    /* On very small screens, maybe stack */
    @media (max-width: 480px) {
        .match-content {
            flex-direction: column;
            gap: 2rem;
        }

        .vs-badge {
            position: relative;
            transform: none;
            left: auto;
            top: auto;
            font-size: 2rem;
            margin: 1rem 0;
        }
    }

    .team-logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .team-box h3 {
        font-size: 1.2rem;
    }

    .countdown-box {
        padding: 1rem;
        gap: 1rem;
        width: 100%;
        justify-content: space-evenly;
    }

    .time-val {
        font-size: 1.8rem;
    }
}

}

/* --- Installation Wizard --- */
.wizard-container {
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wizard-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.wizard-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wizard-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.wizard-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.wizard-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wizard-content.active {
    display: block;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    border: 4px solid #0f172a;
    /* Match typical bg */
    box-shadow: 0 5px 15px rgba(217, 70, 239, 0.4);
}

.step-card h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-support-premium {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-support-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-support-premium svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));

}

/* --- Social Proof Notifications --- */
.fomo-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 350px;
}

.fomo-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.fomo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.fomo-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.fomo-content p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

.fomo-time {
    font-size: 0.7rem;
    color: #64748b;
    display: block;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .fomo-toast {
        left: 50%;
        transform: translateX(-50%) translateY(150%);
        bottom: 1rem;
        width: 90%;
    }

    .fomo-toast.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* --- Plan Finder Quiz --- */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.quiz-step {
    display: none;
    text-align: center;
    width: 100%;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-step h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.quiz-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quiz-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 160px;
    position: relative;
    color: white;
}

.quiz-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.quiz-btn i {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.quiz-btn.recommended {
    border-color: var(--accent);
    background: rgba(34, 197, 94, 0.05);
}

.badge-save {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.quiz-result {
    display: none;
    text-align: center;
    width: 100%;
}

.quiz-result.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.text-success {
    color: #22c55e;
}

.fomo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;

}

/* --- Top Banner Styles (Polished) --- */
.top-banner {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.95rem;
    padding: 0.6rem 0;
    position: relative;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    /* Constrain width for large screens */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.banner-left,
.banner-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.banner-icon {
    width: 18px;
    height: 18px;
    opacity: 0.95;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.glow-icon {
    fill: #fcd34d;
    /* Amber-300 */
    stroke: none;
    filter: drop-shadow(0 0 8px rgba(252, 211, 77, 0.6));
    animation: pulse-fast 2s infinite ease-in-out;
}

.banner-right span b {
    color: white;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes pulse-fast {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(252, 211, 77, 0.8));
    }
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .top-banner {
        font-size: 0.85rem;
        padding: 0.8rem 0;
    }

    .banner-left,
    .banner-right {
        justify-content: center;
    }
}

/* --- Comparison Table Styles --- */
.comparison-section {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

.comparison-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: var(--border-glass);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    text-align: left;
}

.comp-table th,
.comp-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-table th {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 500;
}

.comp-table td {
    font-size: 1rem;
    color: #e2e8f0;
}

/* Highlight Column (DisfrutaTV) */
.comp-highlight {
    background: rgba(99, 102, 241, 0.1);
    border-left: 1px solid rgba(99, 102, 241, 0.3);
    border-right: 1px solid rgba(99, 102, 241, 0.3);
    position: relative;
}

.comp-highlight.header-cell {
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px 20px 0 0;
    color: var(--primary-glow) !important;
    font-weight: 700;
}

.comp-highlight.footer-cell {
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0 0 20px 20px;
}

.icon-check {
    color: #22c55e;
    width: 24px;
}

.icon-cross {
    color: #ef4444;
    width: 24px;
}

/* --- Savings Calculator Styles --- */
.calculator-section {
    position: relative;
}

.calc-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.range-container {
    margin: 3rem 0;
}

.range-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.custom-range {
    width: 100%;
    height: 8px;
    background: #334155;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary);
    transition: transform 0.2s;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.savings-display {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 2rem;
    display: inline-block;
    min-width: 300px;
}

.savings-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
    display: block;
    margin: 0.5rem 0;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.savings-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #86efac;
}

/* --- FOMO Toast (Sales Notification) --- */
.fomo-toast {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    min-width: 320px;
}

.fomo-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.fomo-content h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.fomo-content p {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
}

.fomo-content small {
    color: #22c55e;
    font-size: 0.75rem;
    display: block;
    margin-top: 0.3rem;
}

.fomo-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1.2rem;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cookie-text p {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept:hover {
    background: var(--primary-glow);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .fomo-toast {
        left: 50%;
        transform: translate(-50%, 150px);
        width: 90%;
        bottom: 20px;
    }

    .fomo-toast.show {
        transform: translate(-50%, 0);
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- NEW CHANNELS PAGE LAYOUT --- */

.channels-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 0;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

/* Sidebar */
.channels-sidebar {
    width: 320px;
    position: sticky;
    top: 100px;
    /* Below Navbar */
    height: calc(100vh - 120px);
    overflow-y: auto;
    margin: 2rem 0 2rem 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* Glass effect overrides */
    background: rgba(10, 15, 30, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.sidebar-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Custom Scrollbar */
.channels-sidebar::-webkit-scrollbar,
.sidebar-list::-webkit-scrollbar {
    width: 6px;
}

.channels-sidebar::-webkit-scrollbar-thumb,
.sidebar-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-item.active {
    background: rgba(99, 102, 241, 0.15);
    /* Primary tint */
    border-color: rgba(99, 102, 241, 0.3);
}

.sidebar-item.active .sidebar-name {
    color: white;
    font-weight: 600;
}

.sidebar-flag {
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sidebar-flag img {
    border-radius: 4px;
    width: 100%;
}

.sidebar-name {
    flex: 1;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.sidebar-count {
    font-size: 0.75rem;
    color: #64748b;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Main Content Wrapper */
.main-channels-area {
    display: flex;
    flex: 1;
    gap: 2rem;
}

.channels-grid-wrapper {
    flex: 1;
    padding: 2rem;
    /* Ensure it doesn't overflow horizontally */
    min-width: 0;
}

/* Hero New */
.channels-hero-new {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.hero-content-new h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-content-new p {
    color: #94a3b8;
}

/* Search Bar Area */
.search-bar-area {
    padding: 0 2rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.search-glass-container {
    width: 100%;
    max-width: 800px;
    height: 60px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    /* Glass */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.search-glass-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.search-icon-large {
    color: #94a3b8;
    margin-right: 1rem;
    width: 24px;
    height: 24px;
}

.search-glass-container input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    width: 100%;
    height: 100%;
    outline: none;
}

.search-glass-container input::placeholder {
    color: #64748b;
}

/* Grid Headers */
.grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-header h2 {
    font-size: 2rem;
    display: flex;
    align-items: align-center;
    gap: 0.5rem;
}

.channel-count {
    color: var(--primary);
    font-weight: 600;
}

/* Channels Grid */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.channel-card-new {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, background 0.2s;
    cursor: default;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.channel-card-new:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.cc-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-icon img {
    width: 24px;
    height: 24px;
    filter: grayscale(1);
    transition: 0.3s;
}

.channel-card-new:hover .cc-icon img {
    filter: grayscale(0);
    opacity: 1 !important;
}

.cc-info span {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .channels-layout {
        flex-direction: column;
    }

    .channels-sidebar {
        width: 100%;
        height: auto;
        position: static;
        margin: 0;
        border-right: none;
        max-height: 300px;
        /* limit height on mobile */
    }

    .channels-grid-wrapper {
        padding: 1rem;
    }
}