  
        /* --- HERO & HIGH-PERFORMANCE SEARCH FUNNEL --- */
        .hero-funnel { padding: 60px 0; border-bottom: 1px solid var(--border-subtle); position: relative; }
    
        /* ENGINE SEARCH UI */
        .search-engine-box {
            border-radius: 16px; padding: 32px; max-width: 750px; margin: 0 auto;
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 9%);
        }
        .search-form-group { display: flex; gap: 12px; margin-bottom: 16px; }
        .input-wrapper { position: relative; flex: 1; }
        .input-wrapper .icon-marker { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
        .search-form-group input {
            width: 100%; background: aliceblue; border: 1px solid #b8deff;
            padding: 16px 44px 16px 16px; border-radius: 10px; outline: none; transition: var(--transition-smooth);
        }
        .search-form-group input:focus { border-color: var(--border-focus); box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15); }
        .btn-search {
            background: #003399; color: white; border: none;
            padding: 0 28px; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
            cursor: pointer; transition: var(--transition-smooth); display: flex; align-items: center; gap: 8px;
        }
        .btn-search:hover { background: #1d4ed8; }

        /* MICRO-INTERACTION LOADER */
        .loader {
            width: 18px; height: 18px; border: 2px solid #fff; border-bottom-color: transparent;
            border-radius: 50%; display: inline-block; animation: rotation 0.6s linear infinite;
        }
        @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* SWISS MINIMAL RESULT UI */
        .search-result-panel { display: none; margin-top: 24px; text-align: right; }
        .result-grid-card {
            background: #f0f8ff61; border: 1px solid #9fc6ff;
            border-radius: 12px; padding: 24px; margin-bottom: 20px;
        }
        .result-title-area { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--bg-element); }
        .result-title-area h3 { font-size: 1rem; font-weight: 700; color: var(--text-main); }
        .status-badge { background: rgba(16, 185, 129, 0.1); color: var(--accent-success); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
        
        .grid-data { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .data-cell { background: var(--bg-surface); padding: 14px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.02); }
        .data-cell .label { font-size: 0.78rem; display: block; margin-bottom: 4px; }
        .data-cell .val { font-size: 0.95rem; font-weight: 700; color: var(--text-main); }
        .data-cell.highlight { border: 1px dashed rgba(59, 130, 246, 0.4); background: rgba(59, 130, 246, 0.03); }
        .data-cell.highlight .val { color: var(--text-link); }

        /* THE CONVERSION CORE (FUNNEL CONTEXT) */
        .funnel-conversion-box {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(17, 23, 38, 0.05) 100%);
            border: 1px solid rgba(59, 130, 246, 0.25); border-radius: 12px; padding: 24px;
            display: flex; flex-direction: column; gap: 16px;
        }

        /* --- DATA PRESENTATION SECTION (MAP & DISTRICTS) --- */
        .data-directory { padding: 80px 0; border-bottom: 1px solid var(--border-subtle); }
        .section-header { text-align: center; margin-bottom: 48px; }
        .section-header h2 { font-size: 1.85rem; font-weight: 800; margin-bottom: 12px; }
        .section-header p { color: var(--text-muted); font-size: 0.98rem; }
        
        .district-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 32px; scrollbar-width: none; }
        .district-tabs::-webkit-scrollbar { display: none; }
        .tab-btn {
            border: 1px solid var(--border-subtle);
            color: var(--text-muted); padding: 10px 20px; border-radius: 8px;
            font-size: 0.88rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: var(--transition-smooth);
        }
        .tab-btn.active, .tab-btn:hover { background: #003399; color: white; }

        .directory-layout { display: grid; grid-template-columns: 402px 1fr; gap: 20px; }
        .meta-sidebar { background: aliceblue; border: 1px solid #003399; border-radius: 12px; padding: 24px; height: fit-content; }
        .sidebar-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--primary); }
        .meta-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
        .meta-list li { font-size: 0.88rem; color: var(--text-muted); display: flex; gap: 8px; }
        .meta-list li strong { color: var(--text-main); font-weight: 600; min-width: 70px; }

        /* CLEAN DATA TABLE */
        .table-container { background: aliceblue; border: 1px solid #003399; border-radius: 12px; overflow: hidden; }
        .swiss-table { width: 100%; border-collapse: collapse; text-align: center; font-size: 0.9rem; }
        .swiss-table th { background: #003399; padding: 16px 20px; color: white; font-weight: 600; border-bottom: 1px solid #003399; }
        .swiss-table td { padding: 14px 20px; border-bottom: 1px solid #003399; color: var(--text-main); }
        .swiss-table tr:last-child td { border-bottom: none; }
        .swiss-table tr:hover td { background: rgba(255,255,255,0.01); }
        .badge-count { background: rgba(59, 130, 246, 0.1); color: var(--text-link); padding: 2px 8px; border-radius: 6px; font-weight: 600; font-size: 0.85rem; }

        /* --- THE PITCH & CONVERSION CORE FORM --- */
        .brand-pitch-section { padding: 80px 0; background: radial-gradient(circle at top, rgba(37, 99, 235, 0.15) 0%, var(--bg-base) 70%); }
        .pitch-grid { display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center; }
        .pitch-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 24px; line-height: 1.4; }
        .pitch-info p { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 24px; text-align: justify; }
        
        .pitch-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .feature-tag { background: var(--bg-surface); border: 1px solid var(--border-subtle); padding: 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; }

        .lead-capture-card {
            background: var(--bg-surface); border: 1px solid var(--border-subtle);
            border-radius: 16px; padding: 36px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .lead-capture-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
        .lead-capture-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 24px; }
        
        .form-vertical { display: flex; flex-direction: column; gap: 16px; }
        .form-vertical input {
            background: var(--bg-base); border: 1px solid var(--border-subtle);
            padding: 14px; border-radius: 8px; color: var(--text-main); font-size: 0.92rem; outline: none;
        }
        .form-vertical input:focus { border-color: var(--border-focus); }
        .btn-submit-lead { background: var(--brand-primary); color: white; border: none; padding: 14px; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition-smooth); }
        .btn-submit-lead:hover { background: #1d4ed8; }

        /* --- RESPONSIVE DESIGN BREAKPOINTS --- */
        @media (max-width: 1024px) {
            .directory-layout { grid-template-columns: 1fr; }
            .pitch-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        @media (max-width: 768px) {
            .hero-text h1 { font-size: 1.75rem; }
            .search-form-group { flex-direction: column; }
            .btn-search { padding: 16px; justify-content: center; }
            .grid-data { grid-template-columns: 1fr; }
        }
