:root {
    --bg-dark: #070707;
    --bg-darker: #000000;
    --bg-panel: rgba(20, 20, 20, 0.6);
    --primary-green: #00e676;
    --secondary-green: #00c853;
    --text-white: #f8f9fa;
    --text-muted: #8e95a0;
    --border-dark: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Typography & Utilities */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-green), #00b0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fs-7 { font-size: 0.875rem; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.spacing-1 { letter-spacing: 1.5px; }
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #000;
}
.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}
.btn-outline-success {
    border-color: var(--primary-green);
    color: var(--primary-green);
}
.btn-outline-success:hover {
    background-color: var(--primary-green);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}
.btn-outline-light:hover {
    color: #000;
}
.btn-hover-effect {
    transition: all 0.3s ease;
}
.btn-hover-effect:hover {
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: rgba(7, 7, 7, 0.8) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.9) !important;
}
.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-white) !important;
}
.btn-get-started {
    font-weight: 600;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Custom Glass Panel */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-dark);
}
.glass-card {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
}
.glass-pill {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}
.glass-pill:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: var(--primary-green) !important;
}
.virtual-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.virtual-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0,230,118,0.15) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
}
.badge-outline {
    border: 1px solid rgba(0, 230, 118, 0.3);
    background: rgba(0, 230, 118, 0.05);
}

/* Hero Devices */
.hero-devices {
    perspective: 1200px;
    height: 500px;
}


/* Dashboard UI in Laptop */
.dashboard-ui {
    background: #121212;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}
.dash-nav {
    height: 20px;
    background: #1e1e1e;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
}
.dash-hero {
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 0, 0, 0));
    border: 1px solid #2a2a2a;
    border-radius: 8px;
}
.dash-card {
    height: 60px;
    background: #1e1e1e;
    border-radius: 6px;
}
.card-green {
    width: 120px;
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.3);
}
.dash-chart {
    flex-grow: 1;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
}
.chart-stroke {
    stroke: var(--primary-green);
    filter: drop-shadow(0px 4px 6px rgba(0,230,118,0.5));
}
.chart-line {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

/* Mobile Mockup 3D Styling */
.mobile-mockup {
    width: 260px;
    height: 520px;
    position: absolute;
    transform-style: preserve-3d;
}
.mobile-mockup.bg-phone {
    right: 40px;
    bottom: -10px;
    /* Sign In Phone: Tilted further back on the right */
    transform: rotateY(-20deg) rotateX(12deg) rotateZ(3deg) translateZ(-80px) scale(0.9);
    z-index: 1;
    filter: brightness(0.7); /* Deepened just enough to show depth, NO blur */
}
.mobile-mockup.fg-phone {
    right: 230px;
    bottom: -40px;
    /* Discover Phone: Prominent on the left, sticking out */
    transform: rotateY(-12deg) rotateX(6deg) rotateZ(-1deg) translateZ(40px) scale(0.95);
    z-index: 2;
}

.iphone-frame {
    background: linear-gradient(135deg, #5a5a5a 0%, #1a1a1a 15%, #2a2a2a 50%, #0a0a0a 85%, #4a4a4a 100%);
    border-radius: 44px;
    padding: 11px;
    height: 100%;
    /* Photorealistic Polished Soft Metallic Edge */
    box-shadow: 
        inset 0 0 8px rgba(255, 255, 255, 0.5),
        /* Bright metallic reflection ring */
        -1px 2px 1px rgba(255,255,255,0.3),
        /* Outer structural curve */
        -3px 5px 6px #111,
        -5px 8px 10px #0a0a0a,
        /* Immense deep ambient occlusion shadow */
        -15px 25px 30px rgba(0,0,0,0.7),
        -25px 40px 50px rgba(0,0,0,0.9);
    position: relative;
    border: 1px solid rgba(255,255,255,0.15);
}
.iphone-frame::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
    z-index: 20;
}

.dynamic-island {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 18px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: inset 0 0 5px rgba(255,255,255,0.15), 0 5px 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
}
.camera-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111;
    box-shadow: inset -1px -1px 2px rgba(255,255,255,0.2), inset 1px 1px 2px rgba(0,0,0,0.8);
}

.iphone-frame .screen {
    background: #070707;
    border-radius: 30px;
    height: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #000;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.9);
}

