@charset "UTF-8";

/* =========================================
   1. VARIABLES & THEME SETUP
   ========================================= */
:root {
    /* Color Palette - Vibrant Storytelling */
    --dark-bg: #030303;
    /* True Abyss Black */
    --card-bg: #0a0a0a;
    /* Deep Card Background */

    /* Maximum Contrast Neon Colors */
    --neon-blue: #00eaff;
    /* Intense Cyan */
    --neon-orange: #ff0055;
    /* Neon Pink/Magenta for Sales Urgency */
    --neon-green: #00ff73;
    /* Bright Tech Green */
    --neon-purple: #b000ff;
    /* Deep Cyber Purple */

    /* Text Colors */
    --white: #ffffff;
    --text-light: #ffffff;
    --text-muted: #e0e0e0;
    /* High contrast muted */

    /* Glassmorphism */
    --glass-bg: rgba(20, 20, 20, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;

    /* Spacing & Layout */
    --section-padding: 100px;
    --border-radius-lg: 24px;
    --border-radius-btn: 50px;
}

/* =========================================
   2. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
html,
body {
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-weight: 800;
    /* Bolder headings as requested */
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 800;
    letter-spacing: -0.04em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    /* Lighter body text for contrast */
    color: var(--text-muted);
    line-height: 1.8;
}

.text-muted {
    color: var(--text-muted) !important;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* =========================================
   3. UNIFIED BUTTON SYSTEM (NEON)
   ========================================= */
/* Base Button Style */
.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--border-radius-btn);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
    cursor: pointer;
    gap: 0.75rem;
    text-decoration: none;
}

/* Hover Animation (Lift + Glow Pulse) */
.btn-neon:hover {
    transform: translateY(-4px) scale(1.02);
}

@media (max-width: 768px) {
    .btn-neon {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        /* Ensure full width on mobile for better centering */
    }

    .btn-neon i {
        display: none !important;
    }
}

/* Variant: Primary (Orange) */
.btn-neon-primary {
    background-color: var(--neon-orange);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.btn-neon-primary:hover {
    background-color: var(--neon-orange);
    color: var(--white);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.7), 0 0 80px rgba(255, 107, 53, 0.3);
}

/* Variant: Secondary (Cyan) */
.btn-neon-secondary {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.4);
}

.btn-neon-secondary:hover {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 40px rgba(0, 242, 234, 0.7), 0 0 80px rgba(0, 242, 234, 0.3);
}

/* Variant: WhatsApp (Green) */
.btn-neon-whatsapp {
    background-color: var(--neon-green);
    color: var(--white);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-neon-whatsapp:hover {
    background-color: var(--neon-green);
    color: var(--white);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.7), 0 0 80px rgba(37, 211, 102, 0.3);
}

/* Variant: Outline / Ghost (White) */
.btn-neon-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.btn-neon-outline:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Variant: White Solid (Email) */
.btn-neon-white {
    background-color: var(--white);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-neon-white:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

/* =========================================
   4. COMPONENT STYLES
   ========================================= */

/* Scarcity Top Bar */
.top-scarcity-bar {
    background: linear-gradient(90deg, #991b1b, #ef4444, #991b1b);
    background-size: 200% auto;
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2100;
    letter-spacing: 0.05em;
    animation: gradientMove 3s linear infinite;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .top-scarcity-bar {
        font-size: 0.7rem;
        padding: 6px 10px;
        line-height: 1.2;
    }
}

.top-scarcity-bar .pulse-badge {
    display: inline-block;
    background: white;
    color: #ef4444;
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 5px;
    animation: neonPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes neonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Navbar */
.navbar {
    position: absolute;
    top: 36px;
    /* Offset for top bar */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
    /* Just below the scarcity bar which is 2100 */
    background-color: var(--glass-bg);
    padding: 1rem 0;
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .navbar {
        top: 31px;
        /* Corrected offset for smaller mobile bar */
    }
}

.navbar-brand .header-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 242, 234, 0.3));
    transition: transform 0.3s ease;
}

.navbar-brand:hover .header-logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 2rem;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark-bg);
        padding: 1.5rem;
        border-radius: var(--border-radius-lg);
        border: 1px solid var(--glass-border);
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 200px 0 100px;
    /* Increased padding-top for fixed bar */
    background: radial-gradient(circle at 50% 30%, rgba(0, 242, 234, 0.05) 0%, rgba(5, 5, 5, 0) 60%);
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom right, #fff, #b3b3b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.hero-section h1 strong {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
    text-shadow: 0 0 25px rgba(0, 242, 234, 0.5);
    position: relative;
    z-index: 1;
}

.hero-section .lead {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* Sections Global */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 5rem;
}

/* AI Icon */
.ai-icon-container {
    padding: 4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 242, 234, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border: 1px solid rgba(0, 242, 234, 0.15);
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.05);
    transition: all 0.5s ease;
}

.ai-icon-container:hover {
    border-color: rgba(0, 242, 234, 0.5);
    box-shadow: 0 0 60px rgba(0, 242, 234, 0.2);
    transform: scale(1.05);
}

.ai-icon-container i {
    font-size: 6rem;
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 242, 234, 0.6);
}

@media (max-width: 768px) {
    .ai-icon-container {
        padding: 3rem;
    }

    .ai-icon-container i {
        font-size: 4rem;
    }
}

/* Cards */
/* Cards */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    color: var(--white);
    /* Force white text on cards */
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-blue);
    /* Direct neon color on border */
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.2), 0 0 60px rgba(0, 242, 234, 0.1);
    /* Stronger Neon Glow */
}

/* Service Cards */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.service-card .card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--white);
}

.price-comparison {
    min-height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.price-badge {
    background: rgba(0, 242, 234, 0.1);
    color: var(--neon-blue);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 242, 234, 0.2);
    margin-top: 5px;
}

.card-premium .price-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--neon-orange);
    border-color: rgba(255, 107, 53, 0.2);
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    color: var(--white);
}

.list-unstyled li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    color: var(--white);
    /* High contrast for list items */
    font-size: 1rem;
    font-weight: 300;
    /* Light weight for elegance */
}

.list-unstyled li i {
    color: var(--neon-blue);
    margin-right: 12px;
    margin-top: 5px;
    filter: drop-shadow(0 0 5px rgba(0, 242, 234, 0.4));
}

/* Card Premium (Institutional) */
.card-premium {
    background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(0, 242, 234, 0.3);
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.05);
}

.card-premium:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 60px rgba(0, 242, 234, 0.3);
    /* Even stronger for premium */
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--neon-orange);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 10;
}

/* Process Steps */
.process-step {
    background-color: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.1);
    transform: translateY(-5px);
}

.process-step i {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 242, 234, 0.4);
}

/* Testimonials */
#testimonios .card {
    background-color: var(--card-bg);
    border: 1px solid transparent;
}

#testimonios .card:hover {
    border-color: var(--glass-border);
}

#testimonios .fst-italic {
    font-size: 1rem;
    color: var(--white);
    font-weight: 300;
}

/* Accordion (FAQ) */
.accordion-item {
    background-color: transparent;
    border: 1px solid var(--glass-border);
    border-width: 0 0 1px 0;
    border-radius: 0;
}

.accordion-button {
    background-color: transparent !important;
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 2rem 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--neon-orange) !important;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.accordion-body {
    color: var(--text-muted);
    font-size: 1rem;
    padding-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #020202;
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.footer-logo {
    max-width: 150px;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--neon-blue)) drop-shadow(0 0 20px rgba(0, 242, 234, 0.3));
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    /* Ensure links wrap correctly on small screens */
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.5);
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.6));
    transform: translateY(-3px);
}

/* Scroll Up Button */
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 99;
}

.scroll-up-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-up-btn:hover {
    background-color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.4);
}

.scroll-up-btn i {
    color: var(--white);
    font-size: 1.5rem;
}

