     @media (min-width: 1200px) {
    .h2, h2 {
        font-size: 3rem;
    }
}
        :root {
            --bg-dark: #050505;
            --bg-card: rgba(20, 20, 20, 0.6);
            --primary-purple: #7b2cbf;
            --accent-purple: #9d4edd;
            --text-white: #ffffff;
            --text-muted: #b0b0b0;
            --glass-border: rgba(255, 255, 255, 0.1);
            --glow: 0 0 20px rgba(123, 44, 191, 0.4);
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* --- BACKGROUND EFFECTS --- */
        .noise-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://grainy-gradients.vercel.app/noise.svg');
            opacity: 0.05;
            pointer-events: none;
            z-index: 9999;
        }

        .aurora-blob {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
            filter: blur(80px);
            opacity: 0.3;
            z-index: -1;
            animation: float 10s infinite ease-in-out;
        }

        @keyframes float {
            0% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
            100% { transform: translate(0, 0); }
        }

        /* --- GLASSMORPHISM --- */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-purple);
            box-shadow: var(--glow);
        }

        /* --- TYPOGRAPHY & GRADIENTS --- */
        .text-gradient {
            background: linear-gradient(90deg, #fff, #9d4edd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .highlight-purple {
            color: var(--accent-purple);
            font-weight: bold;
        }

        /* --- BUTTONS --- */
        .btn-primary-glow {
            background: linear-gradient(45deg, var(--primary-purple), var(--accent-purple));
            border: none;
            color: white;
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(123, 44, 191, 0.5);
        }

        .btn-primary-glow:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
            color: white;
        }

        /* --- SECTIONS --- */
        section {
            padding: 80px 0;
            position: relative;
        }

        /* --- HERO --- */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at top right, rgba(123, 44, 191, 0.2), transparent 40%);
        }

        /* --- SOCIAL PROOF STRIP --- */
        .social-proof-strip {
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .logo-scroll {
            filter: grayscale(100%) opacity(0.5);
            transition: 0.3s;
        }
        .logo-scroll:hover { filter: grayscale(0) opacity(1); }

        /* --- VSL SECTION --- */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
        }

        /* --- PROCESS STEPS --- */
        .step-number {
            font-size: 4rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
            position: absolute;
            top: 0;
            right: 20px;
            line-height: 1;
        }

        /* --- FAQ ACCORDION --- */
        .accordion-item {
            background: transparent;
            border: 1px solid var(--glass-border);
            margin-bottom: 10px;
            border-radius: 8px !important;
        }
        .accordion-button {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) {
            background: rgba(123, 44, 191, 0.2);
            color: white;
        }
        .accordion-body {
            background: rgba(0,0,0,0.2);
            color: var(--text-muted);
            font-size: 16px;
        }

        /* --- COMPARISON TABLE --- */
        .table-dark-custom {
            background: transparent;
            color: white;
        }
        .table-dark-custom th, .table-dark-custom td {
            border-color: var(--glass-border);
            background: transparent;
            padding: 20px;
        }
        .check-icon { color: #00ff88; }
        .x-icon { color: #ff4d4d; }
        .text-muted {
            color:white !important;
        }

        /* --- SPOTLIGHT CARD EFFECTS --- */
.spotlight-wrapper {
    position: relative;
    background-color: #000;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(123, 44, 191, 0.3);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    padding: 4rem 2rem;
    text-align: center;
}

/* The glowing light from the top */
.spotlight-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(123, 44, 191, 0.5) 0%, rgba(5, 5, 5, 0) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

/* Subtle grain/noise for texture (optional, matches your theme) */
.spotlight-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    z-index: 2;
    opacity: 0.3;
    pointer-events: none;
}

/* The Pill Badge */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 3;
}

/* Content styling to ensure it sits above the glow */
.spotlight-content {
    position: relative;
    z-index: 3;
}
body, h1, h2, h3, h4 {
    font-family: 'Poppins' !important;
}
body {
    font-size: 22px;
}
.text-danger {
    color:#7b2cbf !important;
}

/* --- SPOTLIGHT CARD UPDATE --- */

.spotlight-wrapper {
    position: relative;
    background-color: #020202; /* Nearly black */
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(123, 44, 191, 0.3);
    box-shadow: 0 0 80px rgba(123, 44, 191, 0.15); /* Outer ambient glow */
    padding: 5rem 2rem; /* More breathing room */
    text-align: center;
}

/* THE NEW PATTERN LAYER */
.spotlight-pattern {
    position: absolute;
    inset: 0; /* Full width/height */
    
    /* Creates a subtle grid lines */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; /* Size of grid squares */
    
    /* Fades the pattern out so it's only visible near the top light */
    mask-image: radial-gradient(circle at 50% 0%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 0%, black 30%, transparent 80%);
    
    z-index: 1; /* Sits above background color */
    pointer-events: none;
}

