:root {
    --neon: #CCFF00;
    --neon-glow: rgba(204, 255, 0, 0.4);
    --neon-dim: rgba(204, 255, 0, 0.1);
    --bg: #030303;
    --surface: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    --text: #fff;
    --muted: #a0a0a0;
    /* Improved contrast ratio */
    --muted-high: #b8b8b8;
    /* Higher contrast for important text */
    --alert: #ff4d4d;
    /* Improved contrast */
    --font: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --radius: 24px;
    --radius-sm: 14px;
    --focus-ring: 0 0 0 3px rgba(204, 255, 0, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY - SKIP LINK & FOCUS STATES
═══════════════════════════════════════════════════════════ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon);
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Visible Styles */
*:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .orb,
    .floating-badge,
    .status-dot,
    .hero-badge {
        animation: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --glass-border: rgba(255, 255, 255, 0.3);
        --muted: #c0c0c0;
    }

    .glass-card {
        border-width: 2px;
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--neon);
    color: #000;
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL LINK STYLES
═══════════════════════════════════════════════════════════ */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--neon);
}

/* CTA Buttons - keep black text on hover */
a.cta-button,
a.cta-button:hover,
a.main-cta-button,
a.main-cta-button:hover,
a.final-cta-btn,
a.final-cta-btn:hover,
a.mobile-cta-button,
a.mobile-cta-button:hover,
a.outline-cta:hover {
    color: #000;
}

/* Outline CTA special case */
a.outline-cta {
    color: var(--neon);
}

/* Footer and text links */
.footer-col-contact a,
.whatsapp-text a,
address a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col-contact a:hover,
.whatsapp-text a:hover,
address a:hover {
    color: var(--neon);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATED BACKGROUND - AURORA EFFECT
═══════════════════════════════════════════════════════════ */
.fixed-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    mix-blend-mode: screen;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--neon-dim) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: aurora 15s ease-in-out infinite alternate;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.08) 0%, transparent 70%);
    bottom: -30%;
    right: -10%;
    animation: aurora 20s ease-in-out infinite alternate-reverse;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

@keyframes aurora {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(50px, 30px) scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-30px, -20px) scale(0.95);
        opacity: 0.4;
    }
}

/* ═══════════════════════════════════════════════════════════
   GLASS MORPHISM SYSTEM - iOS 26 STYLE (ENHANCED)
═══════════════════════════════════════════════════════════ */
.glass-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow;
}

/* Glass Shine Layer */
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 40%,
            transparent 60%,
            rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s;
}

/* Magnetic Cursor Glow */
.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(204, 255, 0, 0.12) 0%,
            rgba(204, 255, 0, 0.05) 25%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover::before {
    opacity: 0.8;
}

.glass-card:hover::after {
    opacity: 1;
}

