    /* ========================================= */
    /* CORE RESET & VARIABLES                    */
    /* ========================================= */
    * { margin:0; padding:0; box-sizing:border-box }
    
    :root {
        /* Brand Colors */
        --primary-blue: #0066FF;
        --primary-purple: #6366F1;
        --success-green: #10B981;
        --warning-orange: #F59E0B;
        --error-red: #EF4444;
        --gold: #FFD700;
        
        /* Grays (Tailwind-like palette for Dark Mode) */
        --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;
        --black: #000000;
        
        /* Gradients */
        --gradient-primary: linear-gradient(135deg, #0066FF 0%, #6366F1 100%);
        
        /* Shadows */
        --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.2);
        --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.25);
    }

    /* ========================================= */
    /* GLOBAL LAYOUT & BACKGROUND                */
    /* ========================================= */
    html, body { height: 100%; }
    
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #E5E7EB; /* Light gray text for dark mode */
        background: #000;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    /* Glassmorphism Background Overlay */
    body::before {
        content: ""; position: fixed; inset: 0; z-index: -1;
        background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,20,60,0.7));
        pointer-events: none;
    }
    
    /* Background Image - Note the ../ for path relative to areas/ folder */
    body::after {
        content: ""; position: fixed; inset: 0; z-index: -2;
        background: url('../assets/team-connect-main-office.webp') center top/cover no-repeat;
        transform: translateZ(0); will-change: transform; pointer-events: none;
    }

    /* Mobile Background Adjustment */
    @media (max-width: 768px) {
        body::after { background-position: center 20% !important; }
        body::before { background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6)) !important; }
    }

    /* Stacking Context */
    header, main, footer { position: relative; z-index: 1; }
    main { flex: 1 0 auto; padding-top: 80px; }

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

    /* ========================================= */
    /* HEADER & NAVIGATION                       */
    /* ========================================= */
    .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: flex-start; 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; border-radius: 6px; }
    
    /* Hide desktop links, using sidebar exclusively */
    .nav-links { display: none; }

    /* Burger Menu (Always Visible) */
    .burger-menu {
        position: fixed; top: calc(env(safe-area-inset-top) + 20px); right: 20px;
        z-index: 1001;
        background: #fff; 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-menu:hover { transform: scale(1.05); }
    
    .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;
    }
    .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); }

    /* Sidebar Navigation */
    .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: #fff; border-left: 1px solid var(--gray-200);
        z-index: 1000; transition: right 0.3s ease;
        overflow-y: auto; padding-top: calc(env(safe-area-inset-top) + 20px);
        box-shadow: 0 20px 25px rgba(0,0,0,0.25);
        color: var(--gray-900); /* Reset text color for sidebar */
    }
    .nav-sidebar.active { right: 0; }
    
    .nav-header {
        padding: 20px; border-bottom: 1px solid var(--gray-200);
        display: flex; align-items: center; gap: 12px;
    }
    .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; 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.08); color: var(--primary-blue);
        border-left: 3px solid var(--primary-blue);
    }
    .nav-item-text { font-weight: 500; }

    /* ========================================= */
    /* HERO SECTION (Glass Card Style)           */
    /* ========================================= */
    .hero { padding: 110px 2rem 60px; }
    
    .hero-content { /* Renamed to match HTML structure, styled like .hero-inner */
        max-width: 900px; margin: 0 auto;
        background: rgba(6, 19, 35, 0.9);
        border-radius: 26px; padding: 50px 36px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        backdrop-filter: blur(24px) saturate(130%);
        -webkit-backdrop-filter: blur(24px) saturate(130%);
        box-shadow: 0 24px 50px rgba(0,0,0,0.7);
        text-align: center;
    }
    
    .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 8px 16px; border-radius: 999px;
        font-size: 0.9rem; font-weight: 700; color: #FEF9C3;
        margin-bottom: 1.2rem;
    }
    
    .hero h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.4rem);
        font-weight: 900; color: #fff;
        margin-bottom: 0.75rem; text-shadow: 0 3px 10px rgba(0,0,0,0.6);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.02rem; color: #E5E7EB;
        margin: 0 auto 1.4rem; max-width: 640px;
    }
    
    .hero-cta { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
    
    .btn-hero {
        display: inline-flex; align-items: center; justify-content: center;
        padding: 1.05rem 2.3rem; border-radius: 999px;
        font-weight: 900; font-size: 0.98rem;
        text-decoration: none; text-transform: uppercase;
        letter-spacing: 0.08em; transition: all 0.2s ease;
        box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    }
    
    .btn-white {
        background: #fff; color: var(--primary-blue);
    }
    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.7);
        background: #F9FAFB;
    }
    
    .btn-outline {
        background: transparent; color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1); border-color: #fff;
    }
    
    .hero-features {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem; margin: 1.5rem auto 0; max-width: 800px;
    }
    
    .hero-feature {
        background: rgba(15, 23, 42, 0.96);
        border-radius: 14px; padding: 0.8rem 0.9rem;
        border: 1px solid rgba(55, 65, 81, 0.9);
        text-align: center;
    }
    .hero-feature h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
    .hero-feature p { font-size: 0.85rem; color: #9CA3AF; margin: 0; }
    .hero-feature-icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }

    /* ========================================= */
    /* SECTIONS & CARDS (Glassmorphism)          */
    /* ========================================= */
    
    /* Section Headers */
    .section-header { text-align: center; margin-bottom: 2.4rem; }
    .section-badge {
        display: inline-block; background: var(--primary-blue); color: white;
        padding: 4px 12px; border-radius: 50px; font-size: 12px;
        font-weight: 700; margin-bottom: 1rem; text-transform: uppercase;
    }
    .section-title {
        font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 900; color: #fff;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6); margin-bottom: 0.75rem;
    }
    .section-subtitle {
        font-size: 1.02rem; color: #E5E7EB; max-width: 700px; margin: 0 auto;
    }

/* Generic Card Grid Layouts */
.landline-grid, .benefits-grid, .features-grid, .pricing-grid, .steps-grid, .faq-grid {
display: grid; gap: 1.8rem; margin-top: 1.7rem;
}
    
    /* Standard Glass Card Style */
    .landline-card, .benefit-item, .feature-card, .pricing-card, .testimonial, .step-card, .faq-item {
        background: rgba(15, 23, 42, 0.95);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(55, 65, 81, 0.9);
        box-shadow: 0 18px 40px rgba(0,0,0,0.7);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .landline-card:hover, .benefit-item:hover, .feature-card:hover, .pricing-card:hover, .step-card:hover {
        transform: translateY(-5px);
        border-color: rgba(148, 163, 184, 0.4);
    }

    /* Specific Card Content Styling */
    .landline-card h3, .benefit-item h3, .feature-title, .step-title {
        font-size: 1.3rem; font-weight: 800; color: #F9FAFB; margin-bottom: 0.75rem;
    }
    .landline-card p, .benefit-item p, .feature-desc, .step-desc, .testimonial-content {
        color: #E5E7EB; font-size: 0.96rem; line-height: 1.7;
    }
    
    /* List Styling inside cards */
    .landline-card ul { list-style: none; margin-top: 1rem; }
    .landline-card li {
        padding: 0.5rem 0; color: #D1D5DB; display: flex; align-items: center; font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .landline-card li:last-child { border-bottom: none; }

    /* Trust Bar */
    .trust-bar {
        background: rgba(15, 23, 42, 0.9);
        padding: 2rem;
        margin: 2rem auto;
        max-width: 1000px;
        border-radius: 16px;
        border: 1px solid rgba(55, 65, 81, 0.9);
    }
    .trust-content {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem; text-align: center;
    }
    .trust-number {
        font-size: 2.5rem; font-weight: 800; color: var(--primary-blue);
        text-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    }
    .trust-label { color: #9CA3AF; font-weight: 500; }

    /* Icons */
    .feature-icon, .step-icon {
        font-size: 2.5rem; margin-bottom: 1rem; display: block;
    }
    .step-number {
        width: 40px; height: 40px;
        background: var(--primary-blue);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-weight: 900; color: white; margin: 0 auto 1rem;
    }

    /* Comparison Table */
    .comparison-table {
        width: 100%; border-collapse: collapse;
        background: rgba(15, 23, 42, 0.95);
        border-radius: 12px; overflow: hidden;
        border: 1px solid rgba(55, 65, 81, 0.9);
    }
    .comparison-table th, .comparison-table td {
        padding: 1.5rem; text-align: left;
        border-bottom: 1px solid rgba(55, 65, 81, 0.9);
        color: #E5E7EB;
    }
    .comparison-table th {
        background: rgba(0, 102, 255, 0.2); color: #fff; font-weight: 700;
    }
    .comparison-table tr:last-child td { border-bottom: none; }

    /* Pricing Specifics */
    .pricing-card { text-align: center; padding: 3rem 2rem; }
    .plan-name { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
    .plan-price { font-size: 3rem; font-weight: 900; color: #BBF7D0; margin-bottom: 0.2rem; }
    .plan-period { color: #9CA3AF; margin-bottom: 1.5rem; font-size: 0.9rem; }
    
    .plan-features { text-align: left; margin-bottom: 2rem; list-style: none; }
    .plan-features li {
        padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
        color: #E5E7EB; position: relative; padding-left: 1.8rem;
    }
    .plan-features li::before {
        content: '✓'; color: var(--success-green);
        position: absolute; left: 0; font-weight: bold;
    }
    
    .pricing-card.featured {
        border: 2px solid var(--primary-blue);
        background: rgba(15, 23, 42, 0.98);
        transform: scale(1.05); z-index: 2;
    }
    .pricing-card.featured::before {
        content: '🔥 MOST POPULAR';
        position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
        background: var(--primary-blue); color: white;
        padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700;
    }

    .btn-primary {
        display: inline-flex; align-items: center; justify-content: center;
        width: 100%; padding: 1rem; border-radius: 999px;
        background: #fff; color: var(--primary-blue);
        font-weight: 900; text-transform: uppercase; text-decoration: none;
        transition: all 0.2s ease; border: none; cursor: pointer;
    }
    .btn-primary:hover {
        transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }

    /* Testimonials */
    .testimonial::before { color: rgba(255,255,255,0.1); }
    .author-info h4 { color: #fff; margin-bottom: 0; }
    .author-info p { color: var(--primary-blue); font-size: 0.85rem; }
    .author-avatar {
        background: var(--gradient-primary); color: white;
        width: 45px; height: 45px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center; font-weight: bold;
    }
            /* Testimonials Side Scroll System */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-bottom: 2rem; /* Space for scrollbar */
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
        -webkit-overflow-scrolling: touch;
    }

    /* Custom Scrollbar for Webkit */
    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }
    .testimonials-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }

    /* Fixed width cards for scrolling */
    .testimonial {
        flex: 0 0 350px;
        scroll-snap-align: center;
    }

    /* Mobile specific card width */
    @media (max-width: 768px) {
        .testimonial {
            flex: 0 0 85vw; /* Show 85% of card to encourage scrolling */
        }
    }

    /* Button Container */
    .view-all-wrapper {
        text-align: center;
        margin-top: 1rem;
    }
            /* ========================================= */
    /* COMPACT SCROLLING PRICING                 */
    /* ========================================= */
    .pricing-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        margin-top: 2rem;
        padding: 1rem 0 2rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start; /* Start from left */
    }
    
    /* Centering wrapper if items don't fill screen (optional, remove if you always want left align) */
    @media (min-width: 1000px) {
        .pricing-scroll-wrapper { justify-content: center; }
    }

    .pricing-scroll-wrapper::-webkit-scrollbar { height: 6px; }
    .pricing-scroll-wrapper::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
    .pricing-scroll-wrapper::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 10px; }

    /* Compact Card Style */
    .pricing-card-small {
        flex: 0 0 260px; /* Fixed, much smaller width */
        scroll-snap-align: center;
        background: rgba(15, 23, 42, 0.95);
        border-radius: 16px;
        padding: 1.5rem 1.2rem; /* Half the padding of original */
        border: 1px solid rgba(55, 65, 81, 0.9);
        text-align: center;
        position: relative;
        transition: transform 0.2s ease;
    }

    .pricing-card-small:hover {
        transform: translateY(-3px);
        border-color: rgba(148, 163, 184, 0.4);
    }

    /* Compact Typography */
    .pricing-card-small .plan-name {
        font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.2rem;
    }
    .pricing-card-small .plan-price {
        font-size: 2rem; /* Much smaller than original 3rem */
        font-weight: 900; color: #BBF7D0; margin-bottom: 0.1rem;
    }
    .pricing-card-small .plan-period {
        color: #9CA3AF; margin-bottom: 1rem; font-size: 0.8rem;
    }
    
    /* Compact Features List */
    .pricing-card-small .plan-features {
        text-align: left; margin-bottom: 1.2rem; list-style: none;
    }
    .pricing-card-small .plan-features li {
        padding: 0.3rem 0 0.3rem 1.4rem; /* Tighter spacing */
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: #E5E7EB; position: relative; font-size: 0.8rem;
    }
    .pricing-card-small .plan-features li::before {
        content: '✓'; color: var(--success-green);
        position: absolute; left: 0; font-weight: bold; font-size: 0.9em;
    }

    /* Featured Card Styling */
    .pricing-card-small.featured {
        border: 1px solid var(--primary-blue);
        background: rgba(15, 23, 42, 0.98);
    }
    .pricing-card-small.featured::before {
        content: 'MOST POPULAR';
        position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
        background: var(--primary-blue); color: white;
        padding: 2px 10px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px;
    }

    /* Button Adjustment */
    .pricing-card-small .btn-primary {
        padding: 0.7rem; font-size: 0.85rem; width: 100%;
    }
    /* ========================================= */
    /* MOBILE DIVERT SECTION                     */
    /* ========================================= */
    .divert-wrapper {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(6, 19, 35, 0.95));
        border: 1px solid rgba(55, 65, 81, 0.9);
        border-radius: 24px;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

    .divert-content {
        flex: 1;
        padding: 3rem;
    }

    .divert-content h2 {
        font-size: 2.2rem;
        color: #fff;
        margin-bottom: 1.2rem;
        font-weight: 800;
    }

    .divert-content p {
        font-size: 1.1rem;
        color: #E5E7EB;
        margin-bottom: 0;
        line-height: 1.7;
    }

    .divert-visual {
        flex: 1;
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(255,255,255,0.02);
    }

    .divert-img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: -10px 10px 30px rgba(0,0,0,0.4);
        transform: perspective(1000px) rotateY(-10deg);
        transition: transform 0.4s ease;
    }

    .divert-wrapper:hover .divert-img {
        transform: perspective(1000px) rotateY(0deg) scale(1.02);
    }

    /* Bullet List inside Card */
    .check-list {
        list-style: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid rgba(55, 65, 81, 0.6);
        padding-top: 0.8rem;
    }

    .check-list li {
        font-size: 0.85rem;
        color: #E5E7EB; /* Gray-200 */
        margin-bottom: 0.4rem;
        padding-left: 1.2rem;
        position: relative;
    }

    .check-list li::before {
        content: "✓";
        color: var(--success-green);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* View More Link at end of list */
    .trade-card-link {
        font-size: 0.85rem;
        color: var(--primary-blue);
        font-weight: 600;
        margin-top: 0.8rem;
        display: block;
        text-align: right;
    }
    @media (max-width: 900px) {
        .divert-wrapper { flex-direction: column-reverse; text-align: center; }
        .divert-content { padding: 2.5rem 1.5rem; }
        .divert-visual { padding: 1.5rem; width: 100%; }
        .divert-img { transform: none; width: 80%; max-width: 300px; }
    }
    /* Mobile Adjustment */
    @media (max-width: 768px) {
        .pricing-card-small { flex: 0 0 75vw; } /* Show part of next card to hint scroll */
        .pricing-scroll-wrapper { justify-content: flex-start; }
    }

.cta {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px; /* Rounds the corners */
margin: 4rem auto;   /* Centers it */
max-width: 1000px;   /* Prevents it from being too wide */
}
    /* Map Section Styling */
    .map-section {
        padding: 4rem 0;
        background: rgba(255, 255, 255, 0.02);
        position: relative;
    }
    
    #area-map {
        height: 400px;
        width: 100%;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1;
        /* Make map grayscale/light to fit theme */
        filter: grayscale(100%) invert(0%) brightness(1.1);
    }

    /* Fix map overlay controls */
    .leaflet-control-attribution { font-size: 10px; opacity: 0.6; }
    /* Footer */
    .footer {
        background: #020617; color: #fff;
        padding: 60px 2rem 20px; margin-top: auto;
        border-top: 1px solid #1e293b;
    }
    .footer-content {
        display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
    }
    .footer-brand h3 { color: var(--primary-blue); font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
    .footer-brand p { color: var(--gray-400); margin-bottom: 2rem; }
    .footer-section h4 { color: #fff; font-weight: 600; margin-bottom: 1rem; }
    .footer-section a {
        color: var(--gray-400); text-decoration: none; display: block;
        margin-bottom: 0.5rem; transition: color 0.2s ease;
    }
    .footer-section a:hover { color: var(--primary-blue); }
    .footer-bottom {
        text-align: center; border-top: 1px solid #111827;
        padding-top: 2rem; color: var(--gray-500); font-size: 0.9rem;
    }
    
    .social-links { display: flex; gap: 12px; }
    .social-link {
        width: 38px; height: 38px; border-radius: 50%;
        background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
        display: flex; align-items: center; justify-content: center; 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; display: block; }
    /* Industry/Trade Scroller Styles */
    .trade-scroller-section {
        padding: 40px 2rem;
        overflow: hidden; /* Prevents horizontal scrollbar on body */
    }

    .trade-scroller-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 5px 20px 5px; /* Bottom padding for scrollbar space */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin; /* Firefox */
    }

    /* Scrollbar Styling */
    .trade-scroller-wrapper::-webkit-scrollbar {
        height: 8px;
    }
    .trade-scroller-wrapper::-webkit-scrollbar-track {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 4px;
    }
    .trade-scroller-wrapper::-webkit-scrollbar-thumb {
        background: var(--gray-500);
        border-radius: 4px;
    }
    .trade-scroller-wrapper::-webkit-scrollbar-thumb:hover {
        background: var(--primary-blue);
    }

    /* Card Styling */
    .trade-card {
        min-width: 300px;
        max-width: 300px;
        background: rgba(15, 23, 42, 0.78);
        border: 1px solid rgba(55, 65, 81, 0.85);
        border-radius: 16px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        text-decoration: none; /* Removes underline from anchor */
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        scroll-snap-align: start;
        flex: 0 0 auto; /* Prevents shrinking */
        box-shadow: var(--shadow-md);
    }

    .trade-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-blue);
        box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
        background: rgba(15, 23, 42, 0.9);
    }

    .trade-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #F9FAFB;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .trade-icon {
        font-size: 1.4rem;
    }

    .trade-card p {
        font-size: 0.9rem;
        color: #9CA3AF; /* Gray-400 */
        margin-bottom: 1rem;
        line-height: 1.5;
        flex-grow: 1; /* Pushes list to bottom */
    }
    /* 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 Grid Adjustments */
    @media (min-width: 768px) {
        .landline-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
        .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .steps-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    }

    @media (max-width: 768px) {
        .hero { padding: 110px 1rem 50px; }
        .hero-content { padding: 40px 22px; }
        .footer-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
        .social-links { justify-content: center; }
        .pricing-card.featured { transform: none; }
        
.landline-grid, .benefits-grid, .features-grid, .pricing-grid, .steps-grid {
    grid-template-columns: 1fr;
}
    }

    /* Animations */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .fade-in { animation: fadeInUp 0.8s ease; }
