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

        :root {
            --primary: #2563eb;
            --primary-light: #60a5fa;
            --primary-soft: #dbeafe;

            --dark: #0f172a;
            --text: #475569;
            --muted: #94a3b8;

            --border: #e2e8f0;
            --bg: #f8fafc;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--dark);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        .container {
            max-width: 1240px;
        }

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

        .landing-navbar {
            padding: 18px 0;

            backdrop-filter: blur(18px);
            background: rgba(255, 255, 255, .75);

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

            transition: .3s;
        }

        .navbar-brand {
            gap: 14px;
        }

        .brand-logo {
            width: 50px;
            height: 50px;

            border-radius: 18px;

            display: flex;
            align-items: center;
            justify-content: center;

            background:
                linear-gradient(135deg,
                    var(--primary),
                    var(--primary-light));

            color: white;
            font-size: 22px;

            box-shadow:
                0 18px 35px rgba(37, 99, 235, .25);
        }

        .brand-title {
            font-size: 15px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 4px;
        }

        .brand-subtitle {
            color: var(--muted);
            font-size: 12px;
        }

        .navbar-nav {
            gap: 8px;
        }

        .nav-link {
            color: #334155 !important;

            font-weight: 600;
            font-size: 15px;

            padding: 12px 18px !important;

            border-radius: 14px;

            transition: .25s;
        }

        .nav-link:hover {
            background: #eff6ff;
            color: var(--primary) !important;
        }

        .btn-start {
            background:
                linear-gradient(135deg,
                    var(--primary),
                    #3b82f6);

            color: white !important;

            border: none;

            padding: 13px 24px;

            border-radius: 16px;

            font-weight: 700;

            box-shadow:
                0 20px 40px rgba(37, 99, 235, .22);

            transition: .25s;
        }

        .btn-start:hover {
            transform: translateY(-2px);
        }

        /* =========================================================
   HERO SECTION
========================================================= */

        .hero-section {
            position: relative;

            min-height: 100vh;

            display: flex;
            align-items: center;

            padding:
                150px 0 100px;

            overflow: hidden;
        }

        .hero-section .row {
            align-items: center;
        }

        /* =========================
   BLUR BACKGROUND
========================= */

        .hero-blur {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            z-index: 0;
            opacity: .5;
        }

        .blur-1 {
            width: 520px;
            height: 520px;

            background: #bfdbfe;

            top: -180px;
            right: -140px;
        }

        .blur-2 {
            width: 420px;
            height: 420px;

            background: #93c5fd;

            bottom: -180px;
            left: -120px;
        }

        /* =========================
   LEFT CONTENT
========================= */

        .hero-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            background: white;

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

            padding: 12px 18px;

            border-radius: 999px;

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

            box-shadow:
                0 10px 30px rgba(15, 23, 42, .05);
        }

        .hero-chip .dot {
            width: 8px;
            height: 8px;

            border-radius: 50%;

            background: var(--primary);
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;

            line-height: 1.05;
            letter-spacing: -2px;

            max-width: 650px;
        }

        .hero-description {
            max-width: 580px;

            color: var(--text);

            font-size: 1.08rem;
            line-height: 1.9;
        }

        /* =========================
   HERO BUTTON
========================= */

        .btn-hero-primary {
            background:
                linear-gradient(135deg,
                    var(--primary),
                    #3b82f6);

            color: white;

            padding: 15px 28px;

            border-radius: 18px;

            font-weight: 700;

            border: none;

            box-shadow:
                0 20px 40px rgba(37, 99, 235, .25);

            transition: .25s;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            color: white;
        }

        .btn-hero-secondary {
            background: white;

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

            color: var(--dark);

            padding: 15px 28px;

            border-radius: 18px;

            font-weight: 700;

            transition: .25s;
        }

        .btn-hero-secondary:hover {
            background: #f8fafc;
        }

        /* =========================
   HERO STATS
========================= */

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .hero-stat-item h4 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 3px;
        }

        .hero-stat-item span {
            color: var(--muted);
            font-size: 14px;
        }

        /* =========================================================
   HERO DASHBOARD
========================================================= */

        .hero-dashboard {
            position: relative;

            width: 100%;
            max-width: 560px;

            margin: auto;

            min-height: 580px;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* glow belakang dashboard */
        .hero-dashboard::before {
            content: '';

            position: absolute;

            width: 500px;
            height: 500px;

            border-radius: 50%;

            background:
                radial-gradient(circle,
                    rgba(37, 99, 235, .12),
                    transparent 70%);

            z-index: 0;
        }

        /* =========================
   DASHBOARD WINDOW
========================= */

        .dashboard-window {
            position: relative;
            z-index: 5;

            width: 100%;

            background: white;

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

            border-radius: 32px;

            overflow: hidden;

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

        .window-top {
            height: 58px;

            background: #f1f5f9;

            display: flex;
            align-items: center;
            gap: 8px;

            padding: 0 20px;

            border-bottom:
                1px solid #e2e8f0;
        }

        .window-dot {
            width: 11px;
            height: 11px;

            border-radius: 50%;
        }

        .window-dot.red {
            background: #ef4444;
        }

        .window-dot.yellow {
            background: #f59e0b;
        }

        .window-dot.green {
            background: #22c55e;
        }

        .window-content {
            padding: 22px;
        }

        /* banner atas */
        .window-banner {
            height: 180px;

            border-radius: 24px;

            background:
                linear-gradient(135deg,
                    #dbeafe,
                    #bfdbfe);

            margin-bottom: 20px;
        }

        /* card box */
        .window-box {
            background: #f8fafc;

            border:
                1px solid #eef2f7;

            border-radius: 20px;

            height: 110px;
        }

        .window-box.large {
            height: 235px;
        }

        /* table skeleton */
        .window-table .table-row {
            height: 12px;

            background: #eef2f7;

            border-radius: 999px;

            margin-bottom: 12px;
        }

        /* =========================================================
   FLOATING CARD
========================================================= */

        .floating-card {
            position: absolute;

            z-index: 20;

            display: flex;
            align-items: center;
            gap: 14px;

            background: white;

            padding: 16px 18px;

            border-radius: 20px;

            border:
                1px solid rgba(226, 232, 240, .7);

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

        .card-a {
            top: 40px;
            left: -25px;
        }

        .card-b {
            bottom: 60px;
            right: -20px;
        }

        .floating-icon {
            width: 48px;
            height: 48px;

            border-radius: 16px;

            display: flex;
            align-items: center;
            justify-content: center;

            color: white;
            font-size: 20px;
        }

        .floating-icon.blue {
            background:
                linear-gradient(135deg,
                    #2563eb,
                    #60a5fa);
        }

        .floating-icon.green {
            background:
                linear-gradient(135deg,
                    #10b981,
                    #34d399);
        }

        .floating-card h6 {
            font-size: 15px;
        }

        .floating-card small {
            color: var(--muted);
            font-size: 13px;
        }

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

        @media(max-width:992px) {

            .hero-section {
                padding:
                    130px 0 80px;

                text-align: center;
            }

            .hero-title {
                font-size: 2.7rem;
                max-width: 100%;
            }

            .hero-description {
                margin: auto;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-dashboard {
                margin-top: 60px;
                min-height: auto;
            }

            .floating-card {
                display: none;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
            }
        }

        @media(max-width:768px) {

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 1rem;
            }
        }

        /* =========================================================
   SECTION HEADER
========================================================= */

        .section-heading {
            position: relative;
            z-index: 2;

            max-width: 760px;
            margin: auto auto 70px;
        }

        .section-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 10px 18px;

            border-radius: 999px;

            background: #dbeafe;
            color: #2563eb;

            font-size: 12px;
            font-weight: 800;
            letter-spacing: .5px;

            margin-bottom: 20px;

            box-shadow:
                0 10px 25px rgba(37, 99, 235, .08);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;

            line-height: 1.15;
            letter-spacing: -1.5px;

            color: #0f172a;

            margin-bottom: 18px;
        }

        .section-description {
            max-width: 620px;

            margin: auto;

            color: #64748b;

            font-size: 1.05rem;
            line-height: 1.9;
        }

        /* =========================================================
   FEATURE CARD
========================================================= */

        .modern-feature-card {
            position: relative;

            background: rgba(255, 255, 255, .9);

            border:
                1px solid rgba(226, 232, 240, .9);

            border-radius: 30px;

            padding: 38px 34px;

            height: 100%;

            overflow: hidden;

            transition:
                transform .3s ease,
                box-shadow .3s ease;

            backdrop-filter: blur(10px);

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

        /* top accent */

        .modern-feature-card::before {
            content: '';

            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
            height: 5px;

            background:
                linear-gradient(90deg,
                    #2563eb,
                    #60a5fa);
        }

        /* hover */

        .modern-feature-card:hover {
            transform: translateY(-10px);

            box-shadow:
                0 35px 70px rgba(37, 99, 235, .12);
        }

        /* glow hover */

        .modern-feature-card::after {
            content: '';

            position: absolute;

            width: 220px;
            height: 220px;

            border-radius: 50%;

            background: rgba(37, 99, 235, .08);

            filter: blur(60px);

            top: -100px;
            right: -100px;

            opacity: 0;

            transition: .3s;
        }

        .modern-feature-card:hover::after {
            opacity: 1;
        }

        /* =========================================================
   ICON
========================================================= */

        .modern-icon {
            width: 72px;
            height: 72px;

            border-radius: 24px;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 28px;
            color: white;

            margin-bottom: 26px;

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

        .modern-icon.blue {
            background:
                linear-gradient(135deg,
                    #2563eb,
                    #60a5fa);
        }

        .modern-icon.purple {
            background:
                linear-gradient(135deg,
                    #7c3aed,
                    #a78bfa);
        }

        .modern-icon.green {
            background:
                linear-gradient(135deg,
                    #10b981,
                    #34d399);
        }

        /* =========================================================
   TEXT
========================================================= */

        .modern-feature-card h4 {
            font-size: 1.4rem;
            font-weight: 800;

            color: #0f172a;

            margin-bottom: 14px;
        }

        .modern-feature-card p {
            color: #64748b;

            font-size: 15px;
            line-height: 1.9;

            margin: 0;
        }

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

        @media(max-width:992px) {

            .section-title {
                font-size: 2.3rem;
            }

            .section-description {
                font-size: 1rem;
            }
        }

        @media(max-width:768px) {

            .section-heading {
                margin-bottom: 50px;
            }

            .section-title {
                font-size: 2rem;
                line-height: 1.25;
            }

            .modern-feature-card {
                padding: 30px 26px;
            }

            .modern-icon {
                width: 64px;
                height: 64px;

                font-size: 24px;

                border-radius: 20px;
            }

            .modern-feature-card h4 {
                font-size: 1.2rem;
            }
        }

        /* =========================================================
   TIMELINE SECTION
========================================================= */

        .timeline-section {
            position: relative;

            padding: 130px 0;

            background:
                linear-gradient(180deg,
                    #f8fbff 0%,
                    #eef5ff 100%);

            overflow: hidden;
        }

        /* blur background */

        .timeline-section::before {
            content: '';

            position: absolute;

            width: 420px;
            height: 420px;

            border-radius: 50%;

            background: #bfdbfe;

            filter: blur(120px);

            top: -180px;
            left: -140px;

            opacity: .45;
        }

        .timeline-section::after {
            content: '';

            position: absolute;

            width: 320px;
            height: 320px;

            border-radius: 50%;

            background: #93c5fd;

            filter: blur(120px);

            bottom: -160px;
            right: -120px;

            opacity: .35;
        }

        /* =========================================================
   SECTION HEADER
========================================================= */

        .timeline-section .section-heading {
            position: relative;
            z-index: 3;

            max-width: 760px;

            margin: auto auto 80px;
        }

        .timeline-section .section-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 10px 18px;

            border-radius: 999px;

            background: #dbeafe;
            color: #2563eb;

            font-size: 12px;
            font-weight: 800;
            letter-spacing: .5px;

            margin-bottom: 20px;

            box-shadow:
                0 10px 25px rgba(37, 99, 235, .08);
        }

        .timeline-section .section-title {
            font-size: 3rem;
            font-weight: 800;

            line-height: 1.15;
            letter-spacing: -1.5px;

            color: #0f172a;
        }

        /* =========================================================
   TIMELINE WRAPPER
========================================================= */

        .timeline-wrapper {
            position: relative;
            z-index: 3;

            display: grid;
            grid-template-columns: repeat(4, 1fr);

            gap: 28px;
        }

        /* line */

        .timeline-line {
            position: absolute;

            top: 52px;
            left: 8%;
            right: 8%;

            height: 3px;

            background:
                linear-gradient(90deg,
                    #93c5fd,
                    #2563eb,
                    #60a5fa);

            border-radius: 999px;

            z-index: 1;

            opacity: .35;
        }

        /* =========================================================
   TIMELINE ITEM
========================================================= */

        .timeline-item {
            position: relative;
            z-index: 5;

            background: rgba(255, 255, 255, .92);

            border:
                1px solid rgba(226, 232, 240, .9);

            border-radius: 30px;

            padding: 34px 28px;

            transition:
                transform .3s ease,
                box-shadow .3s ease;

            backdrop-filter: blur(10px);

            box-shadow:
                0 20px 45px rgba(15, 23, 42, .05);

            overflow: hidden;
        }

        /* glow effect */

        .timeline-item::before {
            content: '';

            position: absolute;

            width: 220px;
            height: 220px;

            border-radius: 50%;

            background: rgba(37, 99, 235, .08);

            filter: blur(70px);

            top: -120px;
            right: -100px;

            opacity: 0;

            transition: .3s;
        }

        .timeline-item:hover::before {
            opacity: 1;
        }

        /* top border */

        .timeline-item::after {
            content: '';

            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
            height: 5px;

            background:
                linear-gradient(90deg,
                    #2563eb,
                    #60a5fa);
        }

        /* hover */

        .timeline-item:hover {
            transform: translateY(-10px);

            box-shadow:
                0 35px 70px rgba(37, 99, 235, .12);
        }

        /* =========================================================
   NUMBER
========================================================= */

        .timeline-number {
            position: relative;

            width: 58px;
            height: 58px;

            border-radius: 20px;

            display: flex;
            align-items: center;
            justify-content: center;

            background:
                linear-gradient(135deg,
                    #2563eb,
                    #60a5fa);

            color: white;

            font-size: 20px;
            font-weight: 800;

            margin-bottom: 24px;

            box-shadow:
                0 18px 35px rgba(37, 99, 235, .22);
        }

        /* small pulse */

        .timeline-number::before {
            content: '';

            position: absolute;

            inset: -6px;

            border-radius: 24px;

            border:
                2px solid rgba(37, 99, 235, .15);
        }

        /* =========================================================
   TEXT
========================================================= */

        .timeline-item h5 {
            font-size: 1.25rem;
            font-weight: 800;

            color: #0f172a;

            margin-bottom: 14px;
        }

        .timeline-item p {
            color: #64748b;

            font-size: 15px;
            line-height: 1.9;

            margin: 0;
        }

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

        @media(max-width:992px) {

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

            .timeline-section .section-title {
                font-size: 2.3rem;
            }

            .timeline-wrapper {
                grid-template-columns: 1fr 1fr;
            }

            .timeline-line {
                display: none;
            }
        }

        @media(max-width:768px) {

            .timeline-wrapper {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .timeline-section .section-heading {
                margin-bottom: 55px;
            }

            .timeline-section .section-title {
                font-size: 2rem;
                line-height: 1.25;
            }

            .timeline-item {
                padding: 28px 24px;
            }

            .timeline-number {
                width: 52px;
                height: 52px;

                border-radius: 18px;

                font-size: 18px;
            }

            .timeline-item h5 {
                font-size: 1.15rem;
            }
        }

        /* =========================================================
   DARK CTA SECTION
========================================================= */

        .dark-section {
            position: relative;

            padding: 130px 0;

            background:
                linear-gradient(180deg,
                    #0f172a 0%,
                    #111c34 100%);

            overflow: hidden;
        }

        /* glow background */

        .dark-section::before {
            content: '';

            position: absolute;

            width: 500px;
            height: 500px;

            border-radius: 50%;

            background: rgba(37, 99, 235, .18);

            filter: blur(140px);

            top: -220px;
            right: -160px;
        }

        .dark-section::after {
            content: '';

            position: absolute;

            width: 420px;
            height: 420px;

            border-radius: 50%;

            background: rgba(96, 165, 250, .12);

            filter: blur(120px);

            bottom: -180px;
            left: -120px;
        }

        /* =========================================================
   WRAPPER
========================================================= */

        .dark-wrapper {
            position: relative;
            z-index: 3;

            background:
                linear-gradient(135deg,
                    rgba(255, 255, 255, .06),
                    rgba(255, 255, 255, .03));

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

            border-radius: 38px;

            padding: 70px;

            overflow: hidden;

            backdrop-filter: blur(14px);

            box-shadow:
                0 40px 90px rgba(0, 0, 0, .25);
        }

        /* subtle border glow */

        .dark-wrapper::before {
            content: '';

            position: absolute;

            inset: 0;

            border-radius: 38px;

            padding: 1px;

            background:
                linear-gradient(135deg,
                    rgba(255, 255, 255, .15),
                    rgba(255, 255, 255, 0));

            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);

            -webkit-mask-composite: xor;
            mask-composite: exclude;

            pointer-events: none;
        }

        /* =========================================================
   LEFT CONTENT
========================================================= */

        .dark-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 10px 18px;

            border-radius: 999px;

            background: rgba(96, 165, 250, .12);

            border:
                1px solid rgba(96, 165, 250, .2);

            color: #93c5fd;

            font-size: 12px;
            font-weight: 800;
            letter-spacing: .5px;

            margin-bottom: 24px;
        }

        .dark-title {
            font-size: 3.2rem;
            font-weight: 800;

            line-height: 1.1;
            letter-spacing: -1.8px;

            color: white;

            margin-bottom: 22px;

            max-width: 620px;
        }

        .dark-description {
            max-width: 600px;

            color: #cbd5e1;

            font-size: 1.05rem;
            line-height: 1.95;

            margin: 0;
        }

        /* =========================================================
   RIGHT CARD
========================================================= */

        .dark-card {
            position: relative;

            background:
                linear-gradient(135deg,
                    rgba(255, 255, 255, .08),
                    rgba(255, 255, 255, .04));

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

            border-radius: 30px;

            padding: 34px;

            overflow: hidden;

            backdrop-filter: blur(12px);

            box-shadow:
                0 20px 45px rgba(0, 0, 0, .18);
        }

        /* glow inside */

        .dark-card::before {
            content: '';

            position: absolute;

            width: 220px;
            height: 220px;

            border-radius: 50%;

            background: rgba(59, 130, 246, .18);

            filter: blur(80px);

            top: -100px;
            right: -100px;

            opacity: .8;
        }

        /* =========================================================
   CARD ITEM
========================================================= */

        .dark-card-item {
            position: relative;
            z-index: 2;

            display: flex;
            align-items: center;
            gap: 16px;

            padding: 18px 20px;

            border-radius: 18px;

            background:
                rgba(255, 255, 255, .04);

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

            color: #f8fafc;

            font-size: 15px;
            font-weight: 600;

            margin-bottom: 16px;

            transition: .25s;
        }

        /* last child */

        .dark-card-item:last-child {
            margin-bottom: 0;
        }

        /* hover */

        .dark-card-item:hover {
            transform: translateX(6px);

            background:
                rgba(255, 255, 255, .07);
        }

        /* icon */

        .dark-card-item i {
            width: 42px;
            height: 42px;

            border-radius: 14px;

            display: flex;
            align-items: center;
            justify-content: center;

            background:
                linear-gradient(135deg,
                    #2563eb,
                    #60a5fa);

            color: white;

            font-size: 20px;

            flex-shrink: 0;

            box-shadow:
                0 15px 30px rgba(37, 99, 235, .25);
        }

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

        @media(max-width:992px) {

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

            .dark-wrapper {
                padding: 50px 40px;
            }

            .dark-title {
                font-size: 2.5rem;
            }
        }

        @media(max-width:768px) {

            .dark-wrapper {
                padding: 38px 26px;
                border-radius: 28px;
            }

            .dark-title {
                font-size: 2rem;
                line-height: 1.2;
            }

            .dark-description {
                font-size: 1rem;
            }

            .dark-card {
                padding: 24px;
                border-radius: 24px;
            }

            .dark-card-item {
                padding: 15px 16px;
                font-size: 14px;
            }

            .dark-card-item i {
                width: 38px;
                height: 38px;

                font-size: 18px;
            }
        }

        /* =========================================================
   FAQ SECTION
========================================================= */

        .faq-section {
            position: relative;

            padding: 130px 0;

            background:
                linear-gradient(180deg,
                    #f8fafc 0%,
                    #f1f5f9 100%);

            overflow: hidden;
        }

        /* background blur */

        .faq-section::before {
            content: '';

            position: absolute;

            width: 420px;
            height: 420px;

            border-radius: 50%;

            background: #dbeafe;

            filter: blur(130px);

            top: -180px;
            right: -120px;

            opacity: .45;
        }

        .faq-section::after {
            content: '';

            position: absolute;

            width: 340px;
            height: 340px;

            border-radius: 50%;

            background: #bfdbfe;

            filter: blur(120px);

            bottom: -160px;
            left: -120px;

            opacity: .35;
        }

        /* =========================================================
   SECTION HEADING
========================================================= */

        .faq-section .section-heading {
            position: relative;
            z-index: 3;

            max-width: 760px;

            margin: auto auto 70px;
        }

        .faq-section .section-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 10px 18px;

            border-radius: 999px;

            background: #dbeafe;
            color: #2563eb;

            font-size: 12px;
            font-weight: 800;
            letter-spacing: .5px;

            margin-bottom: 20px;

            box-shadow:
                0 10px 25px rgba(37, 99, 235, .08);
        }

        .faq-section .section-title {
            font-size: 3rem;
            font-weight: 800;

            line-height: 1.15;
            letter-spacing: -1.5px;

            color: #0f172a;
        }

        /* =========================================================
   FAQ WRAPPER
========================================================= */

        .faq-wrapper {
            position: relative;
            z-index: 3;

            max-width: 900px;
            margin: auto;
        }

        /* =========================================================
   ACCORDION ITEM
========================================================= */

        .accordion-item {
            background: rgba(255, 255, 255, .92) !important;

            border:
                1px solid rgba(226, 232, 240, .9) !important;

            border-radius: 28px !important;

            overflow: hidden;

            margin-bottom: 22px;

            backdrop-filter: blur(10px);

            box-shadow:
                0 20px 45px rgba(15, 23, 42, .05);

            transition:
                transform .25s ease,
                box-shadow .25s ease;
        }

        /* hover */

        .accordion-item:hover {
            transform: translateY(-4px);

            box-shadow:
                0 28px 60px rgba(37, 99, 235, .08);
        }

        /* =========================================================
   ACCORDION BUTTON
========================================================= */

        .accordion-button {
            background: white !important;

            padding: 28px 30px !important;

            font-size: 1.05rem;
            font-weight: 700;

            color: #0f172a !important;

            border: none !important;

            box-shadow: none !important;

            transition: .25s;
        }

        /* remove default arrow bg */

        .accordion-button::after {
            width: 34px;
            height: 34px;

            border-radius: 12px;

            background-color: #eff6ff;

            background-position: center;

            background-size: 16px;

            padding: 10px;
        }

        /* active */

        .accordion-button:not(.collapsed) {
            background: #eff6ff !important;

            color: #2563eb !important;
        }

        /* =========================================================
   ACCORDION BODY
========================================================= */

        .accordion-body {
            padding:
                0 30px 28px 30px !important;

            color: #64748b;

            font-size: 15px;
            line-height: 1.9;

            background: #eff6ff;
        }

        /* =========================================================
   ACCORDION COLLAPSE
========================================================= */

        .accordion-collapse {
            border: none !important;
        }

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

        @media(max-width:992px) {

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

            .faq-section .section-title {
                font-size: 2.3rem;
            }
        }

        @media(max-width:768px) {

            .faq-section {
                padding: 85px 0;
            }

            .faq-section .section-heading {
                margin-bottom: 50px;
            }

            .faq-section .section-title {
                font-size: 2rem;
                line-height: 1.25;
            }

            .accordion-button {
                padding: 24px 22px !important;

                font-size: 15px;
                line-height: 1.7;
            }

            .accordion-body {
                padding:
                    0 22px 24px 22px !important;

                font-size: 14px;
            }

            .accordion-item {
                border-radius: 22px !important;
            }

            .accordion-button::after {
                width: 30px;
                height: 30px;
            }
        }

        /* =========================================================
   BOTTOM CTA SECTION
========================================================= */

        .bottom-cta {
            position: relative;

            padding: 130px 0;

            background:
                linear-gradient(180deg,
                    #f8fafc 0%,
                    #eef5ff 100%);

            overflow: hidden;
        }

        /* background glow */

        .bottom-cta::before {
            content: '';

            position: absolute;

            width: 450px;
            height: 450px;

            border-radius: 50%;

            background: #bfdbfe;

            filter: blur(140px);

            top: -220px;
            left: -160px;

            opacity: .45;
        }

        .bottom-cta::after {
            content: '';

            position: absolute;

            width: 380px;
            height: 380px;

            border-radius: 50%;

            background: #93c5fd;

            filter: blur(130px);

            bottom: -180px;
            right: -140px;

            opacity: .35;
        }

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

        .bottom-cta-box {
            position: relative;
            z-index: 3;

            overflow: hidden;

            border-radius: 42px;

            padding:
                90px 60px;

            background:
                linear-gradient(135deg,
                    #2563eb 0%,
                    #3b82f6 45%,
                    #60a5fa 100%);

            box-shadow:
                0 45px 90px rgba(37, 99, 235, .28);

            isolation: isolate;
        }

        /* glass overlay */

        .bottom-cta-box::before {
            content: '';

            position: absolute;

            inset: 0;

            background:
                linear-gradient(135deg,
                    rgba(255, 255, 255, .12),
                    rgba(255, 255, 255, .03));

            z-index: -1;
        }

        /* top right circle */

        .bottom-cta-box::after {
            content: '';

            position: absolute;

            width: 420px;
            height: 420px;

            border-radius: 50%;

            background:
                rgba(255, 255, 255, .08);

            top: -220px;
            right: -140px;

            filter: blur(10px);

            z-index: -1;
        }

        /* =========================================================
   TITLE
========================================================= */

        .bottom-cta-box h2 {
            font-size: 3.4rem;
            font-weight: 800;

            line-height: 1.1;
            letter-spacing: -2px;

            color: white;

            margin-bottom: 22px;
        }

        /* =========================================================
   DESCRIPTION
========================================================= */

        .bottom-cta-box p {
            max-width: 700px;

            margin:
                0 auto 38px;

            color: #dbeafe;

            font-size: 1.08rem;
            line-height: 1.95;
        }

        /* =========================================================
   BUTTON
========================================================= */

        .btn-bottom-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            background: white;

            color: #2563eb !important;

            border: none;

            padding:
                16px 34px;

            border-radius: 18px;

            font-size: 15px;
            font-weight: 800;

            transition:
                transform .25s ease,
                box-shadow .25s ease;

            box-shadow:
                0 18px 40px rgba(0, 0, 0, .12);
        }

        /* hover */

        .btn-bottom-cta:hover {
            transform: translateY(-4px);

            box-shadow:
                0 25px 50px rgba(0, 0, 0, .18);

            color: #1d4ed8 !important;
        }

        /* active */

        .btn-bottom-cta:active {
            transform: scale(.98);
        }

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

        @media(max-width:992px) {

            .bottom-cta {
                padding: 100px 0;
            }

            .bottom-cta-box {
                padding:
                    70px 40px;
            }

            .bottom-cta-box h2 {
                font-size: 2.7rem;
            }
        }

        @media(max-width:768px) {

            .bottom-cta {
                padding: 85px 0;
            }

            .bottom-cta-box {
                padding:
                    55px 24px;

                border-radius: 30px;
            }

            .bottom-cta-box h2 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .bottom-cta-box p {
                font-size: 15px;
                line-height: 1.8;
            }

            .btn-bottom-cta {
                width: 100%;

                padding:
                    15px 20px;

                border-radius: 16px;
            }
        }

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

        .footer-section {
            position: relative;

            padding:
                110px 0 35px;

            background:
                linear-gradient(180deg,
                    #0f172a 0%,
                    #020617 100%);

            overflow: hidden;
        }

        /* background glow */

        .footer-section::before {
            content: '';

            position: absolute;

            width: 420px;
            height: 420px;

            border-radius: 50%;

            background:
                rgba(37, 99, 235, .16);

            filter: blur(130px);

            top: -180px;
            right: -120px;
        }

        .footer-section::after {
            content: '';

            position: absolute;

            width: 340px;
            height: 340px;

            border-radius: 50%;

            background:
                rgba(96, 165, 250, .12);

            filter: blur(120px);

            bottom: -180px;
            left: -120px;
        }

        /* =========================================================
   CONTENT WRAPPER
========================================================= */

        .footer-section .container {
            position: relative;
            z-index: 3;
        }

        /* =========================================================
   BRAND
========================================================= */

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 16px;

            margin-bottom: 24px;
        }

        .footer-brand .brand-logo {
            width: 64px;
            height: 64px;

            border-radius: 22px;

            display: flex;
            align-items: center;
            justify-content: center;

            background:
                linear-gradient(135deg,
                    #2563eb,
                    #60a5fa);

            color: white;

            font-size: 28px;

            box-shadow:
                0 20px 40px rgba(37, 99, 235, .28);
        }

        .footer-brand h5 {
            margin: 0;

            color: white;

            font-size: 1.4rem;
            font-weight: 800;

            letter-spacing: -.5px;
        }

        .footer-brand p {
            margin-top: 4px;
            margin-bottom: 0;

            color: #94a3b8;

            font-size: 14px;
        }

        /* =========================================================
   DESCRIPTION
========================================================= */

        .footer-description {
            max-width: 420px;

            color: #cbd5e1;

            font-size: 15px;
            line-height: 1.9;

            margin: 0;
        }

        /* =========================================================
   HEADING
========================================================= */

        .footer-heading {
            color: white;

            font-size: 1rem;
            font-weight: 800;

            margin-bottom: 22px;
        }

        /* =========================================================
   LINKS
========================================================= */

        .footer-links {
            list-style: none;

            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            position: relative;

            color: #94a3b8;

            text-decoration: none;

            font-size: 15px;
            font-weight: 500;

            transition: .25s;
        }

        /* underline effect */

        .footer-links a::after {
            content: '';

            position: absolute;

            left: 0;
            bottom: -4px;

            width: 0;
            height: 2px;

            border-radius: 999px;

            background: #60a5fa;

            transition: .25s;
        }

        /* hover */

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

        .footer-links a:hover::after {
            width: 100%;
        }

        /* =========================================================
   BUTTON
========================================================= */

        .btn-footer {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            margin-top: 12px;

            padding:
                14px 24px;

            border-radius: 18px;

            background:
                linear-gradient(135deg,
                    #2563eb,
                    #3b82f6);

            color: white !important;

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

            text-decoration: none;

            box-shadow:
                0 18px 40px rgba(37, 99, 235, .25);

            transition:
                transform .25s ease,
                box-shadow .25s ease;
        }

        /* hover */

        .btn-footer:hover {
            transform: translateY(-4px);

            box-shadow:
                0 25px 50px rgba(37, 99, 235, .32);
        }

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

        .footer-bottom {
            margin-top: 70px;

            padding-top: 28px;

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

            text-align: center;

            color: #64748b;

            font-size: 14px;
            line-height: 1.8;
        }

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

        @media(max-width:992px) {

            .footer-section {
                padding:
                    90px 0 30px;
            }

            .footer-bottom {
                margin-top: 50px;
            }
        }

        @media(max-width:768px) {

            .footer-section {
                padding:
                    80px 0 28px;
            }

            .footer-brand {
                align-items: flex-start;
            }

            .footer-brand .brand-logo {
                width: 56px;
                height: 56px;

                border-radius: 18px;

                font-size: 24px;
            }

            .footer-brand h5 {
                font-size: 1.2rem;
            }

            .footer-description {
                font-size: 14px;
                line-height: 1.8;
            }

            .footer-heading {
                margin-bottom: 18px;
            }

            .btn-footer {
                width: 100%;

                padding:
                    14px 18px;

                border-radius: 16px;
            }

            .footer-bottom {
                margin-top: 40px;

                font-size: 13px;
                line-height: 1.7;
            }
        }

        .pendataan-card {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            height: 100%;
            border: 1px solid #edf2f7;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
            transition: .3s;
        }

        .pendataan-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
        }

        .pendataan-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
        }

        .pendataan-icon i {
            font-size: 32px;
        }

        .pendataan-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .pendataan-card p {
            color: #6c757d;
            min-height: 90px;
        }

        .pendataan-card ul {
            padding-left: 18px;
            margin-bottom: 24px;
        }

        .pendataan-card ul li {
            margin-bottom: 8px;
        }