.glass-card:hover {
    border-color: rgba(204, 255, 0, 0.35);
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(204, 255, 0, 0.15),
        0 0 80px -20px var(--neon-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Active/Press state */
.glass-card:active {
    transform: translateY(-4px) scale(0.99);
    transition-duration: 0.1s;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.glass-card.shimmer::before {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

/* Depth Layers - Enhanced Glass */
.glass-card--deep {
    background: linear-gradient(160deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 0, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Frosted Glass Variant */
.glass-frosted {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(60px) saturate(150%);
    -webkit-backdrop-filter: blur(60px) saturate(150%);
}

/* Glow Effect Enhanced */
.glass-card.glow-effect,
.glass-card.glow {
    box-shadow:
        0 0 80px -30px var(--neon-glow),
        0 25px 50px -20px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR - FROSTED GLASS
═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    cursor: pointer;
    transition: transform 0.3s;
}

.brand:hover {
    transform: scale(1.05);
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
}

.brand-dot {
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon-glow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    background: none;
    border: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.3s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: width 0.3s;
}

.nav-item:hover {
    color: var(--text);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.highlight {
    color: var(--neon);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-shadow: 0 0 20px var(--neon-glow);
}

.cta-button {
    background: var(--neon);
    color: #000;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 30px var(--neon-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px var(--neon-glow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-item {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.mobile-nav-item:hover {
    color: var(--text);
    transform: translateX(10px);
}

.mobile-nav-item.highlight {
    color: var(--neon);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-cta-button {
    background: var(--neon);
    color: black;
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero-section {
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    margin-bottom: 2.5rem;
    animation: float 6s ease-in-out infinite;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon), 0 0 30px var(--neon-glow);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 15px var(--neon), 0 0 30px var(--neon-glow);
    }

    50% {
        box-shadow: 0 0 25px var(--neon), 0 0 50px var(--neon-glow);
    }
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--muted);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--neon) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--muted);
    max-width: 750px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.text-highlight {
    color: #fff;
    font-weight: 700;
}

.hero-quote-box {
    border-left: 3px solid var(--neon);
    padding: 1.5rem 2rem;
    margin-bottom: 4rem;
    text-align: left;
    max-width: 800px;
    font-style: italic;
    color: var(--muted);
    background: var(--glass);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px -10px var(--neon-dim);
}

/* Video Card */
.video-container {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    margin-bottom: 3.5rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--neon) 0%, transparent 50%, rgba(0, 100, 255, 0.3) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.5s;
}

.video-container:hover::before {
    opacity: 1;
}

.video-container:hover {
    transform: scale(1.02);
}

.glass-panel {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(204, 255, 0, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.play-button-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px var(--neon-glow), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--neon);
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-container:hover .play-button {
    transform: scale(1.15);
}

.play-icon {
    fill: #000;
    stroke: #000;
    margin-left: 5px;
    width: 32px;
    height: 32px;
}

.video-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    text-align: left;
}

.caption-title {
    font-weight: 700;
    font-size: 1.3rem;
}

.caption-subtitle {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Main CTA */
.main-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--neon);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.4rem 3rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 0 50px var(--neon-glow), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s;
}

.main-cta-button:hover::before {
    left: 100%;
}

.main-cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 80px var(--neon-glow);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.section-padding {
    padding: 7rem 0;
    position: relative;
    z-index: 10;
}

.section-alt {
    background: rgba(255, 255, 255, 0.015);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    color: var(--neon);
    background: var(--neon-dim);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(204, 255, 0, 0.2);
    box-shadow: 0 0 30px -10px var(--neon-glow);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-description {
    font-size: 1.2rem;
    color: var(--muted);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.gap-lg {
    gap: 4rem;
}

/* Cards */
.glass-card {
    padding: 2.5rem;
    height: 100%;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.alert-style {
    background: rgba(255, 60, 60, 0.1);
    color: var(--alert);
}

.success-style {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 30px var(--neon-glow);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.card-text {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Comparison */
.card-dark {
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all 0.4s;
}

.card-dark:hover {
    border-color: rgba(255, 60, 60, 0.2);
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-quote {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.list-check {
    list-style: none;
}

.list-check li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 1rem;
}

.icon-sm {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.alert-color {
    color: var(--alert);
}

.neon-color {
    color: var(--neon);
}

.highlight-text {
    color: #fff;
}

.highlight-border {
    border: 1px solid rgba(204, 255, 0, 0.25);
    background: linear-gradient(160deg, rgba(204, 255, 0, 0.04) 0%, transparent 50%);
}

.highlight-border:hover {
    border-color: rgba(204, 255, 0, 0.5);
    box-shadow: 0 0 60px -20px var(--neon-glow);
}

/* Tabs */
.tabs-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tab-button {
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.5;
}

.tab-button:hover {
    background: var(--glass);
    opacity: 0.8;
    transform: translateX(5px);
}

.tab-button.active {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-color: rgba(204, 255, 0, 0.2);
    opacity: 1;
    box-shadow: 0 0 30px -10px var(--neon-glow);
}

.tab-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon-glow);
}

.tab-name {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.tab-desc {
    font-size: 0.8rem;
    color: var(--muted);
}

.big-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-content h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.tab-content p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 550px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
}

.feature-tag:hover {
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-3px);
}

/* Intelligence */
.glass-container-lg {
    background: var(--glass);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.glass-container-lg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-dim) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.align-center {
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--neon-dim);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    color: var(--neon);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(204, 255, 0, 0.2);
}

.icon-xs {
    width: 14px;
    height: 14px;
}

.display-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.display-text {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.feature-list-rows {
    list-style: none;
}

.feature-list-rows li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 500;
    transition: transform 0.3s;
}

.feature-list-rows li:hover {
    transform: translateX(8px);
}

.icon-box-sm {
    width: 44px;
    height: 44px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    transition: all 0.3s;
}

.feature-list-rows li:hover .icon-box-sm {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 25px var(--neon-glow);
}

.outline-cta {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--neon);
    color: var(--neon);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.outline-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.outline-cta:hover::before {
    transform: scaleX(1);
}

.outline-cta:hover {
    color: #000;
}

.visual-side {
    position: relative;
    padding: 1rem;
}

.visual-card {
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, rgba(20, 20, 20, 0.6) 0%, rgba(5, 5, 5, 0.4) 100%);
    position: relative;
}

.big-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px var(--neon-glow));
}

.visual-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.visual-desc {
    color: var(--muted);
    max-width: 250px;
    font-size: 0.95rem;
}

.floating-badge {
    position: absolute;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    font-family: 'SF Mono', monospace;
    font-size: 0.85rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.top-right {
    top: 8%;
    right: 5%;
    color: var(--neon);
    animation: float 6s ease-in-out infinite;
}

.bottom-left {
    bottom: 8%;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: float 7s ease-in-out infinite reverse;
}

.dot-green {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Testimonials */
.testimonial {
    display: flex;
    flex-direction: column;
}

.quote-mark {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.6;
    color: var(--neon);
}

.testimonial-text {
    font-style: italic;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.testimonial-author {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.testimonial-author h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--neon);
    font-size: 0.85rem;
}

/* Question Section */
.text-center-section {
    text-align: center;
}

.limit-width-md {
    max-width: 900px;
}

.big-question {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.big-answer {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.alert-box {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.3);
    color: #ffaaaa;
    border-radius: var(--radius-sm);
    font-weight: 700;
    animation: pulse-alert 3s infinite;
}

@keyframes pulse-alert {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 60, 60, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 60, 60, 0.4);
    }
}

/* Eligibility */
.border-top {
    border-top: 1px solid var(--glass-border);
}

.list-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-display);
}

.neon-text {
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon-glow);
}

.list-block-bad,
.list-block-good {
    list-style: none;
}

.list-block-bad li,
.list-block-good li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    transition: transform 0.3s;
}

.list-block-bad li:hover,
.list-block-good li:hover {
    transform: translateX(8px);
}

.list-block-bad li i {
    color: var(--alert);
    flex-shrink: 0;
    margin-top: 3px;
}

.list-block-bad li {
    color: var(--muted);
}

.list-block-good li i {
    color: var(--neon);
    flex-shrink: 0;
    margin-top: 3px;
}

.list-block-good li {
    color: #fff;
    font-weight: 500;
}

/* Final CTA */
.cta-section {
    background: radial-gradient(ellipse at center, var(--neon-dim) 0%, transparent 60%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
    pointer-events: none;
}

.text-center {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-subheading {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 3.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-btn {
    display: inline-block;
    background: var(--neon);
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1.5rem 3.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 0 60px var(--neon-glow), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: glow-pulse 3s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 60px var(--neon-glow), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 100px var(--neon-glow), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
}

.final-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.final-cta-btn:hover {
    transform: scale(1.05);
}

.whatsapp-text {
    margin-top: 2rem;
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
}

/* Footer */
.main-footer {
    background: #000;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
}

.footer-about {
    color: #555;
    max-width: 400px;
    line-height: 1.7;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.footer-col-contact ul {
    list-style: none;
    color: #555;
}

.footer-col-contact ul li {
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col-contact ul li:hover {
    color: var(--neon);
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 0.85rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dot-live {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon);
    animation: pulse-glow 1.5s infinite;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonial {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-mark {
    font-size: 3rem;
    line-height: 1;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--muted);
}

.testimonial-disclaimer {
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--glass-border);
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   ELIGIBILITY SECTIONS - BAD vs GOOD
═══════════════════════════════════════════════════════════ */

/* Alert Text (red) */
.alert-text {
    color: #cf0e0e;
    text-shadow: 0 0 20px rgba(207, 14, 14, 0.5);
}

/* Negative/Bad Section */
.eligibility-bad {
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg,
            rgba(207, 14, 14, 0.15) 0%,
            rgba(207, 14, 14, 0.05) 50%,
            rgba(207, 14, 14, 0.02) 100%);
    border: 1px solid rgba(207, 14, 14, 0.25);
    position: relative;
    overflow: hidden;
}

.eligibility-bad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #cf0e0e, rgba(207, 14, 14, 0.3));
}

.eligibility-bad .list-title {
    margin-bottom: 1.5rem;
}

.eligibility-bad ul {
    list-style: none;
}

.eligibility-bad li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--muted);
}

.eligibility-bad li i {
    color: #cf0e0e;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Positive/Good Section */
.eligibility-good {
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg,
            rgba(204, 255, 0, 0.08) 0%,
            rgba(204, 255, 0, 0.03) 50%,
            rgba(204, 255, 0, 0.01) 100%);
    border: 1px solid rgba(204, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.eligibility-good::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon), rgba(204, 255, 0, 0.3));
}

.eligibility-good .list-title {
    margin-bottom: 1.5rem;
}

.eligibility-good ul {
    list-style: none;
}

.eligibility-good li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--muted);
}

