/* ====================================================== */
        /* BASE */
        /* ====================================================== */

        :root {
            --brand-50: #f0f9ff;
            --brand-100: #e0f2fe;
            --brand-200: #bae6fd;
            --brand-300: #7dd3fc;
            --brand-400: #38bdf8;
            --brand-500: #0ea5e9;
            --brand-600: #0284c7;
            --brand-700: #0369a1;
            --brand-800: #075985;
            --brand-900: #0c4a6e;

            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;

            --ease: cubic-bezier(.16,1,.3,1);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Plus Jakarta Sans", sans-serif;
            color: var(--slate-900);
            background: #fff;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin-inline: auto;
        }

        /* ====================================================== */
        /* NAVBAR */
        /* ====================================================== */

        .navbar-shell {
            position: fixed;
            top: 18px;
            left: 0;
            width: 100%;
            z-index: 1000;
            pointer-events: none;
        }

        .navbar {
            min-height: 66px;
            padding: 8px 10px 8px 14px;

            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 20px;

            background: rgba(255,255,255,.72);
            border: 1px solid rgba(255,255,255,.90);
            border-radius: 24px;

            backdrop-filter: blur(22px) saturate(160%);
            -webkit-backdrop-filter: blur(22px) saturate(160%);

            box-shadow:
                0 12px 40px rgba(15,23,42,.07),
                inset 0 1px 0 rgba(255,255,255,.9);

            pointer-events: auto;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 11px;
            width: fit-content;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 50%;

            display: grid;
            place-items: center;

            background: var(--brand-50);
            border: 1px solid var(--brand-100);

            color: var(--brand-600);
            font-size: 19px;
            font-weight: 800;
        }

        .brand-title {
            font-size: 16px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: -.03em;
        }

        .brand-subtitle {
            margin-top: 4px;
            font-size: 9px;
            color: var(--slate-500);
            font-weight: 600;
            letter-spacing: .08em;
        }

        .nav-pill {
            position: relative;
            display: flex;
            align-items: center;
            gap: 2px;

            padding: 5px;

            background: rgba(255,255,255,.66);
            border: 1px solid rgba(226,232,240,.85);
            border-radius: 999px;

            box-shadow: 0 5px 20px rgba(15,23,42,.035);
        }

        .nav-link {
            position: relative;
            z-index: 2;

            padding: 10px 15px;
            border-radius: 999px;

            color: var(--slate-500);
            font-size: 12px;
            font-weight: 600;

            transition:
                color .25s ease,
                background .25s ease,
                transform .25s ease;
        }

        .nav-link:hover {
            color: var(--brand-700);
        }

        .nav-link.active {
            color: white;
            background: var(--brand-600);
            box-shadow: 0 7px 18px rgba(2,132,199,.22);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 9px;
        }

        .icon-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--slate-200);

            display: grid;
            place-items: center;

            color: var(--slate-600);
            background: rgba(255,255,255,.72);
        }

        .primary-button {
            min-height: 40px;
            padding: 0 18px;
            border-radius: 999px;

            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;

            color: #fff;
            background: var(--brand-600);

            font-size: 12px;
            font-weight: 700;

            box-shadow: 0 8px 22px rgba(2,132,199,.18);

            transition:
                transform .3s var(--ease),
                background .25s ease,
                box-shadow .3s ease;
        }

        .primary-button:hover {
            transform: translateY(-2px);
            background: var(--brand-700);
            box-shadow: 0 12px 28px rgba(2,132,199,.24);
        }

        .menu-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--slate-200);
            border-radius: 13px;
            background: white;
            color: var(--slate-700);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 86px;
            left: 14px;
            right: 14px;
            z-index: 999;

            padding: 12px;

            background: rgba(255,255,255,.94);
            border: 1px solid var(--slate-200);
            border-radius: 22px;

            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);

            box-shadow: 0 18px 50px rgba(15,23,42,.12);
        }

        .mobile-nav-panel.open {
            display: grid;
            gap: 5px;
        }

        .mobile-nav-panel a {
            padding: 12px 14px;
            border-radius: 14px;
            color: var(--slate-600);
            font-size: 13px;
            font-weight: 650;
        }

        .mobile-nav-panel a.active {
            color: white;
            background: var(--brand-600);
        }

        /* ====================================================== */
        /* HERO ABOUT */
        /* ====================================================== */

        .about-hero {
            position: relative;
            padding: 155px 0 70px;
            overflow: hidden;

            /*
                Background Hero Tentang:
                menggunakan peta Cidadap yang sama dengan identitas website.
                Tidak memakai background-attachment: fixed agar scrolling
                tetap ringan di desktop maupun mobile.
            */
            background-image:
                linear-gradient(
                    180deg,
                    rgba(248, 252, 255, .90) 0%,
                    rgba(240, 249, 255, .76) 34%,
                    rgba(255, 255, 255, .62) 72%,
                    rgba(255, 255, 255, .78) 100%
                ),
                url('https://lh3.googleusercontent.com/d/1_uJr5viwuC4N85Fo5GnzSIlpDvhPBQc4');

            background-size:
                cover;

            background-position:
                center 42%;

            background-repeat:
                no-repeat;
        }


        /*
            Lapisan pencahayaan tambahan.
            Fungsinya menjaga tulisan tetap terbaca tanpa
            membuat gambar peta kembali terlihat putih polos.
        */
        .about-hero::before {
            content: "";

            position: absolute;
            inset: 0;

            z-index: 0;

            pointer-events: none;

            background:
                radial-gradient(
                    circle at 50% 24%,
                    rgba(255,255,255,.64) 0%,
                    rgba(255,255,255,.26) 36%,
                    transparent 64%
                ),
                linear-gradient(
                    90deg,
                    rgba(224,242,254,.18),
                    transparent 30%,
                    transparent 70%,
                    rgba(224,242,254,.18)
                );
        }


        /*
            Supaya semua isi Hero tetap berada di atas layer peta.
        */
        .about-hero > .container {
            position: relative;
            z-index: 2;
        }

        .hero-header {
            position: relative;
            z-index: 2;
            max-width: 870px;
            margin: 0 auto;
            text-align: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 7px;

            padding: 8px 13px;
            border-radius: 999px;

            background: var(--brand-50);
            border: 1px solid var(--brand-100);

            color: var(--brand-700);

            font-size: 10px;
            font-weight: 800;
            letter-spacing: .11em;
            text-transform: uppercase;
        }

        .hero-title {
            margin: 23px 0 0;

            font-size: clamp(42px, 5.2vw, 70px);
            line-height: 1.04;
            letter-spacing: -.055em;
            font-weight: 800;
        }

        .hero-title span {
            color: var(--brand-500);
        }

        .hero-description {
            max-width: 720px;
            margin: 24px auto 0;

            color: var(--slate-500);
            font-size: 16px;
            line-height: 1.8;
        }

        .hero-visual {
            position: relative;
            z-index: 3;

            /*
                Sedikit diperkecil agar visual utama tidak terlalu
                memenuhi layar, tetapi tetap menjadi fokus Hero.
            */
            width: min(92%, 1080px);

            margin-top: 52px;
            margin-left: auto;
            margin-right: auto;

            border-radius: 30px;
            overflow: hidden;

            background:
                linear-gradient(135deg, var(--brand-100), var(--brand-50));

            border: 1px solid var(--brand-100);

            box-shadow:
                0 24px 58px rgba(15,23,42,.11);
        }

        .hero-visual img {
            width: 100%;
            height: 460px;

            object-fit: cover;

            background: var(--brand-50);
        }

        .hero-visual-overlay {
            position: absolute;
            inset: 0;

            background:
                linear-gradient(
                    to top,
                    rgba(7,24,39,.72) 0%,
                    rgba(7,24,39,.14) 40%,
                    transparent 66%
                );

            pointer-events: none;
        }

        .hero-visual-caption {
            position: absolute;
            left: 28px;
            right: 28px;
            bottom: 26px;

            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;

            color: #fff;
        }

        .caption-kicker {
            color: var(--brand-200);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .caption-title {
            margin-top: 6px;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -.03em;
        }

        .caption-meta {
            max-width: 320px;
            text-align: right;
            color: rgba(255,255,255,.70);
            font-size: 12px;
            line-height: 1.6;
        }

        /* ====================================================== */
        /* INTRO STORY */
        /* ====================================================== */

        .story {
            position: relative;
            z-index: 3;

            padding: 95px 0 45px;

            /*
                Area Tentang Platform dibuat putih penuh supaya
                konten lebih bersih dan berbeda dari Hero berpeta.
            */
            background: #ffffff;

            border-top:
                1px solid rgba(226,232,240,.72);
        }

        .story-grid {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: 70px;
            align-items: start;
        }

        .section-label {
            color: var(--brand-700);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .section-title {
            margin: 13px 0 0;

            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.1;
            letter-spacing: -.045em;
            font-weight: 800;
        }

        .section-copy {
            color: var(--slate-500);
            font-size: 15px;
            line-height: 1.85;
        }

        .story-points {
            display: grid;
            gap: 14px;
            margin-top: 27px;
        }

        .story-point {
            display: flex;
            align-items: flex-start;
            gap: 12px;

            padding: 14px 0;

            border-bottom: 1px solid var(--slate-100);
        }

        .story-point-icon {
            width: 34px;
            height: 34px;
            flex: none;
            border-radius: 11px;

            display: grid;
            place-items: center;

            background: var(--brand-50);
            color: var(--brand-600);
            border: 1px solid var(--brand-100);
        }

        .story-point strong {
            display: block;
            margin-bottom: 3px;
            font-size: 13px;
        }

        .story-point span {
            color: var(--slate-500);
            font-size: 12px;
            line-height: 1.6;
        }

        /* ====================================================== */
        /* VISION MISSION */
        /* ====================================================== */

        .vision-section {
            position: relative;
            z-index: 3;

            padding: 60px 0 92px;

            /*
                Menyatu dengan section Tentang Platform di atas,
                sehingga Story + Visi + Misi menjadi satu area putih.
            */
            background: #ffffff;

            border-bottom:
                1px solid rgba(226,232,240,.72);
        }

        .vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
        }

        .vision-card {
            position: relative;
            padding: 34px;
            border-radius: 28px;

            background: #fff;
            border: 1px solid var(--slate-200);

            box-shadow:
                0 12px 34px rgba(15,23,42,.045);

            overflow: hidden;
        }

        .vision-card::after {
            content: "";
            position: absolute;
            right: -50px;
            top: -60px;

            width: 180px;
            height: 180px;
            border-radius: 50%;

            background: var(--brand-50);
            opacity: .75;
        }

        .card-icon {
            position: relative;
            z-index: 2;

            width: 46px;
            height: 46px;
            border-radius: 15px;

            display: grid;
            place-items: center;

            color: var(--brand-700);
            background: var(--brand-50);
            border: 1px solid var(--brand-100);
        }

        .vision-card:nth-child(2) .card-icon {
            color: #d97706;
            background: #fffbeb;
            border-color: #fef3c7;
        }

        .vision-card h3 {
            position: relative;
            z-index: 2;

            margin: 22px 0 12px;
            font-size: 21px;
            letter-spacing: -.03em;
        }

        .vision-card p,
        .vision-card li {
            position: relative;
            z-index: 2;

            color: var(--slate-500);
            font-size: 13px;
            line-height: 1.8;
        }

        .vision-card ul {
            margin: 0;
            padding-left: 18px;
        }

        .vision-card li + li {
            margin-top: 7px;
        }

        /* ====================================================== */
        /* WHY PLATFORM */
        /* ====================================================== */

        .why-section {
            padding: 90px 0;
            background: var(--slate-50);
            border-top: 1px solid var(--slate-100);
            border-bottom: 1px solid var(--slate-100);
        }

        .section-heading-center {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }

        .principle-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .principle-card {
            padding: 29px;
            border-radius: 25px;

            background: rgba(255,255,255,.86);
            border: 1px solid var(--slate-200);

            transition:
                transform .35s var(--ease),
                box-shadow .35s ease,
                border-color .3s ease;
        }

        .principle-card:hover {
            transform: translateY(-5px);
            border-color: var(--brand-200);
            box-shadow: 0 22px 45px rgba(2,132,199,.08);
        }

        .principle-card h3 {
            margin: 20px 0 9px;
            font-size: 16px;
            letter-spacing: -.02em;
        }

        .principle-card p {
            margin: 0;
            color: var(--slate-500);
            font-size: 12.5px;
            line-height: 1.75;
        }

        /* ====================================================== */
        /* HOW IT WORKS */
        /* ====================================================== */

        .flow-section {
            padding: 100px 0;
        }

        .flow-grid {
            margin-top: 52px;

            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .flow-card {
            position: relative;
            padding: 26px 22px 24px;
            border-radius: 23px;

            background: #fff;
            border: 1px solid var(--slate-200);
        }

        .flow-number {
            width: 34px;
            height: 34px;

            display: grid;
            place-items: center;

            border-radius: 999px;

            background: var(--brand-600);
            color: #fff;

            font-size: 11px;
            font-weight: 800;
        }

        .flow-card h3 {
            margin: 20px 0 8px;
            font-size: 15px;
        }

        .flow-card p {
            margin: 0;
            color: var(--slate-500);
            font-size: 12px;
            line-height: 1.7;
        }

        /* ====================================================== */
        /* CTA */
        /* ====================================================== */

        .cta-section {
            padding: 20px 0 90px;
        }

        .cta-box {
            position: relative;
            overflow: hidden;

            padding: 54px;
            border-radius: 32px;

            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            align-items: center;

            color: #fff;

            background:
                radial-gradient(circle at 15% 20%, rgba(56,189,248,.24), transparent 30%),
                linear-gradient(135deg, var(--brand-800), var(--brand-700) 52%, var(--brand-900));

            box-shadow: 0 30px 70px rgba(3,105,161,.18);
        }

        .cta-box::after {
            content: "";
            position: absolute;
            right: -120px;
            top: -130px;

            width: 360px;
            height: 360px;
            border-radius: 50%;

            border: 1px solid rgba(255,255,255,.10);

            box-shadow:
                0 0 0 42px rgba(255,255,255,.025),
                0 0 0 84px rgba(255,255,255,.016);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content span {
            color: var(--brand-200);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .cta-content h2 {
            max-width: 650px;
            margin: 13px 0 0;

            font-size: clamp(30px, 4vw, 43px);
            line-height: 1.1;
            letter-spacing: -.045em;
        }

        .cta-actions {
            position: relative;
            z-index: 2;

            display: flex;
            flex-direction: column;
            gap: 10px;

            min-width: 220px;
        }

        .cta-light,
        .cta-outline {
            min-height: 46px;
            padding: 0 20px;
            border-radius: 999px;

            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;

            font-size: 12px;
            font-weight: 700;

            transition: transform .3s var(--ease);
        }

        .cta-light {
            color: var(--brand-800);
            background: #fff;
        }

        .cta-outline {
            color: #fff;
            border: 1px solid rgba(255,255,255,.25);
            background: rgba(255,255,255,.07);
        }

        .cta-light:hover,
        .cta-outline:hover {
            transform: translateY(-2px);
        }

        /* ====================================================== */
        /* FOOTER */
        /* ====================================================== */

        .footer {
            padding: 62px 0 28px;
            color: #fff;

            background:
                linear-gradient(
                    145deg,
                    #071827,
                    #08283d 55%,
                    #073552
                );
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.25fr .7fr 1fr 1fr;
            gap: 48px;
        }

        .footer-title {
            color: var(--brand-300);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .footer-brand {
            font-size: 18px;
            font-weight: 800;
        }

        .footer-copy {
            max-width: 360px;
            margin-top: 14px;
            color: var(--slate-300);
            font-size: 12px;
            line-height: 1.75;
        }

        .footer-links {
            margin-top: 18px;
            display: grid;
            gap: 11px;
        }

        .footer-links a,
        .footer-contact {
            color: var(--slate-300);
            font-size: 12px;
            line-height: 1.65;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 46px;
            padding-top: 22px;

            display: flex;
            justify-content: space-between;
            gap: 20px;

            border-top: 1px solid rgba(255,255,255,.09);

            color: var(--slate-400);
            font-size: 10px;
        }

        /* ====================================================== */
        /* REVEAL - LIGHTWEIGHT */
        /* ====================================================== */

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition:
                opacity .75s var(--ease),
                transform .75s var(--ease);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ====================================================== */
        /* RESPONSIVE */
        /* ====================================================== */

        @media (max-width: 980px) {
            .nav-pill,
            .nav-actions {
                display: none;
            }

            .navbar {
                grid-template-columns: 1fr auto;
            }

            .menu-toggle {
                display: grid;
                place-items: center;
            }

            .story-grid,
            .cta-box {
                grid-template-columns: 1fr;
            }

            .vision-grid {
                grid-template-columns: 1fr;
            }

            .principle-grid {
                grid-template-columns: 1fr 1fr;
            }

            .flow-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .caption-meta {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 28px, 1180px);
            }

            .navbar-shell {
                top: 10px;
            }

            .navbar {
                border-radius: 20px;
            }

            .about-hero {
                padding-top: 128px;
                padding-bottom: 52px;

                /*
                    Pada HP posisi peta dinaikkan sedikit agar
                    area utama Desa Cidadap tetap terlihat.
                */
                background-position:
                    48% center;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-description {
                font-size: 14px;
            }

            .hero-visual {
                width: 94%;

                margin-top: 40px;

                border-radius: 24px;
            }

            .hero-visual img {
                height: 330px;
            }

            .hero-visual-caption {
                left: 20px;
                right: 20px;
                bottom: 18px;
            }

            .caption-title {
                font-size: 18px;
            }

            .story {
                padding-top: 70px;
            }

            .story-grid {
                gap: 32px;
            }

            .section-title {
                font-size: 34px;
            }

            .principle-grid,
            .flow-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                padding: 35px 24px;
            }

            .cta-actions {
                min-width: 0;
            }

            .footer-bottom {
                flex-direction: column;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }
