:root {
    --bg-dark: #0a0a0c;
    --bg-secondary: #131316;
    --primary: #6d28d9;
    --accent: #06b6d4;
    --discord: #5865F2;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.background-glow {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a.nav-active {
    color: var(--accent);
    font-weight: 600;
}

/* Dropdown Mode d'Emploi */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>.nav-dropdown-toggle {
    cursor: pointer;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown>.nav-dropdown-toggle:hover,
.nav-dropdown:hover>.nav-dropdown-toggle {
    color: var(--text-main);
}

.nav-dropdown>.nav-dropdown-toggle.nav-active {
    color: var(--accent);
    font-weight: 600;
}

.nav-dropdown-toggle .dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(19, 19, 22, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    transform: translateX(-50%) translateY(8px);
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.2rem !important;
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: background 0.2s, color 0.2s !important;
    white-space: nowrap;
    border-bottom: none !important;
    width: auto !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(6, 182, 212, 0.1) !important;
    color: var(--accent) !important;
}

.nav-dropdown-menu a .dropdown-icon {
    font-size: 1.1rem;
    width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--discord);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    padding-top: 120px;
}

.hero-content {
    max-width: 800px;
}

.badge-new {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.2), rgba(109, 40, 217, 0.2));
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.hero p strong {
    color: var(--accent);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--discord);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.btn-primary.large {
    padding: 1.2rem 2.5rem;
}

.sub-cta {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
}

/* Features */
.features-section {
    padding: 5rem 10%;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* HUD Section */
.hud-section {
    padding: 5rem 10%;
    background: linear-gradient(180deg, transparent, rgba(109, 40, 217, 0.03));
}

.hud-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.hud-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hud-mode {
    padding: 1.5rem;
}

.hud-mode-header {
    margin-bottom: 1rem;
}

.mode-tag {
    font-weight: 700;
    font-size: 1.1rem;
}

.mode-tag.large {
    color: #f59e0b;
}

.mode-tag.compact {
    color: #10b981;
}

.mode-tag.mini {
    color: #8b5cf6;
}

.mode-subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.hud-screenshot {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.hud-mode ul {
    list-style: none;
    margin-bottom: 1rem;
}

.hud-mode li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.hud-mode li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.hud-mode li strong {
    color: var(--text-main);
}

.scenario {
    font-style: italic;
    color: var(--accent);
    font-size: 0.85rem;
    border-left: 2px solid var(--accent);
    padding-left: 0.8rem;
}

.magic-switch {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.magic-switch h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.magic-switch p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: var(--accent) !important;
    font-weight: 500;
}

/* Screenshots Section */
.screens-section {
    padding: 5rem 10%;
}

.screens-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.screen-card {
    padding: 1.5rem;
}

.screen-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.screen-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.screen-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 10%;
    display: flex;
    justify-content: center;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-box strong {
    color: var(--accent);
}

/* Footer */
.footer {
    padding: 2rem 10%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

/* Boutique Badges Section */
.boutique-section {
    padding: 5rem 10%;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.03));
}

.boutique-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pack-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-tag {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.save-tag {
    background: #10b981;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.category-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.packs-grid.thematic {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pack-card {
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.pack-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.pack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.pack-number {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.pack-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.pack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-item {
    background: rgba(109, 40, 217, 0.2);
    border: 1px solid rgba(109, 40, 217, 0.4);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-item small {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.75rem;
    margin-left: 0.3rem;
}

.pack-emojis {
    font-size: 2rem;
    letter-spacing: 0.5rem;
    text-align: center;
    margin: 1rem 0;
}

.pack-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pack-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.badge-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pack-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

/* Bundles */
.bundles-section {
    margin-top: 2rem;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 1rem auto;
}

.bundle-card {
    padding: 2rem;
    text-align: center;
}

.bundle-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(109, 40, 217, 0.1));
}

.bundle-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bundle-content {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.bundle-badges {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bundle-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.bundle-price small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    text-decoration: line-through;
}

/* Boutique CTA */
.boutique-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.boutique-cta p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== HERO FEATURES  INLINE HIGHLIGHTS ===== */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.hero-feat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: border-color 0.3s;
    position: relative;
}

.hero-feat:hover {
    border-color: var(--accent);
}

.hero-feat-new {
    border-color: rgba(234, 88, 12, 0.4);
    background: rgba(234, 88, 12, 0.06);
}

.hero-feat-new:hover {
    border-color: #ea580c;
}

.hero-feat-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.hero-feat div {
    display: flex;
    flex-direction: column;
}

.hero-feat strong {
    color: var(--text-main);
    font-size: 0.92rem;
}

.hero-feat span:not(.hero-feat-icon):not(.voice-badge-inline) {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.3;
}

.voice-badge-inline {
    position: absolute;
    top: -8px;
    right: 12px;
    background: linear-gradient(90deg, #ea580c, #dc2626);
    color: white;
    padding: 0.15rem 0.6rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4);
    }

    50% {
        box-shadow: 0 0 12px 3px rgba(234, 88, 12, 0.15);
    }
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: rgba(6, 182, 212, 0.4);
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.2);
    }

    50% {
        border-color: rgba(109, 40, 217, 0.6);
        box-shadow: 0 0 20px 4px rgba(109, 40, 217, 0.15);
    }
}

