    * {
        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;
    }

    .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;
        border-radius: 20px;
    }
    
    /* Hero Section */
    .hero {
        position: relative;
        padding: 100px 2rem 80px;
        text-align: center;
        color: white;
        overflow: hidden;
        min-height: 100vh;
    }
    

    .hero::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
    }
    .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;
    }

    /* Glass morphism base */
    .glass-section {
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Update sections */
    .section {
        padding: 80px 2rem;
        position: relative;

    }
    .trust-bar {
        background: transparent;
        padding: 1.2rem 2rem;
        box-shadow: none;
        border-radius: 0;
        margin: -40px auto 40px;
        max-width: 1000px;
        position: relative;
        z-index: 10;
    }
    .feature-card {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .number-card {
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .diversion-option {
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .benefit-item {
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ai-features {
        padding: 80px 2rem;
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .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 {

        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .ai-stats-bar {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .pricing-card {
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .testimonial {
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        padding: 3rem;
    }
    
    .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        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: flex;
        gap: 12px;
        max-width: 1000px;
        margin: 0 auto;
        justify-content: center;
    }
    .hero-feature {
        text-align: center;
        flex: 1;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 140, 0, 0.4);
        border-radius: 12px;
        padding: 16px 12px;
        transition: all 0.3s ease;
    }
    .hero-feature:hover {
        border-color: rgba(255, 140, 0, 0.8);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 140, 0, 0.12);
    }
    
    .hero-feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-feature h3 {
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: #ff8c00;
    }
    
    .hero-feature p {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.4;
    }
    
    .trust-content {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        text-align: center;
        flex-wrap: nowrap;
    }
    
    .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-number {
        font-size: 1.5rem;
        font-weight: 800;
        color: #ff8c00;
        margin-bottom: 0.25rem;
    }
    
    .trust-label {
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
        font-size: 0.8rem;
    }

    /* 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: rgba(255, 255, 255, 0.04);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: none;
        border: 1px solid rgba(255, 140, 0, 0.35);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .feature-card::before {
        display: none;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 140, 0, 0.8);
        box-shadow: 0 8px 30px rgba(255, 140, 0, 0.12);
    }
    
    .feature-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.75rem;
    }
    .feature-title a {
        color: #ffffff;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: rgba(255, 140, 0, 0.5);
        transition: text-decoration-color 0.3s ease;
    }
    .feature-title a:hover {
        text-decoration-color: #ff8c00;
    }
    .feature-desc {
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.7;
        font-size: 0.92rem;
    }

    /* Pricing Section */
    .pricing {
        padding: 80px 2rem;
        background: transparent;
    }

    .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);
        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;
        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;
        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);
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .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: flex;
        gap: 2rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
        margin-top: 4rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.2) transparent;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }
    .testimonials-grid::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.05);
        border-radius: 3px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.2);
        border-radius: 3px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.35);
    }
    
    .testimonial {
        min-width: 340px;
        max-width: 380px;
        flex-shrink: 0;
        scroll-snap-align: start;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 2rem;
        border: 1px solid rgba(255, 140, 0, 0.35);
        box-shadow: none;
        transition: all 0.3s ease;
    }
    .testimonial:hover {
        border-color: rgba(255, 140, 0, 0.8);
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(255, 140, 0, 0.12);
    }
    
    .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;

        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .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;
    }

    /* Shared glass sections */
    .bl-section,
    .bl-features,
    .bl-types,
    .bl-comparison,
    .bl-faq,
    .bl-related{
        padding:40px 2rem;
    }
    .content-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
        gap:1.6rem;
        margin-top:1.7rem;
    }
    .glass-card{
        border-radius:20px;
        padding:1.9rem 1.9rem;
        border:1px solid rgba(55,65,81,.85);
        box-shadow:var(--shadow-lg);
        color:#E5E7EB;
    }
    .glass-card h3{
        font-size:1.2rem;
        font-weight:800;
        color:#F9FAFB;
        margin-bottom:.55rem;
    }
    .glass-card p{
        font-size:.94rem;
        line-height:1.7;
    }
    .glass-list{
        list-style:none;margin-top:.6rem;
    }
    .glass-list li{
        padding:.4rem 0;
        font-size:.94rem;
    }

    /* Comparison */
    .comparison-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
        gap:1.6rem;
        margin-top:1.7rem;
    }
    .comparison-card{
        background:rgba(15,23,42,.8);
        border-radius:20px;
        padding:1.9rem;
        border:1px solid rgba(55,65,81,.9);
        box-shadow:var(--shadow-lg);
        color:#E5E7EB;
    }
    .comparison-card.winner{
        border-color:#22C55E;
        box-shadow:0 20px 50px rgba(22,163,74,.6);
    }
    .comparison-card h3{font-size:1.1rem;font-weight:800;margin-bottom:.5rem;}
    .comparison-list{list-style:none;margin-top:.4rem;}
    .comparison-list li{
        padding:.4rem 0;
        font-size:.92rem;
    }
    /* 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;
    }

    /* Professional Car Garage Styling */
    .garage-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 3rem 2rem;
        text-align: center;
        border-radius: 15px;
        margin-bottom: 2rem;
        position: relative;
        overflow: hidden;
    }
    
    .garage-hero::before {
        content: '★★★★★';
        position: absolute;
        top: 1rem;
        right: 2rem;
        font-size: 1.5rem;
        color: #ffd700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .garage-badge {
        background: linear-gradient(45deg, #ffd700, #ffed4e);
        color: #333;
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        font-weight: 800;
        font-size: 0.9rem;
        display: inline-block;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    
    .rating-display {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 1rem 2rem;
        border-radius: 50px;
        margin: 1rem 0;
        display: inline-block;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .stars {
        color: #ffd700;
        font-size: 1.8rem;
        margin-right: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .rating-text {
        font-size: 1.2rem;
        font-weight: 700;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .price-garage {
        font-size: 3rem;
        font-weight: 900;
        color: #ffd700;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        margin: 1rem 0;
    }
    
    .savings-highlight {
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        font-weight: 700;
        display: inline-block;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    
    .garage-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .feature-garage {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-left: 5px solid #667eea;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-garage:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .feature-icon {
        font-size: 2.5rem;
        color: #667eea;
        margin-bottom: 1rem;
    }
    
    .mot-badge {
        background: linear-gradient(45deg, #4facfe, #00f2fe);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
        margin-left: 0.5rem;
    }
    
    .cta-garage {
        color: white;
        padding: 1.5rem 3rem;
        border: none;
        border-radius: 50px;
        font-size: 1.3rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    }
    
    .cta-garage:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    }
    
    /* Reviews section styling */
    .reviews-section {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 3rem 2rem;
        border-radius: 15px;
        margin: 3rem 0;
    }
    
    .review-card {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-bottom: 1.5rem;
        border-left: 4px solid #ffd700;
    }
    
    .review-stars {
        color: #ffd700;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .review-text {
        font-style: italic;
        color: #666;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .review-author {
        font-weight: 600;
        color: #333;
    }

.faq-section {
padding: 80px 2rem;
position: relative;
background: transparent;
}

.faq-section .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem 3rem;
}

.faq-section .section-header .section-badge {
background: var(--primary-blue);
border-radius: 50px;
}

.faq-section .section-title {
color: #ffffff !important;
}

.faq-section .section-subtitle {
color: rgba(255, 255, 255, 0.9) !important;
}

.faq-grid {
max-width: 900px;
margin: 2.5rem auto 0;
display: grid;
gap: 1.5rem;
}

.faq-item {
background: rgba(15, 23, 42, 0.7);
border-radius: 16px;
padding: 1.5rem 1.75rem;
border: 1px solid rgba(148, 163, 184, 0.6);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
}

.faq-q {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.4rem;
color: #e5e7eb;
}

.faq-a {
font-size: 0.95rem;
color: #cbd5f5;
}
    /* Case Studies */
    .case-studies-home{padding:80px 2rem;background:transparent}
    .cs-stagger{display:flex;flex-direction:column;gap:48px;max-width:1100px;margin:0 auto}
    .cs-stagger-item{display:flex;align-items:center;gap:40px;text-decoration:none;background:rgba(255,255,255,.06);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border:1px solid rgba(255,140,0,.35);border-radius:20px;overflow:hidden;transition:all .35s ease;cursor:pointer}
    .cs-stagger-item:hover{border-color:rgba(255,140,0,.8);transform:translateY(-4px);box-shadow:0 12px 40px rgba(255,140,0,.15)}
    .cs-stagger-item:nth-child(even){flex-direction:row-reverse}
    .cs-stagger-img{width:340px;min-height:240px;flex-shrink:0;overflow:hidden}
    .cs-stagger-img img{width:100%;height:100%;min-height:240px;object-fit:cover;display:block;transition:transform .5s ease}
    .cs-stagger-item:hover .cs-stagger-img img{transform:scale(1.05)}
    .cs-stagger-body{padding:32px 32px 32px 0;flex:1}
    .cs-stagger-item:nth-child(even) .cs-stagger-body{padding:32px 0 32px 32px}
    .cs-stagger-industry{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#ff8c00;margin-bottom:8px;transition:color .3s ease}
    .cs-stagger-item:hover .cs-stagger-industry{color:var(--success-green)}
    .cs-stagger-title{font-size:1.35rem;font-weight:800;color:#fff;line-height:1.3;margin-bottom:12px}
    .cs-stagger-desc{font-size:.92rem;color:rgba(255,255,255,.65);line-height:1.7;margin-bottom:20px}
    .cs-stagger-stats{display:flex;gap:20px;flex-wrap:wrap}
    .cs-stat-pill{background:rgba(16,185,129,.15);border:1px solid rgba(16,185,129,.3);color:#34d399;padding:6px 14px;border-radius:50px;font-size:.82rem;font-weight:700}
    .cs-stagger-arrow{color:rgba(255,255,255,.3);font-size:1.3rem;transition:color .3s ease,transform .3s ease;flex-shrink:0;padding-right:24px}
    .cs-stagger-item:nth-child(even) .cs-stagger-arrow{padding-right:0;padding-left:24px}
    .cs-stagger-item:hover .cs-stagger-arrow{color:rgba(255,140,0,.9);transform:translateX(4px)}
    .cs-view-all{text-align:center;margin-top:48px}
    /* Blog */
    .blog-home{padding:80px 2rem;background:transparent}
    .blog-scroll-wrapper{position:relative;max-width:1200px;margin:0 auto}
    .blog-scroll{display:flex;gap:24px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:16px;scrollbar-width:thin;scrollbar-color:rgba(255,255,255,.2) transparent}
    .blog-scroll::-webkit-scrollbar{height:6px}
    .blog-scroll::-webkit-scrollbar-track{background:rgba(255,255,255,.05);border-radius:3px}
    .blog-scroll::-webkit-scrollbar-thumb{background:rgba(255,255,255,.2);border-radius:3px}
    .blog-scroll-card{min-width:320px;max-width:340px;flex-shrink:0;scroll-snap-align:start;background:rgba(255,255,255,.06);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border:1px solid rgba(255,140,0,.35);border-radius:16px;padding:28px;display:flex;flex-direction:column;text-decoration:none;transition:all .35s ease;cursor:pointer}
    .blog-scroll-card:hover{border-color:rgba(255,140,0,.8);transform:translateY(-4px);box-shadow:0 8px 30px rgba(255,140,0,.15)}
    .blog-scroll-tag{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:#ff8c00;margin-bottom:12px;transition:color .3s ease}
    .blog-scroll-card:hover .blog-scroll-tag{color:var(--success-green)}
    .blog-scroll-title{font-size:1.1rem;font-weight:700;color:#fff;line-height:1.35;margin-bottom:12px}
    .blog-scroll-excerpt{font-size:.88rem;color:rgba(255,255,255,.55);line-height:1.65;flex:1;margin-bottom:20px}
    .blog-scroll-meta{display:flex;align-items:center;justify-content:space-between;border-top:1px solid rgba(255,255,255,.08);padding-top:16px}
    .blog-scroll-date{font-size:.78rem;color:rgba(255,255,255,.4)}
    .blog-scroll-read{font-size:.82rem;font-weight:600;color:#ff8c00;transition:color .3s ease}
    .blog-scroll-card:hover .blog-scroll-read{color:var(--success-green)}
    .blog-scroll-nav{display:flex;justify-content:center;gap:12px;margin-top:24px}
    .blog-scroll-btn{width:44px;height:44px;border-radius:50%;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.06);color:rgba(255,255,255,.7);font-size:18px;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center}
    .blog-scroll-btn:hover{background:rgba(255,140,0,.15);border-color:rgba(255,140,0,.5);color:#ff8c00}
    .blog-view-all{text-align:center;margin-top:32px}
    @media(max-width:768px){
    .cs-stagger-item,.cs-stagger-item:nth-child(even){flex-direction:column}
    .cs-stagger-img{width:100%;min-height:200px;max-height:220px}
    .cs-stagger-body,.cs-stagger-item:nth-child(even) .cs-stagger-body{padding:24px}
    .cs-stagger-arrow{display:none}
    .cs-stagger-title{font-size:1.15rem}
    .blog-scroll-card{min-width:280px;max-width:300px;padding:22px}
    .blog-scroll-title{font-size:1rem}
    .blog-scroll-nav{display:none}
    }
    /* 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;
        }

        .garage-hero {
            padding: 2rem 1rem;
        }
        
        .price-garage {
            font-size: 2.2rem;
        }
        
        .garage-features {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .feature-garage {
            padding: 1.5rem;
        }
        
        .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;
        }
        
        .cta-garage {
            padding: 1.2rem 2rem;
            font-size: 1.1rem;
        }
        .hero-features {
            flex-wrap: wrap;
        }
        .hero-feature {
            flex: 1 1 45%;
        }
    }
