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

    /* GLASSMORPHISM BASE BACKGROUND */
    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: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .header.scrolled {
        background: rgba(0, 0, 0, 0.95) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }
    
    .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);
    }

    /* GLASSMORPHISM BURGER MENU */
    .burger-menu {
        position: fixed;
        top: calc(env(safe-area-inset-top) + 20px);
        right: 20px;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 12px;
        cursor: pointer;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transition: transform 0.2s ease;
        display: block;  /* CHANGED: was none */
    }

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

    .burger-line {
        width: 100%;
        height: 3px;
        background: #fff;
        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;
    }
    
    /* GLASSMORPHISM HERO */
    .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;
    }

    /* GLASSMORPHISM HERO CONTENT */
    .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);
        -webkit-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: 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;
    }
    
    /* GLASSMORPHISM TRUST BAR */
    .trust-bar {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        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: #fff;
        margin-bottom: 0.5rem;
    }
    
    .trust-label {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

    /* GLASSMORPHISM SECTIONS */
    .section {
        padding: 80px 2rem;
        position: relative;

    }

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

    /* GLASSMORPHISM 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.08);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        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: 0 30px 60px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.12);
    }
    
    .feature-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: white !important;
        margin-bottom: 1rem;
    }
    
    .feature-desc {
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 1.7;
    }

    /* GLASSMORPHISM PRICING SECTION */
    .pricing {
        padding: 80px 2rem;

    }

    .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);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.12);
    }

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

    /* GLASSMORPHISM TESTIMONIALS */
    .testimonials {
        padding: 80px 2rem;

    }
    
    /* NEW SCROLLABLE TESTIMONIALS */
    .testimonials-container {
        width: 100%;
        overflow-x: hidden; /* Hide main scrollbar */
    }
    
    .testimonials-scroll {
        display: flex;
        overflow-x: auto;
        gap: 2rem;
        padding: 1rem 0 2rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin; /* For Firefox */
        scrollbar-color: var(--primary-blue) rgba(255, 255, 255, 0.1);
    }

    .testimonials-scroll::-webkit-scrollbar {
        height: 8px;
    }
    
    .testimonials-scroll::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .testimonials-scroll::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 4px;
    }

    .testimonial {
        min-width: 350px; /* Forces scrolling */
        flex: 0 0 350px;
        scroll-snap-align: center;
        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);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .testimonial:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
    }

    .reviews-btn-container {
        text-align: center;
        margin-top: 2rem;
    }

    @media (max-width: 768px) {
        .testimonial {
            min-width: 280px;
            flex: 0 0 280px;
        }
    }

    /* NEW FAQ DROPDOWNS (ACCORDION) */
    .faq-container {
        max-width: 900px;
        margin: 3rem auto 0;
    }

    details.faq-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    details.faq-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
    }

    details.faq-item[open] {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-blue);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    summary.faq-question {
        padding: 1.5rem;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.1rem;
        color: white;
        list-style: none; /* Hide default triangle */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Custom Plus/Minus Icon */
    summary.faq-question::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--primary-blue);
        transition: transform 0.3s ease;
    }

    details[open] summary.faq-question::after {
        transform: rotate(45deg);
        color: #ff4d4d;
    }

    /* Hide default triangle in Webkit */
    summary.faq-question::-webkit-details-marker {
        display: none;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 0;
        padding-top: 1rem;
    }
    
    .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);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .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;
    }

    /* GLASSMORPHISM CTA */
    .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);
    }

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

    /* GLASSMORPHISM FOOTER */
    .footer {
        background: rgba(17, 24, 39, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        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: rgba(255, 255, 255, 0.7);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

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

    .footer-section a {
        color: rgba(255, 255, 255, 0.7);
        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: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    /* GLASSMORPHISM NAVIGATION SIDEBAR */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        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: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

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

    .nav-header {
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        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: white;
    }

    .nav-section {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

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

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

    .nav-item {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
        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;
    }

    .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);
    }
    /* --- NEW ACCORDION FAQ CSS --- */
    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    details.faq-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    details.faq-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
    }

    details.faq-item[open] {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-blue);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    summary.faq-question {
        padding: 1.5rem;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.1rem;
        color: white;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    summary.faq-question::-webkit-details-marker {
        display: none;
    }

    summary.faq-question::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--primary-blue);
        transition: transform 0.3s ease;
    }

    details[open] summary.faq-question::after {
        transform: rotate(45deg);
        color: #ff4d4d;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 0;
        padding-top: 1rem;
    }
    
/* ===== INDUSTRIES GRID ===== */
.industries-grid {
    display:  grid;
    grid-template-columns:  repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industry-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.industry-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.industry-link {
    color: rgba(255, 165, 0, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.industry-link:hover {
    text-decoration: underline;
}

 .sms-case-studies{padding:80px 2rem 60px;background:transparent}
 .sms-section-header-cs{text-align:center;margin-bottom:3rem;max-width:800px;margin-left:auto;margin-right:auto}
 .sms-section-badge-cs{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:#FACC15;background:rgba(250,204,21,.1);padding:6px 16px;border-radius:50px;border:1px solid rgba(250,204,21,.3);margin-bottom:1rem}
 .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,.04);border:1px solid rgba(250,204,21,.35);border-radius:20px;overflow:hidden;transition:all .35s ease;cursor:pointer}
 .cs-stagger-item:hover{border-color:rgba(250,204,21,.8);transform:translateY(-4px);box-shadow:0 12px 40px rgba(250,204,21,.15)}
 .cs-stagger-item:nth-child(even){flex-direction:row-reverse}
 .cs-stagger-img{width:340px;min-height:240px;flex-shrink:0;overflow:hidden;background:linear-gradient(135deg,rgba(250,204,21,.08),rgba(16,185,129,.08))}
 .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:#FACC15;margin-bottom:8px;transition:color .3s ease}
 .cs-stagger-item:hover .cs-stagger-industry{color:#34d399}
 .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:12px;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(250,204,21,.9);transform:translateX(4px)}
 .cs-view-all{text-align:center;margin-top:48px}
 @media(max-width:760px){
   .cs-stagger-item,.cs-stagger-item:nth-child(even){flex-direction:column;gap:0}
   .cs-stagger-img{width:100%;min-height:200px}
   .cs-stagger-body,.cs-stagger-item:nth-child(even) .cs-stagger-body{padding:24px}
   .cs-stagger-arrow{display:none}
 }
 .sms-blog-home{padding:60px 2rem 80px;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:4px 4px 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,.04);border:1px solid rgba(250,204,21,.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(250,204,21,.8);transform:translateY(-4px);box-shadow:0 8px 30px rgba(250,204,21,.15)}
 .blog-scroll-tag{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:#FACC15;margin-bottom:12px;transition:color .3s ease}
 .blog-scroll-card:hover .blog-scroll-tag{color:#34d399}
 .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:#FACC15;transition:color .3s ease}
 .blog-scroll-card:hover .blog-scroll-read{color:#34d399}
 .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(250,204,21,.15);border-color:rgba(250,204,21,.5);color:#FACC15}
 .blog-view-all{text-align:center;margin-top:32px}
    /* 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;
        }
        
        .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;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }
