    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
--primary-blue: #4a9d4a; /* Green instead of blue */
--primary-purple: #6ab96a; /* Lighter green */

        --success-green: #10B981;
        --warning-orange: #F59E0B;
        --error-red: #EF4444;
        --gray-50: #F9FAFB;
        --gray-100: #F3F4F6;
        --gray-200: #E5E7EB;
        --gray-300: #D1D5DB;
        --gray-400: #9CA3AF;
        --gray-500: #6B7280;
        --gray-600: #4B5563;
        --gray-700: #374151;
        --gray-800: #1F2937;
        --gray-900: #111827;
        --white: #FFFFFF;
        --gradient-primary: linear-gradient(135deg, #0066FF 0%, #6366F1 100%);
        --gradient-secondary: linear-gradient(135deg, #10B981 0%, #059669 100%);
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--gray-800);
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
position: relative;
}

body::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
    radial-gradient(circle at 20% 50%, rgba(120, 255, 120, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(120, 200, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 120, 255, 0.1) 0%, transparent 50%);
z-index: -1;
}
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #000;
        border-bottom: 1px solid #222;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .header.scrolled {
        background: #000 !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    }
    
    .nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 24px;
        font-weight: 800;
        color: var(--primary-blue);
        text-decoration: none;
    }
    
    .logo-img {
        height: 40px;
        width: auto;
        display: block;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    
    .nav-link {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: gold !important;
    }
    
    .nav-cta {
        display: flex;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-primary {
        background: var(--gradient-primary);
        color: white;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
    }

    /* Burger Menu */
    .burger-menu {
        position: fixed;
        top: calc(env(safe-area-inset-top) + 20px);
        right: 20px;
        z-index: 1001;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        padding: 12px;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: transform 0.2s ease;
        display: block;  /* CHANGED from none to block */
    }

    .burger-icon {
        width: 24px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background: var(--gray-700);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
        .nav-links,
        .nav-cta {
            display: none;
        }
    }
    
    .main {
        padding-top: 80px;
    }
    
   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 2rem;
       background: transparent;
       border-radius: 20px;
       border: none;
   }

.hero {
position: relative;
padding: 100px 2rem 80px;
text-align: center;
color: white;
overflow: hidden;
min-height: 100vh;
}

.hero::after {
content: "";
position: fixed;
inset: 0;
z-index: -2;
background: url('../assets/team-connect-main-office.webp') center top / cover no-repeat;
will-change: transform;
}

.hero::before {
content: "";
position: fixed;
inset: 0;
z-index: -1;
background: transparent;
}

    
    /* Glass morphism base - DISABLED */
    .glass-section {
        background: transparent;
    }

    .section {
        padding: 80px 2rem;
        position: relative;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .trust-bar {
        background: transparent;
    }

.feature-card {
background: transparent;
border: none;
}

.number-card {
background: transparent;
border: none;
}

.diversion-option {
background: transparent;
border: none;
}

.benefit-item {
background: transparent;
border: none;
}

.ai-features {
padding: 80px 2rem;
position: relative;
background: transparent;
}

.business-numbers {
padding: 80px 2rem;
position: relative;
background: transparent;
}

.diversion-section {
padding: 80px 2rem;
background: transparent;
}
.ai-hero {
padding: 140px 2rem 80px;
text-align: center;
color: white;
position: relative;
}

.ai-hero .container {
background: transparent;
border: none;
border-radius: 20px;
padding: 3rem;
max-width: 1200px;
margin: 0 auto;
}
.ai-stats-bar {
background: transparent;
}

    .pricing-card {
        background: transparent;
        border: none;
    }

    .testimonial {
        background: transparent;
        border: none;
    }
    .hero-content {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        background: transparent;
        border: none;
        border-radius: 20px;
        padding: 3rem;
    }
    
    .hero-badge {
        display: inline-block;
        background: transparent;
        border: none;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        opacity: 0.9;
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 4rem;
        flex-wrap: wrap;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 18px;
        font-weight: 700;
    }
    
    .btn-white {
        background: white;
        color: var(--primary-blue);
    }
    
    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .btn-outline {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .hero-feature {
        text-align: center;
    }
    
    .hero-feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-feature h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .hero-feature p {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    /* Trust Bar */
    .trust-bar {
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-radius: 16px;
        margin: -60px auto 80px;
        max-width: 1000px;
        position: relative;
        z-index: 10;
    }
    
    .trust-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }
    
    .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
    }
    
    .trust-label {
        color: var(--gray-600);
        font-weight: 500;
    }

    /* Section Styling */
    .section {
        padding: 80px 2rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-badge {
        display: inline-block;
        background: var(--primary-blue);
        color: white;
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 800;
        color: white !important;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9) !important;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .feature-card {
        background: white;
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--gray-100);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
    
    .feature-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 1rem;
    }
    
    .feature-desc {
        color: var(--gray-600);
        line-height: 1.7;
    }

    /* Pricing Section */
    .pricing {
        padding: 80px 2rem;
        background: transparent;  /* ✅ Glass effect will show through */
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        background: rgba(255, 255, 255, 0.07);  /* ✅ GLASS EFFECT */
        border-radius: 16px;
        padding: 2rem 1.5rem;
        box-shadow: var(--shadow-lg);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }

    .pricing-card.featured {
        border-color: var(--primary-blue);
        transform: scale(1.02);
    }

    .pricing-card.featured::before {
        content: '🔥 MOST POPULAR';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-blue);
        color: white;
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
    }

    .plan-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: white !important;  /* ✅ Changed to white */
        margin-bottom: 0.5rem;
    }

    .plan-price {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
    }

    .plan-period {
        color: rgba(255, 255, 255, 0.7) !important;  /* ✅ Light white */
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .plan-features {
        list-style: none;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .plan-features li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);  /* ✅ Light border */
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.85) !important;  /* ✅ WHITE TEXT - THIS WAS MISSING! */
    }

    .plan-features li::before {
        content: '✓';
        color: var(--success-green);
        font-weight: bold;
        margin-right: 8px;
    }

    /* Testimonials */
    .testimonials {
        padding: 80px 2rem;
        background: transparent;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }
    
    .testimonial {
        background: transparent;
        border-radius: 16px;
        padding: 2rem;
        border: none;
    }

    .review-stars {
        color: #FFD700;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .testimonial-content {
        margin-bottom: 2rem;
        font-style: italic;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
    }
    
    .author-info h4 {
        font-weight: 600;
        color: white !important;
    }
    
    .author-info p {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.9rem;
    }

.cta {
padding: 80px 2rem;
text-align: center;
color: white;
background: transparent;
}

    .benefit-item h4,
    .benefit-item p,
    .diversion-option h4,
    .diversion-option p {
        color: white !important;
    }

    .feature-desc,
    .benefit-item p,
    .diversion-option p {
        opacity: 0.8;
    }
    .cta h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 800;
        margin-bottom: 1rem;
    }
    
    .cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Footer */
    .footer {
        background: var(--gray-900);
        color: white;
        padding: 60px 2rem 20px;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary-blue);
    }

    .footer-brand p {
        color: var(--gray-400);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .footer-section h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: white;
    }

    .footer-section a {
        color: var(--gray-400);
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: var(--primary-blue);
    }

    .footer-bottom {
        text-align: center;
        color: var(--gray-500);
        font-size: 0.9rem;
        padding-top: 2rem;
        border-top: 1px solid var(--gray-800);
    }

    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.2s ease;
    }

    .social-link:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: var(--primary-blue);
        transform: translateY(-2px);
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        border-left: 1px solid var(--gray-200);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: 20px;
        box-shadow: var(--shadow-xl);
    }

    .nav-sidebar.active {
        right: 0;
    }

    .nav-header {
        padding: 20px;
        border-bottom: 1px solid var(--gray-200);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: white;
        font-size: 16px;
    }

    .nav-title {
        font-size: 1.2em;
        font-weight: 600;
        color: var(--gray-900);
    }

    .nav-section {
        padding: 20px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-section:last-child {
        border-bottom: none;
    }

    .nav-section-title {
        padding: 0 20px 12px 20px;
        font-size: 0.8em;
        color: var(--gray-500);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .nav-item {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: var(--gray-700);
        text-decoration: none;
        transition: background-color 0.2s ease;
        cursor: pointer;
    }

    .nav-item:hover {
        background: var(--gray-50);
        color: var(--primary-blue);
    }

    .nav-item.active {
        background: rgba(0, 102, 255, 0.1);
        color: var(--primary-blue);
        border-left: 3px solid var(--primary-blue);
    }

    .nav-item-icon {
        font-size: 1.2em;
        margin-right: 12px;
        width: 24px;
        text-align: center;
    }

    .nav-item-text {
        font-weight: 500;
    }
    /* Responsive */
    @media (max-width: 768px) {
        .hero-cta {
            flex-direction: column;
            align-items: center;
        }
        
        .features-grid,
        .testimonials-grid {
            grid-template-columns: 1fr;
        }
        
        .pricing-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .hero::after {
            background-image: url('../assets/team-connect-main-office.webp') !important;
            background-position: center 15% !important;
            background-size: cover !important;
            background-attachment: scroll !important;
        }

        .hero::before {
            background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4)) !important;
        }
    }