/* The glowing light (Updated Z-Index) */
.spotlight-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(123, 44, 191, 0.6) 0%, rgba(5, 5, 5, 0) 100%);
    z-index: 2; /* Sits ON TOP of the pattern to tint it purple */
    pointer-events: none;
    mix-blend-mode: screen; /* Helps it blend nicely */
}

/* Content (Updated Z-Index) */
.spotlight-content {
    position: relative;
    z-index: 10; /* Must be highest */
}

/* Pill Badge Update (Glassier look) */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

 /* --- HOLOGRAPHIC VALUE STACK --- */

/* The Container for the Right Side */
.value-stack-container {
    position: relative;
    padding: 20px;
}

/* The Rotating Ring Background Object */
.energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    z-index: 0;
    animation: spin-slow 20s linear infinite;
}

.energy-ring::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(123, 44, 191, 0.1);
    border-radius: 50%;
    border-left-color: var(--accent-purple);
    animation: spin-reverse 15s linear infinite;
}

@keyframes spin-slow { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

/* The Individual Value Cards */
.value-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--text-muted); /* Default state */
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* The Floating Animation applied to cards */
    animation: float-card 6s ease-in-out infinite;
}

/* Offsetting animations so they don't move in unison */
.value-bar:nth-child(1) { animation-delay: 0s; }
.value-bar:nth-child(2) { animation-delay: 1s; border-left-color: #9d4edd; }
.value-bar:nth-child(3) { animation-delay: 2s; }
.value-bar:nth-child(4) { animation-delay: 3s; border-left-color: #9d4edd; }

.value-bar:hover {
    transform: translateX(-10px) scale(1.02);
    border-color: var(--accent-purple);
    border-left-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.3);
    background: rgba(30, 30, 30, 0.9);
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* The Price Styling */
.price-strike {
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
    margin-right: 10px;
}

.price-tag {
    font-weight: 700;
    color: var(--text-white);
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

/* The Total Value Box */
.total-value-box {
    margin-top: 2rem;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.4);
    overflow: hidden;
}

/* Shimmer effect on the total box */
.total-value-box::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
/* --- COMPARISON TABLE (CONSISTENT) --- */

.comparison-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(123, 44, 191, 0.08), transparent 70%);
}

.custom-table-container {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.table-custom {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0;
    margin-bottom: 0;
    color: #e0e0e0;
    /* Enforce Font Consistency */
    font-family: 'Poppins', sans-serif; 
}

/* --- TEXT SIZING & SPACING --- */
.table-custom th, .table-custom td {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    font-size: 1.1rem; /* Consistent size for all text */
    line-height: 1.5;
}

/* Header Styling */
.table-custom th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b0b0b0; /* Consistent header color */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Feature Column (Left) */
.feature-cell {
    text-align: left;
    padding-left: 2rem !important;
    font-weight: 500;
    color: white;
}

/* --- ICON CONSISTENCY --- */
.table-icon {
    font-size: 1.4rem; /* Fixed size for all icons */
    width: 30px;       /* Fixed width for alignment */
    text-align: center;
    vertical-align: middle;
    display: inline-block;
}

.icon-check {
    color: #00ff88;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.icon-x {
    color: #ff4d4d;
    filter: drop-shadow(0 0 8px rgba(255, 77, 77, 0.3));
    opacity: 0.8;
}

/* --- THE WINNER COLUMN --- */
.winner-header {
    background: linear-gradient(180deg, var(--primary-purple), rgba(123, 44, 191, 0.8));
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
}

.winner-col {
    background: rgba(123, 44, 191, 0.08);
    border-left: 1px solid rgba(157, 78, 221, 0.2);
    border-right: 1px solid rgba(157, 78, 221, 0.2);
    font-weight: 600;
    color: white;
    font-size: 1.15rem; /* Slightly larger for emphasis */
}

/* Bottom rounded corners for winner column */
.table-custom tbody tr:last-child .winner-col {
    border-bottom: 3px solid var(--accent-purple);
}

/* Muted text for competitors */
.text-dim {
    color: #888;
    font-weight: 400;
}
   /* --- NAVIGATION STYLES --- */
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-link {
    color: #e0e0e0 !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-purple) !important;
}

/* Add a glowing dot under active/hovered links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent-purple);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}
  /* --- HERO REIMAGINED: COSMIC DEPTH --- */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #020202; /* Deepest black */
}