.scroll-up-btn:hover i {
    color: var(--dark-bg);
}

/* Legal Page Content */
.legal-page-content {
    padding-top: 160px !important;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Tech Strip */
.tech-strip .grayscale-hover {
    transition: all 0.5s ease;
}

.tech-strip i {
    color: rgba(255, 255, 255, 0.6);
    /* Brighter default state */
    transition: all 0.3s ease;
}

.tech-strip:hover i {
    color: var(--white);
    opacity: 1;
}

.tech-strip:hover i:hover {
    color: var(--neon-blue);
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.5));
}


/* =========================================
   10. MASTERPIECE FEATURES (PRICING & MOBILE)
   ========================================= */

/* Pricing Badges */
.price-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-blue);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 234, 0.3);
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.1);
}

.card:hover .price-badge {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.4);
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 15px;
    z-index: 2000;
    display: flex;
    gap: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.btn-sticky-whatsapp,
.btn-sticky-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-sticky-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-sticky-call {
    background-color: var(--white);
    color: var(--dark-bg);
}

.btn-sticky-whatsapp:active,
.btn-sticky-call:active {
    transform: scale(0.95);
}

/* Adjust body padding on mobile to prevent content overlap */
@media (max-width: 991px) {
    body {
        padding-bottom: 80px;
    }

    /* Hide the standalone scroll up button if sticky bar is present to cleaner UI */
    .scroll-up-btn {
        bottom: 90px;
        /* Push it up above the sticky bar */
    }
}

/* Scarcity Hero Badge */
.scarcity-badge-hero {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(255, 107, 53, 0.15));
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15), inset 0 0 20px rgba(239, 68, 68, 0.05);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.scarcity-badge-hero i {
    color: #ef4444;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.6));
    animation: fireFlicker 1s ease-in-out infinite alternate;
}

.scarcity-badge-hero strong {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin: 0 4px;
}

@keyframes badgeGlow {
    0% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.15), inset 0 0 20px rgba(239, 68, 68, 0.05);
    }

    100% {
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.3), inset 0 0 25px rgba(239, 68, 68, 0.08);
    }
}

@keyframes fireFlicker {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Scarcity Bar — Two-Tone (Consumed + Remaining) */
.scarcity-bar-wrapper {
    width: 380px;
    max-width: 90vw;
}

.scarcity-bar-track {
    display: flex;
    width: 100%;
    height: 32px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scarcity-bar-consumed {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f97316);
    background-size: 200% auto;
    animation: consumedGradient 3s linear infinite;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.scarcity-bar-remaining {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #00c9b7, #00f2ea, #34d399);
    background-size: 200% auto;
    animation: remainingGradient 3s linear infinite;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.scarcity-bar-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

@keyframes consumedGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes remainingGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Legend */
.scarcity-bar-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.legend-consumed {
    color: #ef4444;
}

.legend-consumed i {
    font-size: 0.45rem;
    vertical-align: middle;
    color: #ef4444;
}

.legend-remaining {
    color: var(--neon-blue);
}

.legend-remaining i {
    font-size: 0.45rem;
    vertical-align: middle;
    color: var(--neon-blue);
}

/* Mobile Scarcity Adjustments */
@media (max-width: 576px) {
    .scarcity-badge-hero {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .scarcity-badge-hero strong {
        font-size: 1.1rem;
    }

    .scarcity-bar-track {
        height: 26px;
    }

    .scarcity-bar-label {
        font-size: 0.6rem;
    }

    .scarcity-bar-legend {
        font-size: 0.7rem;
    }
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: cookieSlideUp 0.4s ease-out;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner p a {
    color: var(--neon-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 6px;
    padding: 7px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-btn-accept {
    background: var(--neon-blue);
    color: #000;
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
        text-align: center;
    }

    .cookie-banner p {
        font-size: 0.78rem;
    }

    /* Fix overlap in service cards */
    .service-card {
        padding-top: 20px;
    }

    .card-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .popular-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }
}