/* Custom UI Elements */
.radar-circle {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 230, 118, 0.15);
}
.rc-1 { width: 80px; height: 80px; background: rgba(0,230,118,0.1); }
.rc-2 { width: 140px; height: 140px; background: rgba(0,230,118,0.05); border: 1px solid rgba(0, 230, 118, 0.2); }
.rc-3 { width: 200px; height: 200px; background: rgba(0,230,118,0.02); }
.rc-4 { width: 280px; height: 280px; }

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}
.form-control:focus {
    box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.5) !important;
    background: rgba(255,255,255,0.15) !important;
}

/* Features Section */
.section-dark {
    background-color: var(--bg-darker);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.transition-all {
    transition: all 0.3s ease-out;
}

.feature-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.4) 0%, rgba(10, 10, 10, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}
.feature-card:hover {
    border-color: rgba(0, 230, 118, 0.4);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6) 0%, rgba(15, 15, 15, 0.6) 100%);
    transform: translateY(-12px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 230, 118, 0.15);
}
.feature-card .icon-box {
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(25px);
}
.feature-card:hover .icon-box {
    background: rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
    transform: translateZ(50px) scale(1.15) rotate(5deg);
}
.feature-card h4 {
    transform: translateZ(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.feature-card p {
    transform: translateZ(10px);
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.feature-card:hover h4 {
    color: var(--primary-green) !important;
}
.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}
.border-success-hover:hover {
    border-color: var(--primary-green) !important;
}


/* Accounts Section */
/* Accounts Section & Form Toggling */
.account-toggle-bg {
    height: 60px;
    background: #0f0f0f !important;
}
.toggle-slider {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-toggle {
    transition: color 0.3s ease;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
.btn-toggle.active {
    color: #070707 !important;
}

.custom-input {
    background-color: rgba(20, 20, 20, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}
.custom-input:focus {
    background-color: rgba(30, 30, 30, 0.9) !important;
    border-color: rgba(0, 230, 118, 0.5) !important;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.1) !important;
}
.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}
select.custom-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
}

.account-toggle-bg .btn-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 100% !important;
    padding: 0 !important;
}

.custom-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.custom-input:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: #00e676 !important;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.15) !important;
    color: #ffffff !important;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

/* Standardize Buttons to GlobX Green Theme */
.btn-primary {
    background-color: #00e676 !important;
    border-color: #00e676 !important;
    color: #000000 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #00c853 !important;
    border-color: #00c853 !important;
    color: #000000 !important;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4) !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: #00e676 !important;
    color: #00e676 !important;
}

.btn-outline-primary:hover {
    background-color: #00e676 !important;
    color: #000000 !important;
}

/* Fix generic blue focus rings across all browsers */
button:focus, a:focus, input:focus, select:focus, textarea:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.25) !important;
}

.shadow-success {
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.2) !important;
}

.business-only {
    display: block; /* Vertical stacking by default */
}

#business-data {
    transition: opacity 0.4s ease, transform 0.4s ease;
}


/* Pricing Section */
.pricing-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}
.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
}
.pricing-card.popular {
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.15) !important;
}

.transform-scale-lg {
    transform: scale(1.05);
}
@media (max-width: 991px) {
    .transform-scale-lg {
        transform: scale(1);
    }
}
.glow-bg {
    pointer-events: none;
}

/* Redundant form rules removed - consolidated in custom-input section above */

/* Footer Links */
.footer {
    background-color: var(--bg-darker);
}
.footer-link:hover {
    color: var(--primary-green) !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}
.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--primary-green);
    color: #000 !important;
    transform: translateY(-3px);
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-devices {
        height: 600px;
        margin-top: 3rem !important;
        margin-bottom: 0;
        perspective: 800px;
    }
    .mobile-mockup {
        left: 50%;
        right: auto !important; /* Resetting desktop right positioning */
    }
    .mobile-mockup.bg-phone {
        bottom: 50px;
        transform: translate(-65%, 0) rotateY(-20deg) rotateX(5deg) translateZ(-40px) scale(0.8);
    }
    .mobile-mockup.fg-phone {
        bottom: -10px;
        transform: translate(-20%, 0) rotateY(-10deg) rotateX(10deg) translateZ(40px) scale(0.9);
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-devices {
        height: 500px;
    }
    .mobile-mockup.bg-phone {
        bottom: 60px;
        /* Center group slightly left to allow for fg-phone */
        transform: translate(-65%, 0) rotateY(-15deg) rotateX(5deg) translateZ(-30px) scale(0.65);
    }
    .mobile-mockup.fg-phone {
        bottom: 10px;
        /* Center prominently with a slight push right from center point */
        transform: translate(-25%, 0) rotateY(-5deg) rotateX(5deg) translateZ(30px) scale(0.75);
    }
    
    .glass-card .stat-item {
        width: 50%;
        border-top: 1px solid var(--border-dark) !important;
        border-left: none !important;
    }
    .glass-card .stat-item:nth-child(even) {
        border-left: 1px solid var(--border-dark) !important;
    }
}