/* 1. The Moving 3D Grid Floor */
.hero-mesh {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(123, 44, 191, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 44, 191, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    animation: mesh-move 20s linear infinite;
    mask-image: linear-gradient(to top, black 20%, transparent 80%);
    -webkit-mask-image: linear-gradient(to top, black 20%, transparent 80%);
    z-index: 1;
    opacity: 0.4;
}

@keyframes mesh-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

/* 2. The Central Glow Source */
.hero-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* 3. Floating Background Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-purple), transparent);
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
    animation: float-around 15s infinite ease-in-out;
}
.orb-1 { width: 300px; height: 300px; top: 10%; left: 10%; animation-delay: 0s; }
.orb-2 { width: 200px; height: 200px; bottom: 20%; right: 10%; animation-delay: -5s; background: var(--accent-purple); }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(50px, -50px); }
    66% { transform: translate(-30px, 30px); }
}

/* 4. Text Effects */
.hero-title-modern {
    font-size: 5.5rem; /* Massive size */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 10;
}

/* The Shimmer Effect on Text */
.text-shimmer {
    background: linear-gradient(to right, #ffffff 20%, #d8b4fe 50%, #ffffff 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-sub-modern {
    font-size: 1.4rem;
    color: #b0b0b0;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

/* 5. Super Button */
.btn-super-hero {
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 100px;
    background: white;
    color: black;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.btn-super-hero:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.8);
    background: var(--accent-purple);
    color: white;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .hero-title-modern { font-size: 3rem; }
    .hero-sub-modern { font-size: 1.1rem; }
}
</style>
<style type="text/css">
 /* --- HERO REIMAGINED: INTERACTIVE OBJECTS --- */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #020202;
    perspective: 1000px; /* Needed for 3D feel */
}

/* The Container */
.parallax-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* The Floating Glass Icon Bubbles */
.glass-icon-box {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%; /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    color: white;
    font-size: 1.8rem;
    will-change: transform;
}

/* Specific Positions & Colors */

/* 1. Top Right: Growth Chart */
.icon-chart {
    top: 18%;
    right: 15%;
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}
.icon-chart i { color: #00ff88; }

/* 2. Bottom Left: Funnel */
.icon-funnel {
    bottom: 25%;
    left: 12%;
    width: 100px; /* Slightly larger */
    height: 100px;
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.15);
}
.icon-funnel i { color: var(--accent-purple); }

/* 3. Top Left: Users/Clients (Further back) */
.icon-users {
    top: 25%;
    left: 20%;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    opacity: 0.6;
    border-color: rgba(255, 255, 255, 0.2);
}

/* 4. Background Ring (Abstract) */
.abstract-ring {
    position: absolute;
    bottom: 15%;
    right: 25%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotateX(60deg);
}

/* Re-ensuring text stays on top */
.hero-content-layer {
    position: relative;
    z-index: 10;
}
/* 4. Bottom Right: Rocket (Launch/Scale) */
.icon-rocket {
    bottom: 20%;
    right: 20%;
    width: 90px;
    height: 90px;
    border-color: rgba(255, 193, 7, 0.3); /* Gold tint for energy */
    box-shadow: 0 0 35px rgba(255, 193, 7, 0.15);
    background: rgba(255, 255, 255, 0.04);
}
.icon-rocket i { 
    color: #ffc107; 
    transform: rotate(-45deg); /* Angle the rocket upwards */
}
/* --- HERO OBJECT: THE CLIENT FLOW ENGINE --- */

.hero-object-container {
    position: absolute;
    bottom: -22%; /* "Half index finger" gap from CTA */
    left: 0; 
    width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; 
    pointer-events: none;
}

/* 1. THE SIGNAL WAVES (Attraction) */
.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    border: 1px solid;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
    animation: ripple-spread 8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

/* Pulse Colors - Deep Purple Brand Consistency */
.ripple-wave:nth-child(1) { 
    animation-delay: 0s; 
    border-color: rgba(123, 44, 191, 0.6); 
    box-shadow: 0 0 30px rgba(123, 44, 191, 0.3);
}
.ripple-wave:nth-child(2) { 
    animation-delay: 2s; 
    border-color: rgba(140, 60, 210, 0.5); 
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.2);
}
.ripple-wave:nth-child(3) { 
    animation-delay: 4s; 
    border-color: rgba(157, 78, 221, 0.4); 
    box-shadow: 0 0 10px rgba(123, 44, 191, 0.1);
}
.ripple-wave:nth-child(4) { 
    animation-delay: 6s; 
    border-color: rgba(123, 44, 191, 0.2); 
    box-shadow: none;
}

