:root {
            --primary-blue: #0052FF;
            --google-blue: #4285F4;
            --btn-green: #00C65E;
            --btn-green-hover: #00A84F;
            --dark-text: #0B132B;
            --body-text: #4A5568;
            --light-bg: #F8FAFC;
            --border-color: #E2E8F0;
            --shadow-premium: 0 20px 40px -15px rgba(0, 82, 255, 0.05), 0 1px 3px rgba(0,0,0,0.02);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--body-text);
            line-height: 1.6;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Modern Glass Header Navigation */
        header {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            position: relative;
        }

        /* Flex Wrapper for Brand Logo Integration */
        .brand-logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }

        .logo-img {
            height: 140px;
            width: auto;
            padding-top: 10px;
            object-fit: contain;
        }

        .logo-img.footer-logo {
            height: 150px; /* Marginally larger for better layout presence within the dark footer block */
            margin-bottom: 20px;
        }

        nav.nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-left: auto;
        }

        nav.nav-links a {
            text-decoration: none;
            color: #334155;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        nav.nav-links a:hover { color: var(--primary-blue); }

        /* Mobile Hamburger Toggle (checkbox-driven) */
        .nav-toggle-checkbox { display: none; }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 28px;
            height: 28px;
            cursor: pointer;
        }
        .nav-hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--dark-text);
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
        .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .btn-nav-cta {
            background-color: var(--google-blue);
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
        }
        .btn-nav-cta:hover {
            background-color: #357ae8;
            color: #FFE9B3;
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 20px rgba(66, 133, 244, 0.35);
        }
        .btn-nav-cta svg { width: 14px; height: 14px; fill: currentColor; }

        /* Section Badges */
        .section-badge {
            background-color: #FEF08A;
            color: #713F12;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 50px;
            display: inline-block;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        /* Hero Section Layout Split */
        .hero-section {
            padding: 80px 0;
            background: radial-gradient(100% 100% at 50% 0%, rgba(0, 82, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 48px;
            align-items: center;
        }

        .hero-left h1 {
            font-size: 46px;
            font-weight: 800;
            line-height: 1.15;
            color: var(--dark-text);
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }
        .hero-left h1 span { color: var(--primary-blue); }

        .hero-left p {
            font-size: 16px;
            margin-bottom: 32px;
            color: var(--body-text);
            max-width: 560px;
        }

        .hero-checklist {
            list-style: none;
            margin-bottom: 40px;
        }
        .hero-checklist li {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }
        .hero-checklist li svg {
            width: 22px;
            height: 22px;
            fill: var(--btn-green);
        }

        /* Hero Call Card Container UI */
        .hero-card-cta {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 40px 32px;
            box-shadow: var(--shadow-premium);
            text-align: center;
        }

        .floating-phone-icon {
            width: 64px;
            height: 64px;
            background-color: rgba(0, 198, 94, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        .floating-phone-icon svg { width: 26px; height: 26px; fill: var(--btn-green); }

        .hero-card-cta h3 {
            font-size: 22px;
            color: var(--dark-text);
            font-weight: 700;
            margin-bottom: 12px;
        }
        .hero-card-cta p {
            font-size: 14px;
            margin-bottom: 24px;
            color: #718096;
        }

        .btn-cta-full-green {
            background-color: var(--btn-green);
            color: #ffffff;
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 14px;
            transition: background 0.2s, transform 0.2s;
        }
        .btn-cta-full-green:hover { background-color: var(--btn-green-hover); transform: translateY(-1px); }

        .btn-cta-outline-whatsapp {
            background-color: #ffffff;
            border: 2px solid var(--btn-green);
            color: var(--btn-green);
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 24px;
            transition: background 0.2s;
        }
        .btn-cta-outline-whatsapp:hover { background: rgba(0, 198, 94, 0.03); }

        .card-meta-metrics {
            display: flex;
            justify-content: center;
            gap: 16px;
            font-size: 12px;
            font-weight: 600;
            color: #A0AEC0;
            border-top: 1px solid var(--border-color);
            padding-top: 16px;
        }

        /* What is GMB Section (Side Image Layout) */
        .info-section {
            padding: 100px 0;
            border-top: 1px solid var(--border-color);
        }
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .info-left-mockup {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .info-image {
            width: 100%;
            height: auto;
            max-height: 360px;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
        }
        .info-left-mockup:hover .info-image { transform: scale(1.03); }
        .info-right h2 {
            font-size: 38px;
            color: var(--dark-text);
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        .info-right h2 span { color: var(--primary-blue); }
        .info-right p {
            font-size: 15px;
            margin-bottom: 20px;
            color: var(--body-text);
        }

        /* The Benefits Layout Grid Segment */
        .benefits-section {
            padding: 100px 0;
            background: var(--light-bg);
            text-align: center;
        }
        .benefits-title { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; color: var(--dark-text); }
        .benefits-title span { color: var(--primary-blue); }
        .benefits-subtitle { color: var(--body-text); font-size: 16px; margin-bottom: 56px; }

        .benefits-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 1040px;
            margin: 0 auto 48px;
        }

        .benefit-box {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            text-align: left;
            box-shadow: var(--shadow-premium);
        }
        .benefit-box.problem { border-left: 5px solid #EF4444; }
        .benefit-box.solution { border-left: 5px solid var(--primary-blue); }
        .benefit-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; color: var(--dark-text); }
        .benefit-box p { font-size: 14px; color: var(--body-text); line-height: 1.7; }

        .inline-cta-banner {
            background: #ffffff;
            border: 1px solid var(--border-color);
            padding: 24px 40px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            max-width: 1040px;
            width: 100%;
            text-align: left;
            box-shadow: var(--shadow-premium);
        }
        .inline-cta-text { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 12px; color: var(--dark-text); }
        .inline-cta-btn { background: var(--primary-blue); color: white; padding: 12px 28px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 14px; transition: background 0.2s; }
        .inline-cta-btn:hover { background-color: #0042cc; }

        /* Advantage Grid Matrix Section */
        .advantage-section {
            padding: 100px 0;
            background-color: #ffffff;
            text-align: center;
        }
        .advantage-section h2 {
            font-size: 38px;
            color: var(--dark-text);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }
        .advantage-section h2 span { color: var(--primary-blue); }
        
        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 24px;
            margin-top: 56px;
        }
        .matrix-card {
            background-color: #ffffff;
            border: 1px solid var(--border-color);
            border-top: 3px solid transparent;
            border-radius: 16px;
            padding: 32px;
            text-align: left;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .matrix-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-premium);
            border-top-color: var(--card-accent, var(--primary-blue));
        }
        .matrix-card .icon-box {
            width: 48px;
            height: 48px;
            background-color: var(--light-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: transform 0.25s ease;
        }
        .matrix-card:hover .icon-box { transform: scale(1.08) rotate(-3deg); }
        .matrix-card .icon-box svg { width: 24px; height: 24px; }
        .matrix-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
        .matrix-card p { font-size: 14px; color: var(--body-text); }

        /* Per-card accent tint (matches each card's existing icon colour) */
        .matrix-card:nth-child(1) { --card-accent: #0052FF; }
        .matrix-card:nth-child(1) .icon-box { background-color: rgba(0,82,255,0.1); }
        .matrix-card:nth-child(2) { --card-accent: #00C65E; }
        .matrix-card:nth-child(2) .icon-box { background-color: rgba(0,198,94,0.1); }
        .matrix-card:nth-child(3) { --card-accent: #D97706; }
        .matrix-card:nth-child(3) .icon-box { background-color: rgba(217,119,6,0.1); }
        .matrix-card:nth-child(4) { --card-accent: #DC2626; }
        .matrix-card:nth-child(4) .icon-box { background-color: rgba(220,38,38,0.1); }
        .matrix-card:nth-child(5) { --card-accent: #4F46E5; }
        .matrix-card:nth-child(5) .icon-box { background-color: rgba(79,70,229,0.1); }
        .matrix-card:nth-child(6) { --card-accent: #2563EB; }
        .matrix-card:nth-child(6) .icon-box { background-color: rgba(37,99,235,0.1); }
        .matrix-card:nth-child(7) { --card-accent: #0EA5E9; }
        .matrix-card:nth-child(7) .icon-box { background-color: rgba(14,165,233,0.1); }
        .matrix-card:nth-child(8) { --card-accent: #7C3AED; }
        .matrix-card:nth-child(8) .icon-box { background-color: rgba(124,58,237,0.1); }
        .matrix-card:nth-child(9) { --card-accent: #EA580C; }
        .matrix-card:nth-child(9) .icon-box { background-color: rgba(234,88,12,0.1); }

        /* GMB Monthly Pricing Setup Array */
        .pricing-section {
            padding: 100px 0;
            background-color: var(--light-bg);
            text-align: center;
        }
        .pricing-section h2 { font-size: 38px; font-weight: 800; color: var(--dark-text); letter-spacing: -1px; margin-bottom: 12px; }
        .pricing-section h2 span { color: var(--primary-blue); }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-top: 56px;
        }
        .price-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 48px 32px;
            text-align: left;
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-premium); }
        .price-card.popular { border: 2px solid var(--primary-blue); }
        .popular-tag {
            position: absolute;
            top: -14px;
            right: 32px;
            background-color: var(--primary-blue);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 50px;
            text-transform: uppercase;
        }
        .price-card h3 { font-size: 22px; font-weight: 700; color: var(--dark-text); margin-bottom: 8px; }
        .price-num { font-size: 36px; font-weight: 800; color: var(--dark-text); margin-bottom: 28px; }
        .price-num span { font-size: 14px; color: var(--body-text); font-weight: 500; }
        .features-list { list-style: none; margin-bottom: 36px; }
        .features-list li { font-size: 14px; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; color: var(--body-text); }
        .features-list li::before { content: "✓"; color: var(--btn-green); font-weight: 800; }

        /* Proof of Growth Client Results Section */
        .results-section {
            padding: 100px 0;
            background-color: #ffffff;
            text-align: center;
        }
        .results-section h2 { font-size: 38px; font-weight: 800; color: var(--dark-text); letter-spacing: -1px; margin-bottom: 12px; }
        .results-section h2 span { color: var(--primary-blue); }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 1fr;
            align-items: stretch;
            gap: 24px;
            margin-top: 56px;
        }
        .result-image-card {
            overflow: hidden;
            min-width: 0;
            min-height: 0;
            aspect-ratio: 16 / 10;
            border-radius: 10px;
            transition: transform 0.25s ease;
        }
        .result-image-card:hover { transform: translateY(-6px); }
        .result-image-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        @media (max-width: 900px) {
            .results-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .results-grid { grid-template-columns: 1fr; }
        }

        /* Multi-Location Section Layout */
        .multi-location { padding: 100px 0; background: #ffffff; border-top: 1px solid var(--border-color); }
        .multi-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
        .multi-left-vector {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .multi-image {
            width: 100%;
            height: auto;
            max-height: 360px;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
        }
        .multi-left-vector:hover .multi-image { transform: scale(1.03); }
        .multi-right h2 { font-size: 38px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; color: var(--dark-text); }
        .multi-right h2 span { color: var(--primary-blue); }
        .multi-right p { color: var(--body-text); margin-bottom: 32px; font-size: 15px; }

        /* Local SEO Services Across India Grid Layout */
        .india-grid-section {
            padding: 100px 0;
            background-color: var(--light-bg);
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        .india-grid-section h2 { font-size: 36px; font-weight: 800; color: var(--dark-text); margin-bottom: 12px; letter-spacing: -1px; }
        .india-grid-section p { font-size: 15px; color: var(--body-text); margin-bottom: 48px; }
        .badge-grid-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .city-badge-element {
            background: #ffffff;
            border: 1px solid var(--border-color);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--dark-text);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .city-badge-element::before { content: "•"; color: var(--primary-blue); font-weight: 900; }

        /* Expert GMB Banner Layer Segment */
        .expert-banner-section {
            background-color: #064E3B;
            color: #ffffff;
            padding: 80px 0;
        }
        .expert-banner-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 48px;
            align-items: center;
        }
        .expert-banner-left svg { width: 100%; max-width: 280px; height: auto; display: block; margin: 0 auto; }
        .expert-banner-right h2 { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.2; }
        .expert-banner-right h2 span { color: #10B981; }
        .expert-banner-right p { font-size: 16px; color: #D1FAE5; margin-bottom: 32px; max-width: 680px; }
        .btn-banner-wa { background: #10B981; color: white; padding: 14px 28px; border-radius: 8px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: background 0.2s; }
        .btn-banner-wa:hover { background: #059669; }
        .btn-banner-wa svg { width: 18px; height: 18px; fill: white; }

        /* Intake Form Box Architecture */
        .intake-section { padding: 100px 0; background: var(--light-bg); }
        .intake-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
        .intake-left h2 { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin-bottom: 24px; color: var(--dark-text); }
        .intake-left h2 span { color: var(--primary-blue); }
        .intake-form-box { background: #fff; border: 1px solid var(--border-color); padding: 48px; border-radius: 24px; box-shadow: var(--shadow-premium); }
        
        .form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { margin-bottom: 20px; text-align: left; }
        .form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--dark-text); }
        .form-group input, .form-group select { width: 100%; padding: 14px; border: 1px solid #CBD5E1; border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--dark-text); outline: none; transition: border-color 0.2s; }
        .form-group input:focus, .form-group select:focus { border-color: var(--primary-blue); }
        
        .btn-submit { background: var(--primary-blue); color: white; width: 100%; padding: 16px; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
        .btn-submit:hover { background: #0042cc; }

        /* Modern FAQ Section Accordion */
        .faq { padding: 100px 0; background-color: #ffffff; }
        .faq h2 { font-size: 36px; font-weight: 800; text-align: center; margin-bottom: 12px; letter-spacing: -1px; color: var(--dark-text); }
        .faq h2 span { color: var(--primary-blue); }
        .faq-wrapper { max-width: 840px; margin: 56px auto 0; }
        details { background: #ffffff; border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 16px; transition: all 0.3s; }
        details[open] { border-color: var(--primary-blue); box-shadow: var(--shadow-premium); }
        summary { padding: 24px; font-weight: 700; font-size: 16px; cursor: pointer; user-select: none; outline: none; display: flex; justify-content: space-between; align-items: center; color: var(--dark-text); }
        summary::-webkit-details-marker { display: none; }
        summary::after { content: "+"; font-size: 20px; color: var(--primary-blue); font-weight: 400; }
        details[open] summary::after { content: "−"; }
        .faq-body { padding: 0 24px 24px; font-size: 15px; color: var(--body-text); line-height: 1.7; }

        /* Sticky Left Floating WhatsApp Widget */
        .whatsapp-sticky {
            position: fixed;
            bottom: 32px;
            left: 32px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(37,211,102,0.3);
            z-index: 9999;
            transition: transform 0.2s;
        }
        .whatsapp-sticky:hover { transform: scale(1.08); }
        .whatsapp-sticky svg { width: 32px; height: 32px; fill: #ffffff; }

        /* Footer Section */
        footer { background-color: #090D1A; color: #94A3B8; padding: 80px 0 40px; font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: 1.3fr 0.85fr 0.85fr; gap: 64px; margin-bottom: 56px; }
        .footer-col h4 { color: #ffffff; font-size: 16px; margin-bottom: 24px; font-weight: 700; }
        .footer-col p { line-height: 1.7; margin-bottom: 10px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; text-align: center; font-size: 13px; color: #64748B; }

        /* Mobile elements hidden on desktop */
        .mobile-brand-text { display: none; }
        .mobile-logo-blob { display: none; }
        .mobile-logo-circle { display: none; }
        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: 24px;
        }
        .mobile-nav-panel { display: none; }
        .nav-hamburger { display: none; }

        @media (max-width: 992px) {
            .hero-grid, .info-grid, .benefits-split, .multi-grid, .intake-grid, .expert-banner-grid { grid-template-columns: 1fr; gap: 40px; }
            .inline-cta-banner { flex-direction: column; text-align: center; gap: 20px; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .form-row-split { grid-template-columns: 1fr; gap: 0; }

            /* ── Header ── */
            .nav-wrapper {
                height: 90px;
                padding: 0 20px;
            }

            /* Clean logo */
            .logo-img {
                height: 75px !important;
                width: auto;
                padding-top: 0 !important;
                object-fit: contain;
            }

            /* Hide desktop nav */
            nav.nav-links { display: none; }

            /* Right side */
            .header-right {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            /* Call Us — outlined pill */
            .header-right .btn-nav-cta {
                background: transparent;
                border: 1.5px solid var(--primary-blue);
                color: var(--primary-blue);
                padding: 10px 15px;
                font-size: 14px;
                font-weight: 700;
                border-radius: 50px;
                box-shadow: none;
                display: flex;
                align-items: center;
                gap: 7px;
            }
            .header-right .btn-nav-cta svg { fill: var(--primary-blue); width: 15px; height: 15px; }
            .header-right .btn-nav-cta:hover { background: rgba(0,82,255,0.05); transform: none; box-shadow: none; color: var(--primary-blue); }
            .cta-number { display: none; }

            /* Plain hamburger */
            .nav-toggle-checkbox { display: none; }
            .nav-hamburger {
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 6px;
                width: 28px;
                cursor: pointer;
                flex-shrink: 0;
            }
            .nav-hamburger span {
                display: block;
                width: 26px;
                height: 2.5px;
                background-color: var(--dark-text);
                border-radius: 2px;
                transition: transform 0.25s ease, opacity 0.25s ease;
            }
            .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
            .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

            /* Mobile dropdown */
            .mobile-nav-panel {
                display: none;
                flex-direction: column;
                background: #ffffff;
                border-top: 1px solid var(--border-color);
                box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            }
            .mobile-nav-panel a {
                padding: 15px 24px;
                font-size: 15px;
                font-weight: 600;
                color: var(--dark-text);
                text-decoration: none;
                border-bottom: 1px solid var(--border-color);
                display: block;
            }
            .mobile-nav-panel a:last-child { border-bottom: none; }
            .mobile-nav-panel a:hover { color: var(--primary-blue); background: #f8fafc; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 18px; }

            section, .hero-section, .info-section, .benefits-section, .advantage-section,
            .pricing-section, .results-section, .multi-location, .india-grid-section,
            .intake-section, .faq, .expert-banner-section { padding: 60px 0 !important; }

            .hero-left h1 { font-size: 32px; letter-spacing: -1px; }
            .hero-left p { font-size: 15px; }
            .hero-card-cta { padding: 32px 24px; }

            .info-right h2, .multi-right h2, .benefits-title,
            .advantage-section h2, .pricing-section h2, .results-section h2 { font-size: 28px; }
            .india-grid-section h2, .faq h2 { font-size: 26px; }
            .expert-banner-right h2, .intake-left h2 { font-size: 28px; }
            .expert-banner-grid { text-align: center; }

            .matrix-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
            .footer-col h4 { margin-bottom: 14px; }

            .intake-form-box { padding: 28px 20px; }

            .whatsapp-sticky { width: 50px; height: 50px; bottom: 20px; left: 20px; }
            .whatsapp-sticky svg { width: 26px; height: 26px; }

            .btn-nav-cta { padding: 10px 16px; font-size: 13px; }
            .btn-nav-cta svg { width: 12px; height: 12px; }
        }

        @media (max-width: 480px) {
            .hero-left h1 { font-size: 26px; }
            .info-right h2, .multi-right h2, .benefits-title,
            .advantage-section h2, .pricing-section h2, .results-section h2,
            .india-grid-section h2, .faq h2, .expert-banner-right h2, .intake-left h2 { font-size: 22px; }

            .price-card { padding: 32px 22px; }
            .benefit-box { padding: 28px 20px; }
            .matrix-card { padding: 24px 20px; }
            .inline-cta-banner { padding: 20px 24px; }
            .inline-cta-text { font-size: 15px; }

            .btn-nav-cta {
                padding: 10px 16px;
                font-size: 13px;
            }
            .btn-nav-cta svg { width: 13px; height: 13px; }
            .logo-img { height: 130px !important; }
        }