/* RESET */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        html,
        body {
            height: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: Inter, system-ui, -apple-system, sans-serif;
            background: radial-gradient(1200px 600px at 10% 10%, rgba(41, 152, 255, 0.06), transparent), linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
            color: var(--muted);
            line-height: var(--lh-normal);
            /* padding-top: 80px;  */
        }

        /* UTILS */
        /* .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 20px;
        } */

        .wrap {
            max-width: var(--container);
            margin: 0 auto;
            padding: 20px;
        }



        /* --- HERO --- */
        .hero {
            margin-bottom: 28px;
        }

        .hero-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #ffffff);
            border-radius: 26px;
            padding: clamp(20px, 5vw, 34px);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .brand-strip {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 15px;
        }

        .brand-logo {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: white;
            display: flex;
            font-weight: 800;
            font-size: 20px;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(41, 152, 255, 0.18);
        }

        .hero h1 {
            font-size: var(--fs-xxxl);
            line-height: 1.1;
            color: var(--text);
            margin: 10px 0 15px;
        }

        .hero .lead {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--muted);
            opacity: 0.8;
            max-width: 800px;
        }

        .kpi-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .kpi {
            background: #f8fafc;
            padding: 8px 14px;
            border-radius: 10px;
            font-size: 0.9rem;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        /* CTA Buttons in Hero */
        .cta-btn {
            padding: 12px 22px;
            border-radius: 14px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 0;
        }

        .cta-btn.primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 6px 20px rgba(41, 152, 255, 0.28);
        }

        .cta-btn.primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        .cta-btn.outline {
            background: white;
            border: 2px solid var(--accent);
            color: var(--accent-dark);
        }

        .cta-btn.outline:hover {
            background: var(--accent-soft);
        }

        .cta-btn.soft {
            background: var(--accent-soft);
            color: var(--accent-dark);
        }

        .privacy-contact {
            margin-top: 20px;
            font-size: 0.95rem;
            color: var(--muted);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-pill {
            padding: 6px 14px;
            background: var(--accent-soft);
            color: var(--accent-dark);
            border-radius: 999px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(41, 152, 255, 0.18);
        }

        /* --- LAYOUT WRAPPER (Responsive Grid/Flex) --- */
        .content-wrapper {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        /* --- SIDEBAR (Desktop) --- */
        .toc-panel {
            width: 280px;
            position: sticky;
            top: 100px;
            flex-shrink: 0;
        }

        .toc-box {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            border: 1px solid rgba(15, 23, 42, 0.04);
        }

        .toc-header {
            padding: 18px 20px;
            background: #fcfdff;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toc-list {
            list-style: none;
            padding: 10px 0;
        }

        .toc-list a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: #556070;
            font-size: 0.9rem;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: 0.2s;
        }

        .toc-list a:hover {
            background: var(--accent-soft);
            color: var(--accent-dark);
            border-left-color: var(--accent);
        }

        .toc-list i {
            margin-right: 8px;
            opacity: 0.7;
        }

        /* --- SIDEBAR BANNER --- */
        .toc-banner-card {
            margin-top: 20px;
            background: linear-gradient(135deg, #0b3858 0%, #0054c7 100%);
            border-radius: 20px;
            padding: 24px;
            color: white;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 84, 199, 0.25);
            position: relative;
            overflow: hidden;
        }

        .toc-banner-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .banner-btn {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 15px;
            position: relative;
            z-index: 1;
        }

        .banner-btn:hover {
            background: white;
            color: var(--accent-dark);
        }

        /* --- MOBILE TOC (Accordion for small screens) --- */
        .mobile-toc {
            display: none;
            /* Hidden on desktop */
            background: white;
            border-radius: 16px;
            padding: 15px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-toc summary {
            font-weight: 700;
            color: var(--text);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-toc summary::after {
            content: '\f078';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.8rem;
            transition: 0.2s;
        }

        .mobile-toc[open] summary::after {
            transform: rotate(180deg);
        }

        /* --- MAIN CONTENT AREA --- */
        .main-content {
            flex: 1;
            min-width: 0;
            /* Prevents overflow in flex child */
        }

        .policy-section {
            background: var(--card);
            padding: 24px;
            border-radius: 18px;
            margin-bottom: 18px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(15, 23, 42, 0.03);
        }

        .policy-section h2 {
            font-size: var(--fs-xl);
            color: var(--text);
            margin-bottom: 12px;
        }

        .policy-section p {
            color: var(--muted);
            margin-bottom: 12px;
        }

        /* Feature Cards */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 14px;
            margin-top: 15px;
        }

        .feature {
            padding: 18px;
            border-radius: 16px;
            background: linear-gradient(180deg, #fff, #fbfdff);
            border: 1px solid rgba(15, 23, 42, 0.03);
            transition: transform 0.3s;
        }

        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(3, 31, 54, 0.08);
        }

        .feature h3 {
            margin-bottom: 8px;
            color: var(--text);
            font-size: 1.1rem;
        }

        .feature p {
            font-size: 0.95rem;
            color: var(--muted);
            margin: 0;
        }

        /* Tables (Responsive Wrapper) */
        .table-responsive {
            overflow-x: auto;
            margin-top: 15px;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .policy-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            /* Forces scroll on mobile */
        }

        .policy-table th,
        .policy-table td {
            padding: 12px;
            border-bottom: 1px solid rgba(15, 23, 42, 0.04);
            text-align: left;
        }

        .policy-table th {
            background: #f8fafc;
            color: var(--text);
            font-weight: 700;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 22px;
        }

        .timeline::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--accent), var(--accent-dark));
            border-radius: 8px;
        }

        .timeline-item {
            position: relative;
            padding: 18px 12px;
            margin-bottom: 18px;
            background: linear-gradient(180deg, #fff, #fbfdff);
            border-radius: 12px;
            border: 1px solid rgba(15, 23, 42, 0.03);
            box-shadow: var(--shadow-sm);
        }

        .timeline-item .dot {
            position: absolute;
            left: -26px;
            top: 20px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--card);
            border: 4px solid var(--accent);
            z-index: 2;
        }

        /* FAQ/Glossary */
        .faq .q {
            padding: 14px;
            border-radius: 12px;
            border: 1px solid rgba(15, 23, 42, 0.04);
            background: linear-gradient(180deg, #fff, #fbfdff);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq .a {
            padding: 12px 14px;
            margin-top: 6px;
            display: none;
            color: var(--muted);
        }

        .faq .open .a {
            display: block;
        }

        /* JSON Box */
        .json-box {
            font-family: monospace;
            background: #0b1220;
            color: #bcdcff;
            padding: 16px;
            border-radius: 12px;
            overflow-x: auto;
            border: 1px solid rgba(255, 255, 255, 0.03);
            font-size: 0.9rem;
        }

        .badge {
            display: inline-block;
            padding: 6px 10px;
            border-radius: 999px;
            background: var(--accent-soft);
            color: var(--accent-dark);
            font-weight: 700;
            border: 0;
            cursor: pointer;
            font-size: 0.85rem;
        }

        /* Sticky CTA */
        .cta-sticky {
            position: fixed;
            right: 20px;
            bottom: 20px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: white;
            padding: 12px 18px;
            border-radius: 999px;
            box-shadow: 0 16px 50px rgba(3, 31, 54, 0.2);
            z-index: 90;
            display: flex;
            gap: 10px;
            align-items: center;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .cta-sticky:hover {
            transform: scale(1.05);
        }

        .cta-sticky .pulse {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
        }


        /* =========================================
           RESPONSIVE MEDIA QUERIES
        ========================================= */

        /* Tablet & Mobile (< 1024px) */
       /* Tablet & Mobile (< 1024px) */
        @media (max-width: 1024px) {
            
            /* 1. Page layout ko flexible banayein */
            .wrap, body {
                width: 100% !important;
                max-width: 100vw !important;
                overflow-x: hidden !important; /* Horizontal scroll rokein */
                padding-left: 10px !important;  /* Mobile pe padding kam karein */
                padding-right: 10px !important;
            }

            .content-wrapper {
                display: block !important; /* Flexbox hatayein taaki width na faile */
            }

            /* 2. Desktop Sidebar ko chupayein */
            .toc-panel {
                display: none !important;
            }

            /* 3. Mobile Dropdown ko dikhayein */
            .mobile-toc {
                display: block !important;
                width: 100%;
            }

            /* 4. Content aur Cards ko screen ke andar rakhein */
            .main-content, 
            .policy-section, 
            .hero-card,
            .features,
            .feature {
                width: 100% !important;
                min-width: 0 !important; /* Flex items ko shrink hone de */
                box-sizing: border-box !important;
            }

            /* 5. Table overflow ko control karein */
            .table-responsive {
                width: 100% !important;
                display: block;
                overflow-x: auto; /* Table scroll karega, poora page nahi */
            }
            
            /* Extra: Text padding adjust karein */
            .hero-card {
                padding: 20px !important;
            }
            .policy-section {
                padding: 15px !important;
            }
        }

        /* Mobile (< 700px) */
        @media (max-width: 700px) {
            .hero-actions {
                flex-direction: column;
            }

            .cta-btn {
                width: 100%;
                text-align: center;
            }

            .policy-section {
                padding: 16px;
            }

            .features {
                grid-template-columns: 1fr;
            }
        }