@keyframes ripple-spread {
    0% { width: 420px; height: 420px; opacity: 0.8; border-width: 3px; }
    100% { width: 1400px; height: 1400px; opacity: 0; border-width: 0px; }
}

/* 2. THE SYSTEM SPHERE */
.sphere-casing {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    position: relative;
    overflow: hidden; 
    /* Darker, richer core to represent "Depth" and "Substance" */
    background: radial-gradient(circle at 50% 50%, #240046, #000); 
    box-shadow: 
        inset -20px -20px 60px rgba(0,0,0,0.9), 
        inset 10px 10px 40px rgba(157, 78, 221, 0.3),
        0 0 80px rgba(123, 44, 191, 0.5); 
    z-index: 10;
    will-change: transform;
}

/* The Network Grid (Represents "System" & "Connection") */
.sphere-network {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    /* Creates a connected node effect */
    background-image: 
        radial-gradient(circle, rgba(157, 78, 221, 0.4) 2px, transparent 2.5px),
        linear-gradient(rgba(157, 78, 221, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.1) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 60px 60px;
    background-position: 0 0, 30px 30px, 30px 30px;
    animation: sphere-spin 80s linear infinite; /* Very slow, majestic rotation */
    opacity: 0.5;
}

/* The Magnetic Core (Represents the "Signature Offer") */
.sphere-core-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.8), transparent 70%);
    filter: blur(20px);
    opacity: 0.8;
    animation: core-pulse 6s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes sphere-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 3. HOLOGRAPHIC SYMBOLS (Relevant to Avatar Desires) */
/* These are faint, ghostly, and float inside the glass */
.hologram-symbol {
    position: absolute;
    color: rgba(255, 255, 255, 0.15); /* Very subtle */
    font-size: 2.5rem;
    filter: blur(1px); /* Makes it look inside the glass */
    transform-style: preserve-3d;
    animation: float-hologram 10s infinite ease-in-out alternate;
    z-index: 5;
}

.holo-target { top: 35%; left: 35%; animation-delay: 0s; } /* Clarity/Niche */
.holo-user { top: 25%; left: 60%; font-size: 2rem; animation-delay: -3s; } /* Leads */
.holo-check { top: 60%; left: 45%; font-size: 3rem; color: rgba(157, 78, 221, 0.3); animation-delay: -5s; } /* Bookings */

@keyframes float-hologram {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.1; }
    100% { transform: translate(10px, -10px) scale(1.1) rotate(5deg); opacity: 0.3; }
}

/* 4. REALISM LAYERS */
.sphere-glass-shine {
    position: absolute;
    top: 5%; left: 10%;
    width: 45%; height: 30%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 60%);
    filter: blur(10px);
    opacity: 0.5;
    z-index: 20;
}

.sphere-bottom-light {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: radial-gradient(circle at 50% 100%, rgba(123, 44, 191, 0.7), transparent 60%);
    opacity: 0.7;
    z-index: 15;
    mix-blend-mode: screen;
}
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}
.fst-italic {
    font-size: 18px;
}
.price-tag {
    display: none;
}
/* --- MOBILE SPACING FIX --- */
@media (max-width: 768px) {
    /* Increases side padding for all content containers on mobile */
    .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

}

.text-primary, .link-primary:focus, .link-primary:hover, .link-primary {color:white !important;}

/* --- 1. BOOTSTRAP OVERRIDES (The "Right" Way) --- */
        :root {
            /* Map Brand Colors to Bootstrap Variables */
            --bs-body-bg: #020202;              /* Main Background */
            --bs-body-color: #ffffff;           /* Main Text */
            --bs-primary: #9d4edd;              /* Accent Purple (h2, links) */
            --bs-secondary: #7b2cbf;            /* Deep Purple (bullets) */
            --bs-border-color: rgba(255,255,255,0.1); /* Subtle Borders */
            --bs-font-sans-serif: 'Poppins', sans-serif;
        }

        /* Adjust text-muted for dark mode readability */
        .text-muted { color: #b0b0b0 !important; }

        /* --- 2. ATMOSPHERE (Visuals Only) --- */
        .noise-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://grainy-gradients.vercel.app/noise.svg');
            opacity: 0.05;
            pointer-events: none;
            z-index: 9999;
        }

        .ambient-glow {
            position: fixed;
            width: 800px; height: 800px;
            background: radial-gradient(circle, var(--bs-secondary) 0%, transparent 65%);
            filter: blur(120px);
            opacity: 0.15;
            z-index: -1;
            pointer-events: none;
        }

        /* Navbar Blur */
        .navbar {
            background: rgba(2, 2, 2, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--bs-border-color);
        }

        /* List Styling */
        ul li::marker { color: var(--bs-secondary); }