        .landing-header {
            background: linear-gradient(135deg, #4272d7 0%, #2d5aa6 100%);
            padding: 80px 0;
        }

        .landing-header h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        .landing-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        }

        .map-canvas-mock {
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
            border: 2px dashed #0284c7;
            color: #0284c7;
            min-height: 520px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .map-canvas-mock::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(2, 132, 199, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(2, 132, 199, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .map-canvas-mock>* {
            position: relative;
            z-index: 1;
        }

        .map-canvas-mock #map {
            width: 100%;
            flex: 1;
            min-height: 420px;
        }

        .map-canvas-caption {
            padding: 1rem 1.25rem 1.25rem;
            text-align: center;
        }

        .map-pulse {
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #4272d7;
            z-index: 2;
        }

        .map-pulse::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px solid #4272d7;
            animation: mapPulse 2s ease-in-out infinite;
        }

        @keyframes mapPulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(2.8);
                opacity: 0;
            }
        }

        .map-pulse:nth-child(1) {
            top: 32%;
            left: 28%;
        }

        .map-pulse:nth-child(2) {
            top: 55%;
            left: 58%;
            animation-delay: 0.8s;
        }

        .map-pulse:nth-child(3) {
            top: 38%;
            left: 72%;
            animation-delay: 1.5s;
        }

        .stats-section {
            background: #f8fafc;
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: #4272d7;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: #64748b;
            font-size: 1.05rem;
        }

        .hero-cta {
            margin-top: 2rem;
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Tambahan: legenda peta */
        .map-legend {
            background: #fff;
            border-radius: 12px;
            padding: 16px 20px;
            margin-top: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .map-legend__group p {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            color: #94a3b8;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .map-legend__item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            margin-bottom: 6px;
        }

        .map-legend__dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
            display: inline-block;
        }

        /* Tambahan: kontak */
        .contact-icon {
            background: #eef2ff;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Tambahan: info hasil pencarian */
        .search-result-info {
            font-size: 12.5px;
            color: #64748b;
            margin-top: 10px;
            padding: 8px 10px;
            background: #f1f5f9;
            border-radius: 8px;
            display: none;
        }

        .search-result-info.show {
            display: block;
        }