/* --- SOLUTIONS SECTION RE-DESIGN (Bento Aesthetic) --- */
.feature-card-wrapper {
 perspective: 1000px;
}

.solution-card {
 background: rgba(255, 255, 255, 0.02);
 backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
 border: 1px solid rgba(255, 255, 255, 0.08);
 transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 overflow: hidden;
 z-index: 1;
}

.solution-card::before {
 content: \\;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(0, 230, 118, 0.08), transparent 40%);
 opacity: 0;
 transition: opacity 0.5s ease;
 z-index: -1;
}

.solution-card:hover::before {
 opacity: 1;
}

.solution-card:hover {
 background: rgba(255, 255, 255, 0.04);
 border-color: rgba(0, 230, 118, 0.3);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.solution-icon-box {
 width: 64px;
 height: 64px;
 background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 176, 255, 0.1));
 border: 1px solid rgba(0, 230, 118, 0.2);
 border-radius: 20px;
 display: flex;
 justify-content: center;
 align-items: center;
 margin-bottom: 1.5rem;
 transition: all 0.4s ease;
 position: relative;
}

.solution-card:hover .solution-icon-box {
 transform: scale(1.1) translateY(-5px) rotate(5deg);
 background: linear-gradient(135deg, rgba(0, 230, 118, 0.3), rgba(0, 176, 255, 0.3));
 border-color: rgba(0, 230, 118, 0.5);
 box-shadow: 0 0 25px rgba(0, 230, 118, 0.25);
}

.solution-card h4 {
 font-size: 1.25rem;
 font-weight: 700;
 margin-bottom: 1rem;
 transition: color 0.3s ease;
}

.solution-card:hover h4 {
 color: #00e676 !important;
}

.solution-card p {
 font-size: 0.95rem;
 line-height: 1.6;
 color: rgba(255, 255, 255, 0.6) !important;
 transition: color 0.3s ease;
}

.solution-card:hover p {
 color: rgba(255, 255, 255, 0.9) !important;
}

/* Kinetic Icon Animations */
@keyframes float-alt {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-8px); }
}

@keyframes spin-slow-alt {
 from { transform: rotate(0deg); }
 to { transform: rotate(360deg); }
}

@keyframes pulse-soft {
 0%, 100% { transform: scale(1); opacity: 0.8; }
 50% { transform: scale(1.2); opacity: 1; }
}

@keyframes swing {
 0%, 100% { transform: rotate(-10deg); }
 50% { transform: rotate(10deg); }
}

.anim-float-y { animation: float-alt 3s ease-in-out infinite; }
.anim-spin-s { animation: spin-slow-alt 12s linear infinite; }
.anim-pulse-s { animation: pulse-soft 2s ease-in-out infinite; }
.anim-swing { animation: swing 4s ease-in-out infinite; }


/* --- ENHANCED NEON BENTO CARDS --- */
.solution-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-card:hover {
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.1), inset 0 0 20px rgba(0, 230, 118, 0.05);
}

.solution-card p {
    color: rgba(255, 255, 255, 0.8) !important; /* Increased visibility */
}

/* --- MODERN FOOTER DESIGN --- */
.footer-modern {
    background: #050505;
    position: relative;
    padding: 100px 0 50px;
}

.footer-modern::before {
    content: "";
 position: absolute;
 top: 0;
 left: 10%;
 width: 80%;
 height: 1px;
 background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.3), transparent);
}

.footer-brand-summary {
 max-width: 320px;
}

.footer-heading {
 color: #fff;
 font-size: 1.1rem;
 font-weight: 800;
 margin-bottom: 25px;
 position: relative;
}

.footer-heading::after {
 content: \\;
 position: absolute;
 bottom: -8px;
 left: 0;
 width: 20px;
 height: 2px;
 background: #00e676;
}

.footer-links-list li {
 margin-bottom: 15px;
}

.footer-link-item {
 color: rgba(255, 255, 255, 0.5);
 text-decoration: none;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 display: inline-flex;
 align-items: center;
 font-size: 0.9rem;
}

.footer-link-item:hover {
 color: #00e676;
 transform: translateX(8px);
}

.footer-link-item i {
 font-size: 10px;
 opacity: 0;
 margin-right: 0;
 transition: all 0.3s ease;
}

