 
        /* --- UPDATED: New Red Color Scheme --- */
        :root {
            --primary: #ff003c;    /* New Red */
            --secondary: #0e0101ea;  /* New Dark Red */
            --background1: #080010;
            --background2: #07000c;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text: #ffffff;
            --muted: #aaa7c3;      /* New Muted Gray */
            --glass: rgba(255, 255, 255, 0.06);
            --shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, sans-serif;
        }
        body {
            background: radial-gradient(circle at top, var(--secondary) 0%, var(--background1) 45%, var(--background2) 100%);
            color: var(--text);
            /* FIX: Ensure body cannot scroll horizontally */
            overflow-x: hidden; 

            /* 👇 Add these lines */
            margin-top: 90px !important;   /* Space for fixed navbar */
            touch-action: manipulation;    /* Smooth Android scroll/zoom */
}

        /* HEADER */
      

        /* NAV LOGIN/SIGNUP BUTTONS */
        .nav-btn-group {
            display: flex;
            gap: 15px;
            margin-left: 30px;
        }
        
        .btn.btn-small {
            padding: 8px 22px;
            font-size: 14px;
            text-decoration: none;
        }

        /* --- NEW: CSS-ONLY HAMBURGER MENU --- */
        .menu-toggle-input {
            display: none;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001; 
        }

        .hamburger .line {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 3px;
            transition: all 0.3s ease-in-out;
        }
        
        /* --- HERO SECTION --- (Rest of sections remain the same) */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 100px 10%;
        }

        .hero-text {
            flex: 1;
            min-width: 320px;
        }

        .hero-text h1 {
            font-size: 50px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-text h1 span {
            color: var(--primary);
        }

        .hero-text p {
            margin-top: 20px;
            color: var(--muted);
            max-width: 550px;
            line-height: 1.8;
        }

        .btn-group {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-red {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
        }

        .btn-outline {
            border: 1px solid var(--primary);
            background: transparent;
            color: var(--primary);
        }

        .btn-red:hover, .btn-outline:hover {
            transform: scale(1.05);
        }
        
        .btn-red:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            box-shadow: 0 6px 18px rgba(255, 0, 60, 0.4);
        }

        .hero img {
            width: 420px;
            border-radius: 12px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%,100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        /* --- NEW: FULL COMPARISON TABLE --- */
        .comparison-section {
            padding: 80px 10%;
            text-align: center;
        }
        
        .comparison-section h2 {
            font-size: 40px;
            color: white;
            margin-bottom: 15px;
        }
        
        .comparison-section p {
            color: var(--muted);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 30px auto;
        }
        
        .table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
        }
        
        .comparison-table {
            width: 100%;
            min-width: 900px;
            border-collapse: collapse;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            white-space: nowrap;
        }
        
        .comparison-table th {
            color: var(--muted);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .comparison-table td {
            font-size: 15px;
            font-weight: 500;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table tr:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .firm-cell {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .firm-logo-small {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
            border: 2px solid var(--secondary);
        }

        .firm-cell span {
            font-weight: 600;
            font-size: 16px;
        }
        
        .price-cell {
            font-weight: 700;
            color: var(--primary);
            font-size: 16px;
        }
        
        .btn-table {
            padding: 10px 22px;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        /* FILTER SECTION */
        .filter-section {
            background: var(--card-bg);
            padding: 60px 10%;
            border-radius: 16px;
            text-align: center;
            margin: 60px auto;
        }
        
        .filter-section h2 {
            margin-bottom: 20px;
        }

        .filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .filter-btn {
            background: transparent;
            border: 1px solid var(--primary);
            color: white;
            padding: 10px 25px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
        }

        .filter-btn:hover {
            background: var(--primary);
            box-shadow: 0 0 10px rgba(255, 0, 60, 0.8);
        }

        .filter-separator {
            width: 100%;
            border-top: 1px solid rgba(255,255,255,0.2);
            margin: 20px 0;
        }

        /* TOGGLE BUTTONS */
        .toggle-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
        }

        .toggle-box {
            text-align: center;
        }

        .toggle {
            width: 60px;
            height: 30px;
            background: #555;
            border-radius: 30px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s;
            margin: 10px auto;
        }

        .toggle::before {
            content: "";
            width: 26px;
            height: 26px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 2px;
            left: 2px;
            transition: 0.3s;
        }

        .toggle.active {
            background: var(--primary);
        }

        .toggle.active::before {
            transform: translateX(30px);
        }
        
        /* --- CHEAPEST FIRMS SECTION --- */
        h2.section-title {
            text-align: center;
            margin-top: 60px;
            font-size: 2.3em;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.6);
        }

        .card-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            padding: 40px 20px 80px 20px;
        }

        .firm-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 0, 60, 0.25);
            border-radius: 20px;
            padding: 25px;
            width: 320px;
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .firm-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 25px rgba(180, 39, 39, 0.35);
        }

        .firm-logo {
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
            box-shadow: 0 0 10px rgba(255, 0, 60, 0.4);
        }

        .firm-name {
            font-size: 1.4em;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .firm-details {
            font-size: 0.95em;
            color: var(--muted);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .price {
            font-size: 1.1em;
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 0 0 5px rgba(255, 0, 60, 0.4);
        }

        .buy-btn {
            display: inline-block;
            padding: 10px 22px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
        }

        .buy-btn:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transform: scale(1.05);
            box-shadow: 0 0 18px rgba(255, 0, 60, 0.5);
        }
        
        /* --- NEW FOOTER STYLES (Based on image) --- */
        .site-footer {
  width: 100%;
  background-color: #0c0d10;
  color: var(--muted);
  padding: 30px 10% 40px 10%; /* top padding reduced */
  margin-top: 20px; /* margin-top reduced */
  border-top: 1px solid rgba(255,255,255,0.1);
  box-sizing: border-box;
}

        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-col h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .footer-col p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .footer-col a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
            display: block;
            margin-bottom: 12px;
        }
        
        .footer-col a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 12px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: var(--glass);
            color: var(--text);
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .newsletter-form .btn-red {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
        }
        
        .footer-socials {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }
        
        .footer-socials a {
            color: var(--muted);
            transition: color 0.3s, transform 0.3s;
            margin-bottom: 0;
        }
        
        .footer-socials a:hover {
            color: var(--primary);
            transform: scale(1.1);
            text-decoration: none;
        }
        
        .footer-socials svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
            font-size: 0.9em;
        }

        /* --- DISCLAIMER MODAL --- */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .modal-content {
            background: var(--background1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 30px 40px;
            width: 100%;
            max-width: 700px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
        }
        
        .modal-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
            text-align: left;
        }
        
        .modal-content p {
            color: var(--muted);
            line-height: 1.7;
            font-size: 14px;
        }
        
        .modal-close {
            position: absolute;
            top: 15px; right: 20px;
            font-size: 30px;
            color: var(--muted);
            cursor: pointer;
            transition: 0.3s;
        }
        
        .modal-close:hover { 
            color: var(--primary); 
        }


        /* --- RESPONSIVE --- */

        @media (max-width: 768px) {
            .hero, .verified-section { 
                flex-direction: column; 
                text-align: center;
                padding: 60px 5%;
            }
            
            .hero-text h1 {
                font-size: 38px;
                line-height: 1.3;
            }
            .hero-text p {
                font-size: 15px;
                line-height: 1.6;
            }
            .hero img {
                width: 100%;
                max-width: 350px;
                margin-top: 40px;
            }
            
            .verified-section {
                padding: 60px 5%;
            }
            .verified-right { margin-top: 30px; }
            .firm-card { width: 90%; }
            
            .comparison-section {
                padding: 60px 5%;
            }
            
            .filter-section {
                padding: 60px 5%;
            }

            .footer-grid {
                grid-template-columns: 1fr; 
            }
            .footer-col {
                text-align: center;
            }
            .footer-socials {
                justify-content: center;
            }
        }
        
        /* --- FOCUSED FIX: SLIDING Mobile Menu (right to left) --- */
        @media (max-width: 900px) {
            /* 1. Header Padding Adjust */
            header { 
                padding: 15px 20px; /* Adjust padding for mobile devices */
            } 
            
            .hamburger {
                display: flex; 
            }

            .nav-menu {
                /* NEW SLIDING SETUP */
                display: flex; 
                flex-direction: column; 
                position: fixed; 
                top: 78px; 
                right: -100%; /* OFF-SCREEN: Move it entirely off-screen to the right */
                width: 80%; /* Menu will cover 80% of the screen */
                max-width: 350px; /* Limit max width */
                
                /* FIX: Set max-height relative to viewport to enable internal scrolling */
                max-height: calc(100vh - 78px); 
                
                /* Visuals */
                background: rgba(8, 0, 16, 0.98); 
                backdrop-filter: blur(15px);
                box-shadow: -5px 0 20px rgba(0,0,0,0.6); 
                z-index: 998; 
                
                /* Smooth Transition */
                transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
                
                /* Content Layout */
                overflow-y: auto; /* Enable vertical scrolling within this container */
                padding: 20px 20px;    
                gap: 0; 
                align-items: flex-start; 
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            
            /* ACTION: Slide the menu into view */
            .menu-toggle-input:checked ~ .nav-menu {
                right: 0; /* Move it ON-SCREEN */
            }
            
            /* Remove hover functionality on touch devices */
            .dropdown:hover .dropdown-content {
                display: none; 
            }
            
            /* Style for individual links/dropdowns */
            .nav-menu a, .nav-menu .dropdown {
                width: 100%; 
                text-align: left;
                padding: 12px 0; 
                border-bottom: 1px solid rgba(255,255,255,0.05); 
            }
            
            .nav-menu .dropdown-toggle {
                padding: 0; 
                width: auto;
            }

            .nav-menu .dropdown:last-of-type {
                border-bottom: none;
            }
            
            .nav-menu .dropdown-content {
                position: static; 
                display: none;
                background-color: transparent; 
                border: none;
                min-width: 100%;
                margin-top: 5px;
                padding-left: 0; /* Remove padding from parent */
            }
            
            .nav-menu .dropdown-content.active {
                display: block;
                /* Optional: Add some space below the content */
                margin-bottom: 10px; 
            }

            .nav-menu .dropdown-content a {
                font-size: 14px;
                color: #ddd;
                padding: 8px 20px; /* Add padding here for indentation */
                border-bottom: none;
            }
            
            .nav-menu .nav-btn-group {
                width: 100%;
                margin-top: 15px;
                margin-left: 0;
                flex-direction: column; 
                gap: 10px;
                border-top: 1px solid rgba(255,255,255,0.1);
                padding-top: 15px;
                padding-bottom: 5px;
            }
            .nav-menu .btn {
                width: 100%; 
            }
        }
        /* --- SOCIAL BAR (Above Footer) --- */
.social-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 20px 0 10px 0;
  background: transparent;
}

.social-bar img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

.social-bar img:hover {
  transform: scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 0 8px #ff003c);
}
    