/* Responsive */
/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        display: block !important;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--glass-border);
        font-size: 1.1rem;
    }

    .nav-links .btn-discord {
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
    }

    /* Mobile dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown>.nav-dropdown-toggle {
        display: flex !important;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--glass-border);
        font-size: 1.1rem;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 500px;
    }

    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu a {
        padding: 0.8rem 1rem 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    .screen-grid {
        grid-template-columns: 1fr;
    }

    .hud-modes {
        grid-template-columns: 1fr;
    }

    .packs-grid {
        grid-template-columns: 1fr;
    }

    .pack-emojis {
        font-size: 1.5rem;
        letter-spacing: 0.3rem;
    }


    .hero-fused .hero-top {
        flex-direction: column;
        text-align: center;
    }

    .voice-title {
        font-size: 1.4rem;
    }

    .voice-steps {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .voice-advantages {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== LIGHTBOX - Click to Enlarge Images ===== */
.screen-img,
.hud-screenshot,
.lightbox-trigger {
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screen-img:hover,
.hud-screenshot:hover,
.lightbox-trigger:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.25);
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    animation: lightboxFadeIn 0.25s ease;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 12px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 20px 80px rgba(6, 182, 212, 0.2);
    animation: lightboxZoomIn 0.3s ease;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s, transform 0.2s;
    background: none;
    border: none;
    font-family: inherit;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.2);
}

.lightbox-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Heatmap Dual Section ===== */
.heatmap-dual-section {
    padding: 4rem 10%;
    background: linear-gradient(180deg, transparent, rgba(109, 40, 217, 0.03));
}

.heatmap-dual-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.heatmap-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.heatmap-card {
    padding: 2rem;
    text-align: center;
}

.heatmap-card img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
}



/* ===== LIGHTBOX - Click to Enlarge Images ===== */
.screen-img,
.hud-screenshot,
.lightbox-trigger {
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screen-img:hover,
.hud-screenshot:hover,
.lightbox-trigger:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.25);
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    animation: lightboxFadeIn 0.25s ease;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 12px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 20px 80px rgba(6, 182, 212, 0.2);
    animation: lightboxZoomIn 0.3s ease;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s, transform 0.2s;
    background: none;
    border: none;
    font-family: inherit;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.2);
}

.lightbox-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Heatmap Dual Section ===== */
.heatmap-dual-section {
    padding: 4rem 10%;
    background: linear-gradient(180deg, transparent, rgba(109, 40, 217, 0.03));
}

.heatmap-dual-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.heatmap-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.heatmap-card {
    padding: 2rem;
    text-align: center;
}

.heatmap-card img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
}

.heatmap-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.heatmap-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== TRIAL BANNER ===== */
.trial-banner {
    background: linear-gradient(90deg, #059669, #10b981);
    color: white;
    text-align: center;
    padding: 0.6rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

/* Push navbar below the trial banner */
body:has(.trial-banner) .navbar {
    top: 36px;
}

body:has(.trial-banner) .hero {
    padding-top: 160px;
}

body:has(.trial-banner) .hero.hero-split {
    padding-top: 180px;
}

/* ===== HERO SPLIT LAYOUT ===== */
.hero.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    text-align: left;
    min-height: 85vh;
    padding: 140px 8% 4rem;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-tagline {
    font-size: 1.3rem !important;
    color: var(--accent) !important;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem !important;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-split .cta-group {
    justify-content: flex-start;
}

.hero-visual {
    flex: 1;
    max-width: 600px;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15), 0 0 40px rgba(109, 40, 217, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(6, 182, 212, 0.25), 0 0 50px rgba(109, 40, 217, 0.15);
}

/* ===== cEV SHOWCASE SECTION ===== */
.cev-showcase {
    padding: 5rem 8%;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.04), rgba(109, 40, 217, 0.04));
    position: relative;
    overflow: hidden;
}

.cev-showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
    pointer-events: none;
}

.cev-showcase-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cev-image-side {
    flex: 1.3;
    min-width: 0;
}

.cev-image-wrapper {
    position: relative;
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.12), 0 0 40px rgba(16, 185, 129, 0.06);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cev-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2), 0 0 50px rgba(16, 185, 129, 0.1);
}

.cev-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.cev-text-side {
    flex: 1;
    min-width: 0;
}

.cev-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.cev-new-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: cevBadgePulse 3s infinite;
}

@keyframes cevBadgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 12px 3px rgba(16, 185, 129, 0.2);
    }
}

.cev-section-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: #10b981;
}

.cev-showcase h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.cev-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cev-positions-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cev-mode-group {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cev-mode-group:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}

.cev-mode-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.cev-pos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

.cev-pos-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: 'Courier New', monospace;
}

.cev-pos-value {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.cev-pos-value.positive {
    color: #34d399;
}

.cev-pos-value.negative {
    color: #ef4444;
}

.cev-filter-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.cev-cta {
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
}

/* cEV responsive */
@media (max-width: 900px) {
    .cev-showcase-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .cev-image-side,
    .cev-text-side {
        flex: none;
        width: 100%;
    }

    .cev-showcase h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .cev-badge-row {
        justify-content: center;
    }

    .cev-subtitle,
    .cev-filter-hint {
        text-align: center;
    }

    .cev-positions-block {
        flex-direction: column;
    }

    .cev-cta {
        display: block;
        text-align: center;
    }
}

/* ===== CAROUSEL ===== */
.carousel-section {
    padding: 4rem 2rem 3rem;
    overflow: hidden;
}

.carousel-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.slide-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.slide-header .mode-tag {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
}

.slide-title {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Slide image layouts */
.slide-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.slide-images.single img {
    max-width: 100%;
    max-height: 450px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    object-fit: contain;
}

.slide-images.dual {
    display: flex;
    gap: 1.5rem;
}

.slide-images.dual .slide-img-wrapper {
    flex: 1;
    text-align: center;
}

.slide-images.dual img {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    object-fit: contain;
}

.slide-images.triple {
    display: flex;
    gap: 1rem;
}

.slide-images.triple img {
    flex: 1;
    max-height: 350px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    object-fit: contain;
    min-width: 0;
}

.img-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-arrow:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.carousel-dot:hover {
    border-color: var(--accent);
}

/* ===== CTA FINAL ===== */
.cta-final .cta-box {
    max-width: 700px;
}

.reassurance-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.reassurance-list li {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-discord {
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-size: 1rem;
}

/* ===== RESPONSIVE — New Components ===== */
@media (max-width: 768px) {
    .trial-banner {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }

    body:has(.trial-banner) .navbar {
        top: 32px;
    }

    body:has(.trial-banner) .hero.hero-split {
        padding: 160px 5% 3rem;
    }

    .hero.hero-split {
        flex-direction: column;
        text-align: center;
        padding: 120px 5% 3rem;
        min-height: auto;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-split .cta-group {
        justify-content: center;
    }

    .hero-visual {
        max-width: 100%;
    }

    .carousel-section h2 {
        font-size: 1.8rem;
    }

    .carousel-slide {
        padding: 1rem;
    }

    .slide-images.dual,
    .slide-images.triple {
        flex-direction: column;
    }

    .slide-images.dual img,
    .slide-images.triple img {
        max-height: 280px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
    }

    .reassurance-list {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ===== PRICING REASSURANCE BAR ===== */
.pricing-reassurance-bar {
    padding: 3rem 5%;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.03), transparent);
}

.pricing-reassurance-bar .prb-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.pricing-reassurance-bar .prb-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.prb-cards {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.prb-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    min-width: 170px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.prb-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.15);
}

.prb-card.free {
    border-color: #10b981;
}

.prb-card.free:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.prb-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(109, 40, 217, 0.08));
}

.prb-card .prb-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.prb-card .prb-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.prb-card .prb-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.prb-card.free .prb-price {
    color: #10b981;
}

.prb-card .prb-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.prb-guarantees {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.prb-guarantee {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.prb-guarantee .prb-check {
    color: #10b981;
    font-weight: 700;
}

.prb-cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.prb-cta-row .btn-primary {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-reassurance-bar {
        padding: 2rem 4%;
    }

    .prb-cards {
        flex-direction: column;
        align-items: center;
    }

    .prb-card {
        width: 100%;
        max-width: 260px;
    }

    .prb-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .prb-cta-row {
        flex-direction: column;
        align-items: center;
    }
}