﻿:root {
        --navy:     #0F1E3C;
        --navy-mid: #1a3260;
        --navy-lt:  #2a4a8a;
        --blue-soft:#e8edf8;
        --blue-mid: #dce6f7;
        --text:     #1a1a2e;
        --gray:     #6b7280;
        --light:    #f8fafc;
        --white:    #ffffff;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body {
        margin: 0; padding: 0;
        width: 100%; max-width: 100vw; overflow-x: hidden;
    }
    body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: #fff; }

    /* â”€â”€ KILL navbar & footer dari layouts/landing.blade.php â”€â”€ */
    .navbar-validly { display: none !important; }
    .footer-landing  { display: none !important; }

    /* Navbar kita selalu punya background minimal agar tidak transparan penuh */
    .nav-main {
        background: rgba(15,30,60,0.6);
    }
    .nav-main.scrolled {
        background: rgba(255,255,255,0.97);
    }

    /* â”€â”€ NAVBAR â”€â”€ */
    .nav-main {
        position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
        padding: 13px 60px;
        display: flex; align-items: center; justify-content: space-between;
        transition: all .3s;
    }
    .nav-main.scrolled {
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(15,30,60,0.08);
        padding: 13px 60px;
    }
    .nav-logo {
        font-family:'Playfair Display',serif;
        font-weight: 800; font-size:1.4rem; color: var(--white);
        text-decoration: none; letter-spacing: 1px;
        display: flex; align-items: center; gap: 10px;
    }
    .nav-main.scrolled .nav-logo { color: var(--navy); }
    .nav-main.scrolled #mobileMenuBtn { background: var(--blue-soft) !important; border-color: #dde4f0 !important; }
    .nav-main.scrolled #mobileMenuBtn i { color: var(--navy) !important; }
    .nav-main.scrolled .d-lg-none a { color: var(--navy) !important; }
    .nav-logo-icon {
        width: 32px; height: 32px;
        border-radius: 9px; display: flex; align-items: center; justify-content: center;
        filter: brightness(0) invert(1); /* putih saat navbar transparan */
    }
    .nav-main.scrolled .nav-logo-icon { filter: none; } /* navy asli saat scroll */
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color .2s; }
    .nav-main.scrolled .nav-links a { color: var(--gray); }
    .nav-links a:hover { color: #fff; }
    .nav-main.scrolled .nav-links a:hover { color: var(--navy); }
    .btn-nav-cta {
        background: var(--navy); color: #fff !important;
        font-weight: 700; font-size: 0.82rem;
        padding: 10px 22px; border-radius: 9px;
        text-decoration: none; transition: all .2s; white-space: nowrap;
        display: inline-flex; align-items: center; gap: 7px;
    }
    .btn-nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }

    /* â”€â”€ HERO â”€â”€ */
    .hero {
        min-height: 100vh;
        background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #2a4a8a 100%);
        display: flex; flex-direction: column;
        position: relative; overflow: hidden;
    }
    .hero::before {
        content: '';
        position: absolute; inset: 0;
        background-size: 28px 28px;
        pointer-events: none;
    }
    .hero-beam {
        position: absolute; width: 600px; height: 600px; border-radius: 50%;;
        top: -100px; right: 5%; pointer-events: none;
    }
    .hero-inner {
        flex: 1; display: flex; align-items: center; justify-content: center;
        padding: 130px 60px 80px; position: relative; z-index: 2; text-align: center;
    }
    .hero-eyebrow {
        display: inline-flex; align-items: center; gap: 7px;
        background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
        color: rgba(255,255,255,.85); font-size: .72rem; font-weight: 600;
        letter-spacing: 2px; text-transform: uppercase;
        padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
    }
    .hero-h1 {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2.8rem, 6vw, 5rem);
        color: #fff; line-height: 1.08; letter-spacing: -1px; margin-bottom: 22px;
    }
    .hero-h1 .accent { color: rgba(255,255,255,.6); font-style: italic; }
    .hero-p {
        font-size: 1.05rem; color: rgba(255,255,255,.55);
        line-height: 1.75; max-width: 520px; margin: 0 auto 38px;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .btn-primary-hero {
        background: #fff; color: var(--navy); font-weight: 700;
        padding: 14px 30px; border-radius: 10px; font-size: .9rem;
        text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
        box-shadow: 0 8px 28px rgba(0,0,0,.2); transition: all .25s;
    }
    .btn-primary-hero:hover { background: #f0f4ff; color: var(--navy); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.25); }
    .btn-ghost-hero {
        background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2);
        color: rgba(255,255,255,.85); font-weight: 500;
        padding: 14px 26px; border-radius: 10px; font-size: .9rem;
        text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
        transition: all .25s;
    }
    .btn-ghost-hero:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }

    /* Mockup */
    .mockup-wrap {
        position: relative; display: inline-block;
        margin-top: 56px; max-width: calc(100% - 32px);
    }
    .mockup-card {
        width: 340px; max-width: 100%;
        background: #fff; border-radius: 18px; padding: 26px 30px;
        box-shadow: 0 32px 72px rgba(0,0,0,.3); position: relative; text-align: left;
    }
    .mockup-card::after {
        content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
        background: var(--navy); border-radius: 18px 18px 0 0;
    }
    .mk-id { font-size: .62rem; color: #c0c8d8; letter-spacing: 2px; text-transform: uppercase; text-align: right; margin-bottom: 16px; }
    .mk-lbl { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: #c0c8d8; margin-bottom: 4px; }
    .mk-name { font-family: 'DM Serif Display', serif; font-size: 1.35rem; font-style: italic; color: var(--navy); margin-bottom: 2px; }
    .mk-org { font-size: .73rem; color: #9ca3af; margin-bottom: 14px; }
    .mk-bar { height: 3px; border-radius: 2px; margin-bottom: 5px; }
    .mk-bar.a { background: var(--navy); width: 70%; }
    .mk-bar.b { background: var(--blue-mid); width: 50%; }
    .mk-bar.c { background: #f0f4ff; width: 40%; }
    .mk-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 14px; border-top: 1px solid #f0f0f0; }
    .mk-signer strong { display: block; color: var(--navy); font-size: .76rem; font-weight: 700; }
    .mk-signer span { color: #bbb; font-size: .68rem; }
    .mk-seal { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; }
    .float-pill {
        position: absolute; background: #fff; border-radius: 10px;
        padding: 8px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
        display: flex; align-items: center; gap: 7px;
        font-size: .72rem; font-weight: 600; color: var(--navy); white-space: nowrap; z-index: 2;
    }
    .pill-dot { width: 7px; height: 7px; border-radius: 50%; }
    .pill-top { top: -12px; right: -16px; }
    .pill-bot { bottom: -12px; left: -16px; }

    /* â”€â”€ FEATURES â”€â”€ */
    .section-features { padding: 100px 0; background: #fff; }
    .sec-label {
        font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
        color: var(--navy-mid); font-weight: 700; margin-bottom: 10px;
    }
    .sec-h2 {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        color: var(--navy); line-height: 1.2; margin-bottom: 14px;
    }
    .sec-p { color: var(--gray); font-size: .95rem; line-height: 1.75; }
    .f-card {
        border: 1.5px solid #eef2f9; border-radius: 14px;
        padding: 24px 20px; background: #fff; transition: all .25s; height: 100%;
    }
    .f-card:hover { border-color: var(--navy); box-shadow: 0 8px 32px rgba(15,30,60,.08); transform: translateY(-3px); }
    .f-icon {
        width: 44px; height: 44px; border-radius: 11px;
        background: var(--blue-soft); display: flex; align-items: center;
        justify-content: center; font-size: 1.1rem; margin-bottom: 14px;
    }
    .f-card h5 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
    .f-card p { font-size: .82rem; color: var(--gray); line-height: 1.65; margin: 0; }

    /* â”€â”€ HOW â”€â”€ */
    .section-how { padding: 100px 0; background: var(--light); }
    .step-card {
        display: flex; gap: 16px; padding: 22px; background: #fff;
        border-radius: 13px; border: 1.5px solid #eef2f9; height: 100%; transition: all .2s;
    }
    .step-card:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(15,30,60,.07); }
    .step-n {
        width: 36px; height: 36px; border-radius: 10px; background: var(--navy);
        color: #fff; font-weight: 800; font-size: .8rem;
        display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .step-card h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .step-card p { font-size: .8rem; color: var(--gray); line-height: 1.65; margin: 0; }

    /* â”€â”€ VERIFIKASI â”€â”€ */
    .section-verify { padding: 100px 0; background: #fff; }
    .verify-box {
        background: var(--navy); border-radius: 20px; padding: 48px;
        color: #fff; position: relative; overflow: hidden;
    }
    .verify-box::before {
        content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
        background: rgba(255,255,255,.04); top: -100px; right: -60px;
    }
    .verify-input {
        flex: 1; min-width: 200px; border: 1.5px solid rgba(255,255,255,.15);
        border-radius: 10px; background: rgba(255,255,255,.07); color: #fff;
        padding: 12px 16px; font-size: .875rem; outline: none; transition: border-color .2s;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .verify-input::placeholder { color: rgba(255,255,255,.35); }
    .verify-input:focus { border-color: rgba(255,255,255,.5); }
    .btn-verify {
        background: #fff; color: var(--navy); font-weight: 700;
        padding: 12px 24px; border-radius: 10px; font-size: .875rem;
        border: none; cursor: pointer; white-space: nowrap;
        display: inline-flex; align-items: center; gap: 7px; transition: all .2s;
    }
    .btn-verify:hover { background: #f0f4ff; transform: translateY(-1px); }

    /* â”€â”€ KONTAK â”€â”€ */
    .section-contact { padding: 100px 0; background: var(--light); }
    .contact-card {
        background: #fff; border-radius: 20px; padding: 44px;
        border: 1.5px solid #eef2f9; box-shadow: 0 8px 40px rgba(15,30,60,.06);
    }
    .contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
    .contact-icon {
        width: 44px; height: 44px; border-radius: 11px; background: var(--blue-soft);
        display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
    }
    .contact-label { font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; color: #9ca3af; font-weight: 600; margin-bottom: 2px; }
    .contact-value { font-size: .92rem; font-weight: 600; color: var(--navy); text-decoration: none; }
    .contact-value:hover { color: var(--navy-mid); }
    .btn-wa {
        background: var(--navy); color: #fff; border: none; border-radius: 10px;
        padding: 13px 28px; font-weight: 700; font-size: .9rem;
        text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
        width: 100%; justify-content: center; transition: all .2s;
    }
    .btn-wa:hover { background: var(--navy-mid); color: #fff; transform: translateY(-1px); }

    /* â”€â”€ CTA â”€â”€ */
    .section-cta {
        padding: 100px 60px; background: var(--navy);
        text-align: center; position: relative; overflow: hidden;
    }
    .section-cta::before {
        content: ''; position: absolute; inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
        background-size: 28px 28px; pointer-events: none;
    }
    .cta-h2 {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        color: #fff; line-height: 1.15; margin-bottom: 16px;
    }
    .cta-p { color: rgba(255,255,255,.45); font-size: .95rem; margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }

    /* â”€â”€ FOOTER â”€â”€ */
    footer { background: #04091a; padding: 60px 0 28px; }
    .foot-logo { font-weight: 800; font-size: 1.15rem; color: #fff; display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
    .foot-logo-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; filter: brightness(0) invert(1); }
    .foot-tag { font-size: .78rem; color: rgba(255,255,255,.25); line-height: 1.65; max-width: 230px; }
    .foot-h { font-size: .67rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.2); font-weight: 700; margin-bottom: 14px; }
    .foot-ul { list-style: none; padding: 0; margin: 0; }
    .foot-ul li { margin-bottom: 9px; }
    .foot-ul a { color: rgba(255,255,255,.38); font-size: .82rem; text-decoration: none; transition: color .2s; }
    .foot-ul a:hover { color: rgba(255,255,255,.8); }
    .foot-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; margin-top: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
    .foot-copy { font-size: .74rem; color: rgba(255,255,255,.18); }
    .foot-copy strong { color: rgba(255,255,255,.4); }
    .foot-by { font-size: .72rem; color: rgba(255,255,255,.14); }
    .foot-by a { color: rgba(255,255,255,.28); text-decoration: none; }
    .foot-by a:hover { color: rgba(255,255,255,.6); }

    /* â”€â”€ MOBILE NAV ELEMENTS â”€â”€ */
    .nav-mobile-login {
        color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600;
        text-decoration: none; white-space: nowrap; transition: color .2s;
    }
    .nav-main.scrolled .nav-mobile-login { color: var(--navy); }

    /* Hamburger button */
    .mobile-hamburger {
        background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.18);
        border-radius: 8px; padding: 8px 10px; cursor: pointer;
        display: flex; flex-direction: column; gap: 5px; transition: all .3s;
    }
    .nav-main.scrolled .mobile-hamburger { background: var(--blue-soft); border-color: #dde4f0; }
    .hamburger-line {
        display: block; width: 20px; height: 2px;
        background: #fff; border-radius: 2px;
        transition: all .35s cubic-bezier(.4,0,.2,1);
        transform-origin: center;
    }
    .nav-main.scrolled .hamburger-line { background: var(--navy); }
    .mobile-hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-hamburger.is-open .hamburger-line:nth-child(2) { transform: scaleX(0); opacity: 0; }
    .mobile-hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Dropdown menu */
    #mobileMenu {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 996;
        background: var(--navy);
        border-bottom: 1px solid rgba(255,255,255,.07);
        box-shadow: 0 8px 32px rgba(0,0,0,.3);
        /* slide down: mulai dari atas (tersembunyi di balik navbar) */
        transform: translateY(-110%);
        transition: transform .38s cubic-bezier(.4,0,.2,1);
        padding-top: 64px; /* tinggi navbar */
    }
    #mobileMenu.is-open {
        transform: translateY(0);
    }

    .mobile-menu-nav {
        display: flex; flex-direction: column;
        padding: 10px 12px 14px;
        gap: 2px;
    }
    .mobile-menu-nav a {
        display: flex; align-items: center; gap: 12px;
        color: rgba(255,255,255,.75); font-size: .92rem; font-weight: 600;
        text-decoration: none; padding: 12px 14px; border-radius: 10px;
        opacity: 0; transform: translateY(-8px);
        transition: background .2s, color .2s, opacity .28s ease, transform .28s ease;
    }
    .mobile-menu-nav a i { font-size: 1rem; opacity: .65; flex-shrink: 0; }
    .mobile-menu-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
    .mobile-menu-nav a:hover i { opacity: 1; }

    /* Stagger entrance */
    #mobileMenu.is-open .mobile-menu-nav a:nth-child(1) { opacity:1; transform:none; transition-delay:.06s; }
    #mobileMenu.is-open .mobile-menu-nav a:nth-child(2) { opacity:1; transform:none; transition-delay:.10s; }
    #mobileMenu.is-open .mobile-menu-nav a:nth-child(3) { opacity:1; transform:none; transition-delay:.14s; }
    #mobileMenu.is-open .mobile-menu-nav a:nth-child(4) { opacity:1; transform:none; transition-delay:.18s; }
    #mobileMenu.is-open .mobile-menu-nav a:nth-child(6) { opacity:1; transform:none; transition-delay:.22s; }

    .mobile-menu-divider {
        height: 1px; background: rgba(255,255,255,.07); margin: 6px 4px;
    }

    .mobile-cta-btn {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        background: #fff; color: var(--navy) !important; font-weight: 700; font-size: .88rem;
        padding: 12px 20px; border-radius: 10px; text-decoration: none;
        opacity: 0; transform: translateY(-6px);
        transition: background .2s, color .2s, opacity .28s ease .22s, transform .28s ease .22s;
        margin-top: 2px;
    }
    #mobileMenu.is-open .mobile-cta-btn { opacity:1; transform:none; }
    .mobile-cta-btn:hover { background: #f0f4ff !important; color: var(--navy) !important; }

    body.menu-open { overflow: hidden; }

    @media(max-width:991px) {
        .nav-main, .nav-main.scrolled { padding: 14px 20px; }
        .nav-links.d-lg-flex { display: none !important; }
        .hero-inner { padding: 110px 20px 80px; }
        .mockup-wrap { margin-top: 40px; }
        .mockup-card { width: 300px; }
        .section-features, .section-how, .section-verify, .section-contact { padding: 64px 0; }
        .section-cta { padding: 64px 20px; }
        footer { padding: 48px 0 24px; }
        .verify-box { padding: 28px; }
        .contact-card { padding: 28px; }
    }
    @media(max-width:576px) {
        .hero-h1 { font-size: 2.3rem; }
        .sec-h2 { font-size: 1.7rem; }
        .cta-h2 { font-size: 1.8rem; }
        .f-card { padding: 18px 14px; }
        .hero-btns { flex-direction: column; align-items: center; }
        .btn-primary-hero, .btn-ghost-hero { width: 100%; justify-content: center; max-width: 300px; }
        .hero-inner { padding: 100px 20px 60px; }
        .mockup-card { width: 100%; max-width: 280px; }
        .float-pill { font-size: .65rem; padding: 6px 10px; }
        .pill-top { top: -8px; right: -8px; }
        .pill-bot { bottom: -8px; left: -8px; }
    }