.eligibility-good li i {
    color: var(--neon);
    flex-shrink: 0;
    margin-top: 2px;
}

.list-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - ENHANCED MOBILE EXPERIENCE
═══════════════════════════════════════════════════════════ */

/* Large Tablets */
@media (max-width: 1024px) {
    .tabs-container {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-button {
        min-width: 220px;
        flex-shrink: 0;
    }

    .glass-container-lg {
        padding: 2.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --radius: 20px;
        --radius-sm: 12px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 0.75rem;
        min-width: 44px;
        min-height: 44px;
    }

    .hero-section {
        padding: 140px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-quote-box {
        padding: 1rem 1.25rem;
        margin-bottom: 2.5rem;
        font-size: 0.95rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .glass-container-lg {
        border-radius: var(--radius);
        padding: 1.5rem;
    }

    .glass-card {
        padding: 1.75rem;
    }

    /* Disable parallax on mobile for performance */
    .glass-card:hover {
        transform: translateY(-4px);
    }

    .visual-side {
        margin-top: 2rem;
    }

    .visual-card {
        aspect-ratio: 4/3;
    }

    .floating-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    .video-container {
        aspect-ratio: 16/10;
        margin-bottom: 2.5rem;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .video-caption {
        bottom: 1rem;
        left: 1rem;
    }

    .caption-title {
        font-size: 1.1rem;
    }

    .main-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .final-cta-btn {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .display-title {
        font-size: 2rem;
    }

    .display-text {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-subheading {
        font-size: 1rem;
    }

    .big-question {
        font-size: 1.75rem;
    }

    .big-answer {
        font-size: 1rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 120px 0 50px;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 0.35rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .tab-button {
        min-width: 180px;
        padding: 1rem 1.25rem;
    }

    .tab-number {
        font-size: 1rem;
    }

    .tab-name {
        font-size: 0.9rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .list-block-bad li,
    .list-block-good li {
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-circle {
        width: 44px;
        height: 44px;
    }

    .outline-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .alert-box {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .glass-card:hover {
        transform: none;
        box-shadow: none;
    }

    .glass-card:active {
        transform: scale(0.98);
        transition-duration: 0.1s;
    }

    .nav-item::after {
        display: none;
    }

    .cta-button:hover,
    .main-cta-button:hover,
    .final-cta-btn:hover {
        transform: none;
    }

    .cta-button:active,
    .main-cta-button:active,
    .final-cta-btn:active {
        transform: scale(0.97);
        transition-duration: 0.1s;
    }

    /* Disable tilt effect on touch */
    .video-container:hover {
        transform: none;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 3rem 0;
    }
}

/* Print Styles */
@media print {

    .fixed-background,
    .navbar,
    .skip-link,
    .scroll-progress {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .glass-card {
        border: 1px solid #ccc;
        background: #f9f9f9;
    }
}