.footer-link-item:hover i {
 opacity: 1;
 margin-right: 10px;
}

.footer-social-pill {
 width: 45px;
 height: 45px;
 border-radius: 12px;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid rgba(255, 255, 255, 0.05);
 display: flex;
 justify-content: center;
 align-items: center;
 color: rgba(255, 255, 255, 0.6);
 transition: all 0.3s ease;
 text-decoration: none;
}

.footer-social-pill:hover {
 background: #00e676;
 color: #000;
 transform: scale(1.1);
 box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.footer-bottom {
 background: #030303;
 padding: 30px 0;
 margin-top: 80px;
 border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* --- PRICING RE-DESIGN (Image Style) --- */
.pricing-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 230, 118, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00e676;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-header-icon {
    background: #00e676;
    color: #000;
    transform: scale(1.1);
}

.pricing-feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-feature-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.pricing-feature-value {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 1px solid rgba(0, 230, 118, 0.3) !important;
}

.pricing-card button, .pricing-card .btn {
    margin-top: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

.badge-popular-green {
    background: rgba(0, 230, 118, 0.9);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 0 10px 0 15px;
    position: absolute;
    top: 0;
    right: 0;
    text-transform: uppercase;
    font-weight: 900;
}


/* --- UNIFIED CTA & FOOTER GALAXY --- */
.grand-finale-section {
    background: #000;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.finale-glow {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 60%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.cta-header-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    z-index: 2;
    position: relative;
}

.cta-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto 4rem auto;
    line-height: 1.8;
    z-index: 2;
    position: relative;
}

.btn-cta-glitch {
    background: #00e676;
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.btn-cta-glitch:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.6);
    color: #000;
}

.btn-cta-glitch i {
    transition: transform 0.4s ease;
}

.btn-cta-glitch:hover i {
    transform: translateX(8px);
}

/* Redesigned Glass Footer */
.footer-glass-wrap {
    margin-top: 150px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 0 0px;
    position: relative;
    z-index: 3;
}

.footer-glass-wrap::before {
    content: " ";
 position: absolute;
 top: 0;
 left: 10%;
 width: 80%;
 height: 1px;
 background: linear-gradient(90deg, transparent, #00e676, transparent);
 opacity: 0.4;
}

.footer-highlight-col h6 {
 font-size: 1rem;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: #fff;
 margin-bottom: 2rem;
 font-weight: 800;
}

.footer-animated-links li {
 margin-bottom: 20px;
}

.footer-animated-link {
 color: rgba(255, 255, 255, 0.5);
 text-decoration: none;
 font-size: 0.95rem;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
}

.footer-animated-link::before {
 content: \\;
 width: 0;
 height: 1px;
 background: #00e676;
 margin-right: 0;
 transition: all 0.3s ease;
}

.footer-animated-link:hover {
 color: #fff;
}

.footer-animated-link:hover::before {
 width: 15px;
 margin-right: 10px;
}

.footer-social-box-modern {
 width: 48px;
 height: 48px;
 border-radius: 14px;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid rgba(255, 255, 255, 0.08);
 display: flex;
 justify-content: center;
 align-items: center;
 color: rgba(255, 255, 255, 0.6);
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 backdrop-filter: blur(5px);
}

.footer-social-box-modern:hover {
 background: #00e676;
 color: #000;
 border-color: #00e676;
 transform: translateY(-8px) rotate(8deg);
 box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
}

.footer-modern-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.05);
 background: #000;
 padding: 30px 0;
 margin-top: 80px;
}


/* --- CTA BUTTON VISIBILITY FIX --- */
.btn-cta-glitch {
    background: #00e676 !important;
    color: #000000 !important; /* Ensure black text for contrast */
}

.btn-cta-glitch:hover {
    background: #00ff84 !important;
    color: #000000 !important;
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.7) !important;
}


/* --- HERO SECTION IMPROVEMENTS --- */
.hero-stats-row {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    opacity: 0.8;
}

.hero-stat-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: #fff;
}

.hero-stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00e676;
    margin-bottom: 0;
}

.phone-glow-aura {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.floating-badge-ui {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float-ui 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-ui {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

.badge-ui-1 { top: 20%; right: 40%; animation-delay: 0s; }
.badge-ui-2 { bottom: 25%; right: 35%; animation-delay: 1s; }

.trust-brands-row {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.trust-brands-row:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

.modal {
  overflow-y: auto;
}

.modal-open {
  overflow: auto;
}

.modal-open[style] {
  padding-right: 0px !important;
}
