:root {
    --primary-color: #00ff88;
    --secondary-color: #00b8ff;
    --background-dark: #0a0a0a;
    --surface-dark: #121212;
    --surface-light: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-main: linear-gradient(135deg, #00ff88 0%, #00b8ff 100%);
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Global Section Spacing */
section {
    position: relative;
    margin-top: 60px;
    margin-bottom: 40px;
}

/* Hero & First Section Handling */
/* The first section must NOT have a top margin to avoid white bar above background */
/* Instead, it needs padding to clear the fixed header */
body>section:first-of-type,
main>section:first-of-type {
    margin-top: 0 !important;
    padding-top: 200px;
    /* 80px Header + 120px spacing for Laptops */
}

/* Hero classes need specific padding */
.hero,
.product-hero-mode {
    margin-top: 0 !important;
    padding-top: 220px !important;
    /* Keep original hero look */
}

.product-hero-mode {
    padding-top: 260px !important;
    /* Increased to ensure title clears header on all laptops */
    align-items: flex-start;
    /* Prevent vertical centering from pushing content up */
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.cta-button {
    background: var(--gradient-main);
    color: var(--background-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    transition: transform var(--transition-speed);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 184, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    text-align: center;
    padding-top: 220px;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.secondary-button:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Features/Carousel Mockup */
.carousel-section {
    padding: 5rem 0;
    background: var(--surface-dark);
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title p {
    color: var(--text-secondary);
}

.carousel-container {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.carousel-item {
    width: 200px;
    height: 120px;
    background: var(--surface-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pricing */
.pricing {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--surface-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-speed);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: rgba(30, 30, 30, 0.8);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.plan-features li i {
    color: var(--primary-color);
}

/* Content SEO Section */
.seo-content {
    padding: 5rem 0;
    background: var(--surface-dark);
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
}

.seo-text p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.1rem;
}

.seo-text h2 {
    color: var(--primary-color);
    margin-top: 2rem;
}

/* Footer */
footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-secondary);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Pricing Grid - Force 4 horizontally on large screens */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: rgba(10, 10, 10, 0.98);
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Movie Carousel Posters */
.movie-poster {
    width: 150px;
    height: 220px;
    background: #222;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
    border: 1px solid var(--glass-border);
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.6;
}

.movie-poster:hover img {
    opacity: 0.3;
}

.movie-title {
    z-index: 2;
    font-size: 0.8rem;
    text-align: center;
    font-weight: bold;
}

/* Fix for CTA button inside Nav Links */
.nav-links .cta-button {
    color: var(--background-dark) !important;
    display: inline-block;
    /* Ensure proper spacing/sizing */
}

.nav-links .cta-button:hover {
    color: var(--background-dark) !important;
}

/* New Pricing Elements */
.pricing-badge {
    background: #2a2a35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.pricing-card.featured .pricing-badge {
    background: var(--primary-color);
    color: #000;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-per-month {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-subtext {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    min-height: 40px;
    /* Aligns cards */
}

.payment-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #fff;
}

.pricing-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 1rem;
    line-height: 1.2;
}

.pricing-footer .dot {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    display: inline-block;
}

/* Centering Footer Menu */
.footer-grid {
    text-align: center;
    justify-content: center;
    /* Helpful if grid items don't fill row */
    justify-items: center;
    /* Centers grid items in their cells */
}

/* Ensure list items are centered if they aren't already */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEADER LAYOUT: Logo Left | Menu Center | Button Right */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
    /* Force height to align */
}

/* Remove default flex alignment if it conflicts */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.desktop-only-btn {
    display: inline-block;
    margin-left: auto;
    /* Pushes to right in some flex contexts, but absolute center takes precedence for links */
}

.mobile-only-btn {
    display: none;
}

/* Ensure Button Style overrides (Green gradient from image) */
.cta-button {
    background: linear-gradient(90deg, #00ff88 0%, #00d4ff 100%);
    color: #000 !important;
    /* Text color black? Or white? Image looks kinda dark text or white on bright green. Let's try dark for contrast */
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {

    /* Show Hamburger on Tablet/Mobile */
    .hamburger {
        display: block;
        z-index: 1001;
        /* Above nav links */
    }

    /* Hide desktop button, Show mobile button */
    .desktop-only-btn {
        display: none;
    }

    .mobile-only-btn {
        display: block;
        margin-top: 1rem;
    }

    /* Reset Nav Links positioning for Mobile Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        /* Cover full screen including header area if needed, or stick to 70px */
        left: 0;
        transform: translateX(100%);
        /* Start hidden */
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Center items vertically */
        padding-top: 0;
        z-index: 999;
        /* Behind hamburger */
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        /* Larger font for touch */
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 180px;
        /* Reduces space slightly on very small screens */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }
}

/* Product Page Specific Styles */
.product-hero-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.product-col {
    flex: 1;
    min-width: 300px;
}

/* Mobile adjustments for product pages */
@media (max-width: 768px) {
    .product-hero-flex {
        flex-direction: column;
        gap: 2rem;
        /* text-align: center; Optional, keeping explicit for now */
    }

    .product-col {
        min-width: 100% !important;
        flex: auto;
    }

    /* Ensure image container doesn't overflow */
    .product-col img {
        max-width: 100%;
        height: auto;
        margin: 0 auto 2rem auto;
        /* Add bottom margin to separate from title */
        display: block !important;
        /* Force display in case of conflicts */
    }

    /* Center buttons on mobile */
    .product-col .cta-button,
    .product-col .secondary-button {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    /* Ensure title has space above if image is somehow missing, but image should be there */
    .product-col h1 {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 180px;
        /* Reduces space slightly on very small screens */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }
}

/* Product Page Specific Styles */
.product-hero-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.product-col {
    flex: 1;
    min-width: 300px;
}

/* NEW PRICING CARD STYLES */
.pricing-card {
    background: #1f1f1f !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    position: relative !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}
.pricing-card.featured {
    transform: scale(1.05) !important;
    border: 1px solid #007bff !important;
    z-index: 10;
}
.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.pricing-badge-text {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.pricing-pill {
    background: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}
.plan-name-new {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.plan-price-new {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: baseline;
}
.plan-subtext-new {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.cta-button-blue {
    background: #007bff;
    color: white !important;
    width: 100%;
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: background 0.3s;
    text-decoration: none;
}
.cta-button-blue:hover {
    background: #0056b3;
}
.cta-guarantee {
    text-align: center;
    color: #888;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}
.plan-features-new {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #333;
}
.plan-features-new li {
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #ddd;
}
.plan-features-new li:last-child {
    border-bottom: none;
}
.icon-white { color: #fff; }
.icon-blue { color: #007bff; }


/* WORLD CLASS PRICING REDESIGN */
.pricing-section-container {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    overflow: hidden;
}

/* Background animated glow */
.pricing-section-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(0,255,136,0.05) 0%, rgba(0,184,255,0.05) 50%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.pricing-grid-worldclass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.wc-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.wc-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 184, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 184, 255, 0.15);
}

/* Featured Card Neon Glow */
.wc-card.featured {
    background: rgba(25, 25, 30, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15), inset 0 0 20px rgba(0, 255, 136, 0.05);
    transform: scale(1.05);
    z-index: 11;
}

.wc-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3), inset 0 0 30px rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.8);
}

.wc-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00ff88 0%, #00b8ff 100%);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.wc-header {
    margin-bottom: 2rem;
    text-align: center;
}

.wc-title {
    font-family: 'Outfit', sans-serif;
    color: #888;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.wc-price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.wc-price {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.wc-currency {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
}

.wc-subtext {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.wc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.wc-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
}

.wc-features li i {
    color: #00b8ff;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.wc-features li i.premium-check {
    color: #00ff88;
}

.wc-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.wc-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.1);
}

.wc-btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
}

.wc-btn-gradient {
    background: linear-gradient(90deg, #00ff88 0%, #00b8ff 100%);
    color: #000 !important;
    box-shadow: 0 10px 20px rgba(0, 184, 255, 0.3);
}

.wc-btn-gradient:hover {
    box-shadow: 0 15px 30px rgba(0, 184, 255, 0.5);
    filter: brightness(1.1);
}

.wc-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Image Showcase */
.showcase-container {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}
.showcase-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}
.showcase-container:hover img {
    transform: scale(1.02);
}
.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

/* Force 4 Columns on Desktop, 1 Column on Mobile */
.pricing-grid-worldclass {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
}

@media (max-width: 1024px) {
    .pricing-grid-worldclass {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid-worldclass {
        grid-template-columns: 1fr !important;
    }
}


/* =========================================
   MULTI-ECRANS PRICING (MATCHING IMAGE)
   ========================================= */
.multi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.multi-card {
    background-color: #171c35; /* Dark blue from image */
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.multi-card:hover {
    transform: translateY(-10px);
}

/* Ribbon */
.multi-ribbon {
    position: absolute;
    top: 15px;
    left: -35px;
    background: #5a00ff; /* Purple ribbon */
    color: white;
    padding: 5px 40px;
    font-size: 11px;
    font-weight: bold;
    transform: rotate(-45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Box Image Placeholder */
.multi-box-icon {
    font-size: 60px;
    color: #ffd700;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

.multi-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.multi-screens {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 25px;
}

.multi-price-old {
    color: #00ff00;
    font-size: 14px;
    text-decoration: line-through;
    margin-bottom: 5px;
}
.multi-price-new {
    color: white;
    font-size: 40px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.multi-price-new .currency {
    font-size: 20px;
}


.btn-commander-cyan {
    background: linear-gradient(90deg, #00f0ff 0%, #0088ff 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 8px;
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}
.btn-commander-cyan:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.5);
    color: #000;
}
.multi-card .wc-btn-gradient { display: none; } /* Hide old button */



/* =========================================
   HEADER DESKTOP STYLES
   ========================================= */
.nova-header {
    background-color: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.nova-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}
.nova-logo .logo-icon {
    font-size: 24px;
    color: #00ffaa;
}
.nova-logo .logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}
.nova-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(20, 20, 25, 0.9);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.nova-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nova-nav a:hover {
    color: #00ffaa;
}
.nova-btn-premium {
    background: linear-gradient(90deg, #00ffaa 0%, #00d4ff 100%);
    color: #000;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 170, 0.2);
}
.nova-btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 255, 170, 0.4);
}
.marketing-banner {
    background: linear-gradient(90deg, #ff0055 0%, #ff6600 100%);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
}

/* =========================================
   MOBILE RESPONSIVENESS FIXES
   ========================================= */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }
    .nova-logo {
        width: 100%;
        justify-content: center;
    }
    .nova-logo .logo-text {
        font-size: 18px;
    }
    .nova-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .nova-nav a {
        font-size: 14px;
    }
    .nova-btn-premium {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
    
    /* Pricing Cards Adjustment */
    .multi-card {
        padding: 20px 15px;
    }
    .multi-price-new {
        font-size: 30px;
    }
    .btn-commander-cyan {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Footer Adjustment */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-col {
        margin-bottom: 30px;
    }
    
    /* Titles */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.8rem !important; }
}




/* =========================================
   VERTICAL OFF-CANVAS MOBILE MENU (STRICT)
   ========================================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #00ffaa;
    cursor: pointer;
    z-index: 1001;
}
.mobile-btn-premium {
    display: none;
}
@media (max-width: 768px) {
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        padding: 15px 20px !important;
    }
    .nova-logo {
        width: auto !important;
        justify-content: flex-start !important;
    }
    .desktop-btn-premium {
        display: none !important;
    }
    .menu-toggle {
        display: block !important;
    }
    
    /* Strict Vertical Menu */
    .nova-nav {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background-color: #050505 !important;
        padding-top: 80px !important;
        transition: right 0.4s ease !important;
        z-index: 1000 !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5) !important;
    }
    .nova-nav.active {
        right: 0 !important;
    }
    .nova-nav a {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        font-size: 18px !important;
        padding: 15px 25px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: #fff !important;
    }
    .nova-nav a:hover {
        background: rgba(0, 255, 170, 0.1) !important;
        padding-left: 30px !important;
        color: #00ffaa !important;
    }
    .mobile-btn-premium {
        display: block !important;
        margin: 20px !important;
        text-align: center !important;
        background: linear-gradient(90deg, #00ffaa 0%, #00d4ff 100%) !important;
        color: #000 !important;
        border-radius: 30px !important;
        padding: 15px !important;
    }
}

/* =========================================
   MOBILE SCROLL FIX (PREVENT HORIZONTAL)
   ========================================= */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}
