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


:root {
    /* Warna utama */
    --pink:          #C94B78;
    --pink-dark:     #9B2F5C;
    --pink-2:        #E8638F;
    --pink-light:    #F4A8C0;
    --pink-pale:     rgba(201, 75, 120, 0.08);
    --pink-pale-2:   rgba(201, 75, 120, 0.14);
    --pink-border:   rgba(201, 75, 120, 0.20);
    --pink-glow:     rgba(201, 75, 120, 0.30);

    /* Warna teks & background */
    --navy:          #1A1140;
    --navy-2:        #231550;
    --text-main:     #1A1140;
    --text-muted:    rgba(26, 17, 64, 0.55);
    --text-soft:     rgba(26, 17, 64, 0.38);
    --white:         #FFFFFF;
    --off-white:     #FEF8FB;

    /* Kartu & shadow */
    --card-bg:       rgba(255, 255, 255, 0.80);
    --card-border:   rgba(201, 75, 120, 0.14);
    --shadow-sm:     0 2px 12px rgba(201, 75, 120, 0.08);
    --shadow-md:     0 8px 32px rgba(201, 75, 120, 0.14);
    --shadow-lg:     0 20px 60px rgba(201, 75, 120, 0.18);

    /* Radius */
    --radius-sm:     10px;
    --radius-md:     16px;
    --radius-lg:     24px;

    /* Transisi global */
    --transition:    all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─────────────────────────────────────────────
   3. BASE — HTML & BODY
───────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-main);
    background: var(--off-white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Latar dekoratif global (radial gradient + dot pattern) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 10%,  #FFE4EE 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 85% 5%,   #EDE9FF 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 95%,  #FFE8F0 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 90% 80%,  #E0F0FF 0%, transparent 50%),
        linear-gradient(145deg, #FFF5F8 0%, #F5F0FF 40%, #F0F8FF 70%, #FFF5F8 100%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 75, 120, 0.10) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.page-content {
    position: relative;
    z-index: 1;
    flex: 1;
    padding-top: 88px;
}

@media (max-width: 960px) {
    .page-content { padding-top: 64px; }
}
@media (max-width: 480px) {
    .page-content { padding-top: 56px; }
}

/* ─────────────────────────────────────────────
   4. TIPOGRAFI & SECTION HELPERS
───────────────────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.section-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
}
.section-eyebrow-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
}
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--text-main);
    margin-bottom: 16px;
}
.section-title .accent { color: var(--pink); }
.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.80;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 48px;
}

/* ─────────────────────────────────────────────
   5. NAVBAR  (dipakai di base.blade.php)
───────────────────────────────────────────── */
nav.lp-nav {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 75, 120, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    flex-shrink: 0;
}
nav.lp-nav.scrolled {
    height: 72px;
    box-shadow: 0 4px 24px rgba(201, 75, 120, 0.10);
}

/* Logo */
.lp-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    text-decoration: none;
    flex-shrink: 0;
}
.lp-logo .logo-accent { color: var(--pink); }
.lp-logo .logo-muted  { color: rgba(26, 17, 64, 0.28); }

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}
nav.lp-nav.scrolled .nav-logo-img {
    height: 40px;
}

/* Nav links (desktop) */
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0 16px 0 auto;
}
.lp-nav-links > li > a,
.lp-nav-links > li > .nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}
.lp-nav-links > li > a:hover,
.lp-nav-links > li > .nav-mega-trigger:hover,
.lp-nav-links > li > a.active-menu {
    color: var(--pink);
    background: var(--pink-pale);
}
.lp-nav-links > li > a.active-menu::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--pink);
    border-radius: 50%;
}
.nav-icon {
    font-size: 10px;
    color: var(--pink);
    flex-shrink: 0;
}
.nav-divider-wrap {
    display: flex;
    align-items: center;
    padding: 0 4px;
}
.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(201, 75, 120, 0.20);
    flex-shrink: 0;
    align-self: center;
}

/* Nav right side */
.lp-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Tombol LAPOR (pink) */
.btn-nav-lapor {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: #b03466;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(201, 75, 120, 0.30);
}
.btn-nav-lapor:hover {
    background: #b03466;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 75, 120, 0.40);
}
.btn-nav-lapor i { font-size: 11px; }

/* Tombol Masuk (border) */
.btn-nav-masuk {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1px solid var(--pink-border);
    transition: var(--transition);
}
.btn-nav-masuk:hover {
    color: var(--pink);
    background: var(--pink-pale);
    border-color: var(--pink);
}

/* User dropdown trigger */
.user-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    border-radius: 50px;
    background: var(--pink-pale);
    border: 1.5px solid var(--pink-border);
    transition: var(--transition);
}
.user-trigger:hover { background: rgba(201, 75, 120, 0.18); }
.user-trigger .user-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hamburger mobile */
.lp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.lp-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}
.lp-hamburger span:last-child { width: 16px; }

/* ─────────────────────────────────────────────
   6. MEGA MENU
───────────────────────────────────────────── */
.has-mega {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}
.mega-chevron {
    font-size: 9px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
    margin-left: 2px;
}
.mega-menu {
    position: fixed;
    top: 88px;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: auto;
    max-width: calc(100vw - 48px);
    background: rgba(255, 255, 255, 0.99);
    border: 1.5px solid rgba(201, 75, 120, 0.16);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(201, 75, 120, 0.18);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.18s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.18s;
    z-index: 9998;
}
.has-mega:hover .mega-menu,
.mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition:
        opacity 0.18s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;
}
.has-mega:hover .mega-chevron,
.has-mega.is-open .mega-chevron { transform: rotate(180deg); }

.mega-divider {
    width: 1px;
    height: 28px;
    background: rgba(201, 75, 120, 0.15);
    flex-shrink: 0;
    margin: 0 6px;
}
.mega-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
}
.mega-link:hover {
    background: var(--pink-pale);
    color: var(--pink);
    transform: translateY(-2px);
}
.mega-link-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--pink-pale);
    border: 1px solid var(--pink-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--pink);
    transition: var(--transition);
}
.mega-link:hover .mega-link-icon {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}
.mega-col { display: contents; }
.mega-col-label { display: none; }

/* ─────────────────────────────────────────────
   7. MOBILE MENU
───────────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 20px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(201, 75, 120, 0.10);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--pink); background: var(--pink-pale); }
.mobile-divider {
    height: 1px;
    background: var(--card-border);
    margin: 8px 0;
}
.mobile-cta {
    color: var(--pink) !important;
    background: var(--pink-pale) !important;
    border: 1px solid var(--pink-border);
    text-align: center;
    margin-top: 4px;
    border-radius: 10px;
}
.mobile-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-soft);
    padding: 4px 16px;
    margin-top: 4px;
}

/* ─────────────────────────────────────────────
   8. NOTIFIKASI BELL & DROPDOWN
───────────────────────────────────────────── */
.notif-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.notif-bell {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    position: relative;
    color: var(--text-main);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.notif-bell:hover { color: var(--pink); }
.notif-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    min-width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    font-family: 'Barlow', sans-serif;
}
.notif-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 360px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(60, 20, 40, 0.13);
    border: 1.5px solid rgba(201, 75, 120, 0.13);
    z-index: 9999;
    overflow: hidden;
    font-family: 'Barlow', sans-serif;
}
.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 10px;
    border-bottom: 1px solid rgba(201, 75, 120, 0.10);
}
.notif-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
}
.notif-mark-all {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: 'Barlow', sans-serif;
}
.notif-mark-all:hover { text-decoration: underline; }
.notif-list {
    max-height: 480px;
    overflow-y: auto;
}
.notif-empty {
    text-align: center;
    padding: 36px 20px;
    color: #aaa;
}
.notif-empty i {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
    color: #ddd;
}
.notif-empty p { margin: 0; font-size: 13px; }

/* Item notifikasi */
.notif-item {
    display: block;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: background 0.15s;
    position: relative;
}
.notif-item:hover { background: rgba(201, 75, 120, 0.04); }
.notif-item.unread { background: rgba(201, 75, 120, 0.06); }
.notif-item.unread::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink);
}
.notif-item-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.notif-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
/* Warna ikon & badge per status — dipakai juga di komponen lain */
.status-0        { background: #f0f0f0;  color: #888; }
.status-process  { background: #ebf8ff;  color: #2b6cb0; }
.status-finished { background: #f0fff4;  color: #276749; }
.status-rejected { background: #fff5f5;  color: #c53030; }
.status-respon   { background: #faf5ff;  color: #6b46c1; }

.notif-item-badge {
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    padding: 2px 8px;
    white-space: nowrap;
}
/* Badge warna — sama dengan ikon di atas tapi lebih terang */
.notif-item-badge.status-0        { background: #f0f0f0;  color: #555; }
.notif-item-badge.status-process  { background: #bee3f8;  color: #2b6cb0; }
.notif-item-badge.status-finished { background: #c6f6d5;  color: #276749; }
.notif-item-badge.status-rejected { background: #fed7d7;  color: #c53030; }
.notif-item-badge.status-respon   { background: #e9d8fd;  color: #6b46c1; }

.notif-item-time {
    font-size: 11px;
    color: #aaa;
    margin-left: auto;
    white-space: nowrap;
}
.notif-item-judul {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    padding-left: 40px;
}
.notif-item-pesan {
    font-size: 12px;
    color: #666;
    line-height: 1.55;
    padding-left: 40px;
}

/* ─────────────────────────────────────────────
   9. STATUS BADGE  (x-status-badge component)
   Satu tempat untuk semua warna status laporan
───────────────────────────────────────────── */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.badge-status.pending  { background: #fff3cd; color: #856404; }
.badge-status.verified { background: #cfe2ff; color: #084298; }
.badge-status.process  { background: #d1ecf1; color: #0c5460; }
.badge-status.finished { background: #d1e7dd; color: #0f5132; }
.badge-status.rejected { background: #f8d7da; color: #842029; }

/* ─────────────────────────────────────────────
   10. FOOTER
───────────────────────────────────────────── */
footer.lp-footer {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.90);
    border-top: 1px solid rgba(201, 75, 120, 0.12);
    backdrop-filter: blur(14px);
    margin-top: auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1px 1fr 1px 1fr;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 260px;
}
.footer-divider {
    background: rgba(201, 75, 120, 0.10);
    align-self: stretch;
}
.footer-col { padding: 52px 40px; }
.footer-brand { padding: 52px 60px 52px 0; }
.footer-col-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201, 75, 120, 0.10);
}
.footer-brand-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 12px;
}
.footer-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}

.footer-brand-logo .accent { color: var(--pink); }
.footer-brand-logo .muted  { color: rgba(26, 17, 64, 0.28); }
.footer-brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 260px;
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--pink-pale);
    border: 1px solid var(--pink-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--pink);
    flex-shrink: 0;
    margin-top: 1px;
}
.fc-text { display: flex; flex-direction: column; gap: 2px; }
.fc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-soft);
}
.fc-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.6;
}
.fc-val a { color: var(--text-main); text-decoration: none; transition: color 0.2s; }
.fc-val a:hover { color: var(--pink); }
.footer-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links-list a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links-list a i { font-size: 10px; color: var(--pink); }
.footer-links-list a:hover { color: var(--pink); }
.footer-social-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(201, 75, 120, 0.18);
    background: rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}
.footer-social-link:hover {
    border-color: var(--pink);
    background: var(--pink);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 75, 120, 0.28);
}
.footer-social-link svg { width: 15px; height: 15px; fill: currentColor; display: block; }
.footer-bottom {
    border-top: 1px solid rgba(201, 75, 120, 0.10);
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 245, 248, 0.60);
}
.footer-copy { font-size: 13px; font-weight: 500; color: var(--text-soft); }
.footer-copy strong { color: var(--text-muted); }
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-soft);
}
.footer-badge i { color: var(--pink); font-size: 10px; }

/* ─────────────────────────────────────────────
   11. TICKER (running text bawah halaman)
───────────────────────────────────────────── */
.ticker-wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    overflow: hidden;
    height: 38px;
    background: linear-gradient(90deg, #C94B78, #9B2F5C, #C94B78);
    background-size: 200% 100%;
    animation: tickerBg 8s linear infinite;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.ticker-track {
    display: flex;
    animation: ticker 36s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
    padding: 0 28px;
}
.ticker-sep { color: rgba(255, 255, 255, 0.50); padding: 0 4px; }
.ticker-spacer { height: 38px; position: relative; z-index: 1; }

/* ─────────────────────────────────────────────
   12. HERO KOMPONEN  (x-hero component)
───────────────────────────────────────────── */
.lapor-hero {
    background: linear-gradient(135deg, #1E1B4B 0%, #2D1B4E 100%);
    padding: 40px 56px 48px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}
.lapor-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 83, 126, 0.10) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
}
.lapor-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(212, 83, 126, 0.10);
    pointer-events: none;
}
.lapor-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}
.lapor-hero-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #E8839F;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: fadeUp 0.5s ease both;
}
.lapor-hero-tag::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #D4537E;
    border-radius: 2px;
    flex-shrink: 0;
}
.lapor-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
    animation: fadeUp 0.6s ease 0.08s both;
}
.lapor-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
    animation: fadeUp 0.6s ease 0.16s both;
}

/* ─────────────────────────────────────────────
   13. SECTION LAYOUT HELPERS
───────────────────────────────────────────── */
.lp-section {
    position: relative;
    z-index: 1;
    padding: 96px 60px;
}
.lp-section.bg-alt {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(201, 75, 120, 0.08);
    border-bottom: 1px solid rgba(201, 75, 120, 0.08);
}
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ─────────────────────────────────────────────
   14. ANIMASI GLOBAL
───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes photoIn1 {
    from { opacity: 0; transform: translateX(-30px) rotate(-2deg); }
    to   { opacity: 1; transform: translateX(0) rotate(0); }
}
@keyframes photoIn2 {
    from { opacity: 0; transform: translateY(-20px) rotate(2deg); }
    to   { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes photoIn3 {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes tickerBg {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
@keyframes cardIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   15. ALERT KOMPONEN
───────────────────────────────────────────── */
.alert {
    border-radius: 10px;
    font-size: 13px;
}

/* ─────────────────────────────────────────────
   16. RESPONSIVE — BREAKPOINTS GLOBAL
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .mega-menu { padding: 10px 14px; gap: 2px; }
    .mega-link { padding: 7px 10px; font-size: 11px; gap: 6px; }
    .mega-link-icon { width: 24px; height: 24px; font-size: 10px; }
    .mega-divider { margin: 0 4px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-divider { display: none; }
    .footer-brand { padding: 40px 28px; }
    .footer-col { padding: 32px 28px; border-bottom: 1px solid rgba(201, 75, 120, 0.08); }
}

@media (max-width: 960px) {
    nav.lp-nav { padding: 0 24px; height: 72px; }
    .lp-nav-links,
    .btn-nav-masuk { display: none; }
    .lp-hamburger { display: flex; }
    html { scroll-padding-top: 72px; }
    .lp-section { padding: 64px 24px; }
    .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
    .lp-nav-right .btn-nav-lapor { display: none; }
    .notif-dropdown { width: 310px; right: -40px; }
    .lapor-hero { padding: 28px 24px 36px; }
}

@media (max-width: 640px) {
    nav.lp-nav { padding: 0 20px; }
    .ticker-wrap, .ticker-spacer { display: none; }
    .notif-dropdown { width: 280px; right: -60px; }
    .lapor-hero { padding: 36px 16px; }
}


/* =============================================================
   TAMBAHAN app.css — Komponen Halaman Beranda (main.blade.php)
   Tempelkan blok-blok ini ke app.css sesuai nomor seksinya
   ============================================================= */


/* ─────────────────────────────────────────────
   17. HERO SECTION  (main.blade.php #beranda)
───────────────────────────────────────────── */
.hero-section {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 60px 96px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Kiri ── */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Greeting user */
.hero-user-greeting {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid var(--pink-border);
    border-radius: 50px;
    padding: 6px 18px 6px 6px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    width: fit-content;
    animation: fadeUp 0.5s ease both;
}
.hero-user-greeting img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink-light);
    flex-shrink: 0;
}
.hero-user-greeting-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.hero-user-greeting-hi {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 0.5px;
}
.hero-user-greeting-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}

/* Heading utama */
.hero-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.95;
    color: var(--text-main);
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.1s both;
}
.hero-heading .word-italic {
    font-style: italic;
    color: var(--pink);
    display: block;
}

/* Deskripsi */
.hero-desc {
    font-size: 15px;
    line-height: 1.80;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease 0.18s both;
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease 0.24s both;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 24px 0 0;
    margin-right: 24px;
    border-right: 1px solid var(--pink-border);
}
.hero-stat:last-child {
    border-right: none;
    margin-right: 0;
}
.hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--pink);
    line-height: 1;
    letter-spacing: -0.5px;
}
.hero-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA buttons row */
.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease 0.30s both;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--pink);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(201, 75, 120, 0.32);
}
.btn-cta-primary:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 75, 120, 0.42);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-main);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--pink-border);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.btn-cta-secondary:hover {
    color: var(--pink);
    border-color: var(--pink);
    background: var(--pink-pale);
    transform: translateY(-2px);
}

/* Hero badges row */
.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.36s both;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid var(--pink-border);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.hero-badge:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.hero-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--pink-pale);
    border: 1px solid var(--pink-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--pink);
    flex-shrink: 0;
}
.hero-badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}
.hero-badge-sub {
    font-size: 11px;
    color: var(--text-soft);
}

/* ── Kanan: foto grid ── */
.hero-right {
    position: relative;
    height: 580px;
    animation: fadeUp 0.7s ease 0.2s both;
}
.photo-deco-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 75, 120, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.photo-deco-rect {
    position: absolute;
    bottom: 40px;
    left: -20px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle, rgba(147, 112, 219, 0.10) 0%, transparent 70%);
    pointer-events: none;
}
.photo-grid {
    position: relative;
    width: 100%;
    height: 100%;
}
.photo-item-1,
.photo-item-2,
.photo-item-3 {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255, 255, 255, 0.90);
}
.photo-item-1 {
    top: 0;
    left: 0;
    width: 58%;
    height: 55%;
    animation: photoIn1 0.8s ease 0.3s both;
}
.photo-item-2 {
    top: 0;
    right: 0;
    width: 38%;
    height: 42%;
    animation: photoIn2 0.8s ease 0.45s both;
}
.photo-item-3 {
    bottom: 0;
    left: 10%;
    width: 75%;
    height: 42%;
    animation: photoIn3 0.8s ease 0.6s both;
}
.photo-item-1 img,
.photo-item-2 img,
.photo-item-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ─────────────────────────────────────────────
   18. CTA BAND  (section #mulai-melapor)
───────────────────────────────────────────── */
.cta-band {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    padding: 60px;
    margin: 0 60px 80px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(201, 75, 120, 0.30);
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.cta-band-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
}
.cta-band-left { flex: 1; }
.cta-band-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 12px;
}
.cta-band-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.70;
    max-width: 420px;
    margin: 0;
}
.cta-band-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--pink);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.btn-cta-white:hover {
    background: #fff;
    color: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.90);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}
.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.80);
    color: #fff;
    transform: translateY(-2px);
}


/* ─────────────────────────────────────────────
   19. REASONS GRID  (mengapa-melapor.blade.php)
───────────────────────────────────────────── */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.reason-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;        /* ← tambah */
    display: flex;             /* ← tambah */
    flex-direction: column;    /* ← tambah */
    align-items: center;       /* ← tambah */
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
}
.reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--pink-pale);
    border: 1px solid var(--pink-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--pink);
    margin-bottom: 16px;
}
.reason-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}
.reason-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}


/* ─────────────────────────────────────────────
   20. CARA MELAPOR — STEPS  (cara-melapor.blade.php)
───────────────────────────────────────────── */
.steps-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 75, 120, 0.08);
}
.step-item:last-child { border-bottom: none; }
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(201, 75, 120, 0.30);
}
.step-body { flex: 1; }
.step-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}
.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* Panel kanan */
.steps-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 108px;
}
.steps-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: var(--radius-md);
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.steps-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.steps-info-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.steps-info-card-title span { color: var(--pink-light); }
.steps-info-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.70;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.steps-hotline {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 14px 18px;
    position: relative;
    z-index: 1;
}
.steps-hotline-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}
.steps-hotline-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.steps-hotline-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.steps-requirement-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(10px);
}
.steps-req-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pink-border);
}
.req-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}
.req-list li i {
    color: var(--pink);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}


/* ─────────────────────────────────────────────
   21. VIOLENCE GRID  (jenis-kekerasan.blade.php)
───────────────────────────────────────────── */
.violence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.violence-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}
.violence-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
}
.violence-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--pink-pale);
    border: 1px solid var(--pink-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--pink);
    margin: 0 auto 14px;
    transition: var(--transition);
}
.violence-card:hover .violence-icon-wrap {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}
.violence-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}
.violence-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.70;
    margin: 0;
}


/* ─────────────────────────────────────────────
   22. PRIVACY / KERAHASIAAN  (kerahasiaan.blade.php)
───────────────────────────────────────────── */
.privacy-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
}
.privacy-visual {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.privacy-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.privacy-visual-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(201, 75, 120, 0.25);
    border: 2px solid rgba(201, 75, 120, 0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--pink-light);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.privacy-visual-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.privacy-visual-title span { color: var(--pink-light); }
.privacy-visual p {
    font-size: 13px;
    color: rgba(255,255,255,0.60);
    line-height: 1.70;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.privacy-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.5px;
}
.privacy-badge i { color: var(--pink-light); font-size: 10px; }

/* Privacy features list (kanan) */
.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.privacy-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.privacy-feature:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--pink);
}
.pf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--pink-pale);
    border: 1px solid var(--pink-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--pink);
    flex-shrink: 0;
}
.pf-body { flex: 1; }
.pf-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
}
.pf-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.70;
    margin: 0;
}


/* ─────────────────────────────────────────────
   23. RESPONSIVE — HALAMAN BERANDA
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-section     { gap: 40px; padding: 60px 40px 80px; }
    .reasons-grid     { grid-template-columns: repeat(2, 1fr); }
    .violence-grid    { grid-template-columns: repeat(2, 1fr); }
    .steps-layout     { grid-template-columns: 1fr; }
    .steps-panel      { position: static; }
    .privacy-layout   { grid-template-columns: 1fr; }
    .privacy-visual   { max-width: 440px; }
    .cta-band         { margin: 0 40px 60px; padding: 40px; }
}

@media (max-width: 960px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 24px 60px;
        gap: 40px;
    }
    .hero-right {
        height: 340px;
        order: -1;
    }
    .hero-heading { font-size: clamp(44px, 10vw, 72px); }
    .reasons-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .violence-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .cta-band { margin: 0 24px 48px; padding: 32px 24px; }
}

@media (max-width: 640px) {
    .hero-section     { padding: 28px 16px 48px; }
    .hero-right       { height: 260px; }
    .hero-stats       { gap: 0; }
    .hero-stat        { padding: 0 16px 0 0; margin-right: 16px; }
    .hero-stat-num    { font-size: 24px; }
    .hero-badges      { flex-direction: column; gap: 8px; }
    .reasons-grid     { grid-template-columns: 1fr; }
    .violence-grid    { grid-template-columns: repeat(2, 1fr); }
    .cta-band         { margin: 0 16px 40px; border-radius: var(--radius-md); }
    .cta-band-right   { width: 100%; }
    .btn-cta-white,
    .btn-cta-ghost    { justify-content: center; }
    .privacy-layout   { gap: 32px; }
}

/* =================================================================
   RESPONSIVE PATCH — LaporPPA-KBB
   Tempelkan di bagian paling bawah app.css (setelah semua kode lama)
   Mencakup perbaikan untuk semua breakpoint:
   • 1200px  — large desktop fine-tuning
   • 1024px  — small laptop / large tablet landscape
   • 768px   — tablet portrait
   • 480px   — large phone
   • 360px   — small phone
   ================================================================= */

/* ─────────────────────────────────────────────
   RESET HELPERS — pastikan semua image responsive
───────────────────────────────────────────── */
img { max-width: 100%; height: auto; }

/* ─────────────────────────────────────────────
   GLOBAL CONTAINER PADDING — lebih napas di kecil
───────────────────────────────────────────── */
.container {
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 576px)  { .container { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px)  { .container { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 992px)  { .container { padding-left: 40px; padding-right: 40px; } }

/* ─────────────────────────────────────────────
   NAVBAR  — perbaikan layout mobile + logo
───────────────────────────────────────────── */
@media (max-width: 960px) {
    .lp-nav-right {
        gap: 6px;
    }
    /* Bell notif tetap tampil di mobile */
    .notif-wrapper {
        display: flex;
    }
    /* User trigger lebih ringkas */
    .user-trigger .user-name {
        display: none;          /* sembunyikan nama, sisakan avatar */
    }
    .user-trigger {
        padding: 5px;
        border-radius: 50%;
    }
}

@media (max-width: 640px) {
    nav.lp-nav {
        padding: 0 16px;
    }
    /* Dropdown notif — tidak overflow ke kanan */
    .notif-dropdown {
        right: -20px !important;
        width: calc(100vw - 32px) !important;
        max-width: 340px;
    }
}

/* ─────────────────────────────────────────────
   MOBILE MENU — lebih proper
───────────────────────────────────────────── */
@media (max-width: 960px) {
    .mobile-menu {
        top: 72px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    .mobile-menu a {
        font-size: 13px;
        padding: 11px 14px;
    }
}

/* ─────────────────────────────────────────────
   HERO SECTION — main landing & authenticated
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 60px 40px 72px;
    }
}

@media (max-width: 860px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px 56px;
        gap: 32px;
    }
    .hero-right {
        height: 280px;
        order: -1;              /* foto di atas teks di mobile */
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .hero-heading {
        font-size: clamp(40px, 10vw, 68px);
    }
    .hero-desc {
        font-size: 14px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 12px 0;
    }
    .hero-stat:last-child {
        border-right: none;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 28px 16px 48px;
    }
    .hero-right {
        height: 220px;
    }
    .hero-heading {
        font-size: clamp(36px, 11vw, 56px);
        letter-spacing: -0.5px;
    }
    .hero-user-greeting {
        padding: 5px 14px 5px 5px;
    }
    .hero-user-greeting img {
        width: 32px;
        height: 32px;
    }
    .hero-stat-num {
        font-size: 22px;
    }
    .hero-stat-label {
        font-size: 10px;
    }
    .hero-cta-row {
        flex-direction: column;
        gap: 10px;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
        width: 100%;
    }
    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }
    .hero-badge {
        width: 100%;
    }
}

/* ─────────────────────────────────────────────
   SECTION LAYOUT — padding & max-width
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .lp-section {
        padding: 56px 20px;
    }
    .section-title {
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 12px;
    }
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .lp-section {
        padding: 40px 16px;
    }
}

/* ─────────────────────────────────────────────
   REASONS GRID
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─────────────────────────────────────────────
   VIOLENCE GRID
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .violence-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 400px) {
    .violence-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────
   STEPS LAYOUT
───────────────────────────────────────────── */
@media (max-width: 960px) {
    .steps-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .steps-panel {
        position: static;
    }
}

/* ─────────────────────────────────────────────
   PRIVACY LAYOUT
───────────────────────────────────────────── */
@media (max-width: 860px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .privacy-visual {
        max-width: 100%;
    }
}

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
@media (max-width: 860px) {
    .cta-band {
        margin: 0 16px 48px;
        padding: 32px 20px;
        border-radius: 18px;
    }
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    .cta-band-right {
        width: 100%;
    }
    .btn-cta-white,
    .btn-cta-ghost {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-band {
        margin: 0 0 40px;
        border-radius: 0;
        padding: 28px 16px;
    }
    .cta-band-title {
        font-size: clamp(24px, 6vw, 36px);
    }
}

/* ─────────────────────────────────────────────
   LAPOR HERO (x-hero component)
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .lapor-hero {
        padding: 24px 20px 32px;
        margin-bottom: 28px;
    }
    .lapor-hero h1 {
        font-size: clamp(20px, 5vw, 30px);
    }
    .lapor-hero p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lapor-hero {
        padding: 20px 16px 28px;
        margin-bottom: 20px;
    }
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-divider {
        display: none;
    }
    .footer-brand {
        padding: 40px 28px 28px;
    }
    .footer-col {
        padding: 24px 28px;
        border-bottom: 1px solid rgba(201, 75, 120, 0.08);
    }
    .footer-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .footer-brand { padding: 32px 20px 20px; }
    .footer-col   { padding: 20px; }
    .footer-bottom {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-brand { padding: 24px 16px 16px; }
    .footer-col   { padding: 16px; }
    .footer-bottom { padding: 14px 16px; }
    .footer-contact-list li { gap: 10px; }
    .fc-icon { width: 28px; height: 28px; font-size: 11px; }
}

/* ─────────────────────────────────────────────
   NOTIFIKASI DROPDOWN
───────────────────────────────────────────── */
@media (max-width: 480px) {
    .notif-item-judul { font-size: 12px; }
    .notif-item-pesan { font-size: 11px; }
    .notif-header { padding: 12px 14px 8px; }
}

/* ─────────────────────────────────────────────
   HALAMAN CHOOSE VICTIM
───────────────────────────────────────────── */
@media (max-width: 768px) {
    /* row kartu victim jadi satu kolom */
    .victim-card {
        border-radius: 14px !important;
    }
}

@media (max-width: 480px) {
    .victim-icon { width: 70px; height: 70px; font-size: 28px; }
    .victim-card h5 { font-size: 16px; }
    .victim-card p  { font-size: 13px; }
    .btn-lanjutkan  { padding: 12px 28px; font-size: 14px; width: 100%; }
}

/* ─────────────────────────────────────────────
   FORM COMPLAINT ADD (add.blade.php)
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .form-card { border-radius: 14px !important; }
    .form-card-header { padding: 14px 18px; }
    .form-card-header h5 { font-size: 14px; }
    .sync-info-banner { padding: 10px 14px; font-size: 12px; }
    .victim-badge { font-size: 12px; padding: 5px 14px; }
    .field-group { padding: 16px 0; }
}

@media (max-width: 480px) {
    .form-card .card-body { padding: 16px !important; }
    .btn-actions {
        flex-direction: column;
        gap: 10px;
    }
    .btn-actions > * {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .btn-kirim, .btn-kembali, .btn-reset {
        width: 100%;
        justify-content: center;
    }
    .usia-display { font-size: 11px; }
}

/* ─────────────────────────────────────────────
   RIWAYAT LAPORAN (index1.blade.php)
───────────────────────────────────────────── */

/* Desktop DataTable — pastikan tidak overflow */
@media (max-width: 1024px) {
    #datatable thead th,
    #datatable tbody td {
        padding: 10px 6px;
        font-size: 12px;
    }
    .btn-detail, .btn-edit {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* Mobile card view sudah ada, pastikan diperkuat */
@media (max-width: 768px) {
    .table-card { border-radius: 14px !important; }
    .table-card-header { padding: 14px 16px; }
    .table-card-header h5 { font-size: 13.5px; }
    .btn-buat-laporan { padding: 8px 16px; font-size: 12px; }

    .m-laporan-card { border-radius: 10px; }
    .m-laporan-top  { padding: 9px 12px; }
    .m-laporan-body { padding: 10px 12px; gap: 7px; }
    .m-laporan-footer { padding: 9px 12px; gap: 7px; }
    .m-laporan-val  { font-size: 12.5px; }
}

@media (max-width: 480px) {
    .m-laporan-footer {
        flex-wrap: wrap;
        gap: 8px;
    }
    .btn-detail,
    .btn-edit {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
}

/* ─────────────────────────────────────────────
   DETAIL LAPORAN (detail.blade.php)
───────────────────────────────────────────── */

/* Info rows — wrap ke bawah di layar sempit */
@media (max-width: 640px) {
    .info-row {
        flex-direction: column;
        gap: 3px;
        padding: 11px 0;
    }
    .info-label {
        min-width: unset;
        font-size: 12px;
    }
    .info-value {
        font-size: 13px;
    }
    .desc-box {
        font-size: 13px;
        padding: 14px 16px;
    }
    .detail-card { border-radius: 14px !important; }
    .detail-card-header { padding: 13px 16px; }
    .detail-card-header h5 { font-size: 13.5px; }
    .detail-card .card-body { padding: 16px !important; }
}

/* Timeline cards di mobile */
@media (max-width: 768px) {
    .tl-card-inner {
        flex-direction: column;
    }
    .tl-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(176, 52, 102, 0.10);
        padding: 12px 14px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 10px;
    }
    .tl-date { width: 100%; }
    .tl-admin { margin-top: 0; }
    .tl-mid { padding: 12px 14px; }
    .tl-right {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(176, 52, 102, 0.10);
        padding: 10px 14px 14px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .timeline-wrap::before { left: 13px; }
    .tl-item { gap: 10px; }
    .tl-num {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-top: 12px;
    }
    .tl-thumb { width: 70px; height: 70px; }
    .tl-note-text { font-size: 13px; }
    .tl-date { font-size: 11px; }
    .tl-badge { font-size: 10.5px; padding: 3px 9px; }
    .tl-avatar, .tl-avatar-fallback { width: 28px; height: 28px; font-size: 11px; }
    .tl-admin-name { font-size: 11.5px; }
}

/* Lightbox responsif */
@media (max-width: 480px) {
    .lightbox-inner { max-width: 95vw; }
    .lightbox-inner img { max-height: 75vh; }
}

/* ─────────────────────────────────────────────
   TRACK & TRACK RESULT
───────────────────────────────────────────── */
@media (max-width: 640px) {
    .track-card { border-radius: 14px !important; }
    .track-card-header { padding: 14px 18px; }
    .track-form .form-control { font-size: 13px; padding: 10px 12px; }
    .btn-cari { padding: 11px 24px; font-size: 14px; }
    .info-box { padding: 14px; }
    .info-box li { font-size: 12px; }
}

@media (max-width: 480px) {
    .track-card .card-body { padding: 18px 14px !important; }
    .not-found-box { padding: 12px 14px; gap: 10px; }
    .not-found-box .nf-title { font-size: 13.5px; }
    .not-found-box .nf-desc  { font-size: 12px; }
}

/* Track Result */
@media (max-width: 768px) {
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }
    .complaint-card { border-radius: 14px !important; }
    .complaint-card-header { padding: 14px 18px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .complaint-info {
        padding: 16px 18px;
        gap: 14px;
        grid-template-columns: 1fr 1fr;
    }
    .progress-section { padding: 18px; }
}

@media (max-width: 480px) {
    .complaint-card .card-body,
    .complaint-info { padding: 14px !important; }
    .complaint-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .info-item .info-label { font-size: 11px; }
    .info-item .info-value { font-size: 13px; }

    /* Progress steps — label lebih kecil */
    .step-circle { width: 30px; height: 30px; font-size: 12px; }
    .step-label  { font-size: 10px; line-height: 1.2; }
    .progress-line-track { top: 15px; }
}

/* ─────────────────────────────────────────────
   STATUS BADGE — selalu pas di semua konteks
───────────────────────────────────────────── */
.badge-status {
    white-space: nowrap;
    font-size: 11.5px;
}

@media (max-width: 480px) {
    .badge-status { font-size: 10.5px; padding: 3px 9px; }
}

/* ─────────────────────────────────────────────
   EDUKASI SECTION — landing page
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .edu-featured-lp {
        grid-template-columns: 1fr !important;
    }
    .edu-featured-lp-img {
        min-height: 200px !important;
        max-height: 220px !important;
    }
    .edu-featured-lp-body {
        padding: 22px 18px !important;
    }
    .edu-lp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .edu-lp-grid {
        grid-template-columns: 1fr !important;
    }
    .edu-featured-lp-body h2 {
        font-size: 22px !important;
    }
}

/* ─────────────────────────────────────────────
   MEGA MENU — disable di layar < 960
───────────────────────────────────────────── */
@media (max-width: 960px) {
    .mega-menu { display: none !important; }
    .has-mega { padding-bottom: 0; margin-bottom: 0; }
}

/* ─────────────────────────────────────────────
   SCROLL — jangan ada horizontal scroll
───────────────────────────────────────────── */
body { overflow-x: hidden; }

/* ─────────────────────────────────────────────
   UTILITY — touch targets min 44px
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .btn-detail,
    .btn-edit,
    .btn-kirim,
    .btn-kembali,
    .btn-buat-laporan,
    .btn-cari,
    .btn-nav-lapor,
    .btn-nav-masuk,
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-white,
    .btn-cta-ghost {
        min-height: 44px;
    }
}

/* ─────────────────────────────────────────────
   ALERT COMPONENT
───────────────────────────────────────────── */
@media (max-width: 480px) {
    .alert { font-size: 13px; padding: 10px 14px; }
}

/* ─────────────────────────────────────────────
   LAPOR HERO — x-hero component di semua halaman
───────────────────────────────────────────── */
@media (max-width: 480px) {
    .lapor-hero::after { display: none; }  /* sembunyikan dekorasi bulat */
}

/* ─────────────────────────────────────────────
   FINE-TUNE — section eyebrow di mobile
───────────────────────────────────────────── */
@media (max-width: 480px) {
    .section-eyebrow-text { font-size: 10px; letter-spacing: 2px; }
    .section-eyebrow-line { width: 20px; }
}

/* ─────────────────────────────────────────────
   FORM CONTROLS — larger touch area di mobile
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .form-control,
    .form-select {
        font-size: 16px !important; /* cegah zoom iOS */
        min-height: 44px;
    }
    textarea.form-control {
        min-height: 100px;
        font-size: 15px !important;
    }
    input[type="file"].form-control {
        font-size: 13px !important;
        min-height: 44px;
        padding: 10px 12px;
    }
}

/* ─────────────────────────────────────────────
   DATATABLES — sembunyikan kolom kurang penting
   di medium screen (bukan mobile card)
───────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 920px) {
    #datatable thead th:nth-child(5),   /* jenis kekerasan */
    #datatable tbody td:nth-child(5) {
        display: none;
    }
}

/* ─────────────────────────────────────────────
   PRINT — sembunyikan elemen tidak perlu
───────────────────────────────────────────── */
@media print {
    .ticker-wrap, .ticker-spacer,
    .lp-nav, .mobile-menu,
    .lp-footer, .btn-kembali,
    .btn-buat-laporan { display: none !important; }
    body { background: #fff !important; }
    body::before, body::after { display: none !important; }
}


/* =============================================================
   SIDEBAR MOBILE NAV — LaporPPA-KBB
   Tambahkan di paling bawah app.css
   ============================================================= */

/* ── Overlay gelap di belakang sidebar ── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 30, 0.55);
    z-index: 1099;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* ── Sidebar panel ── */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100dvh;
    background: #fff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 4px 0 32px rgba(201, 75, 120, 0.18);
    overflow: hidden;
}
.mobile-sidebar.open {
    transform: translateX(0);
}

/* ── Header sidebar (logo + close) ── */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(201, 75, 120, 0.12);
    flex-shrink: 0;
}
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.sidebar-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.sidebar-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 75, 120, 0.20);
    background: var(--pink-pale);
    color: var(--pink);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.sidebar-close:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

/* ── Body sidebar (scrollable) ── */
.sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    -webkit-overflow-scrolling: touch;
}
.sidebar-body::-webkit-scrollbar { width: 4px; }
.sidebar-body::-webkit-scrollbar-track { background: transparent; }
.sidebar-body::-webkit-scrollbar-thumb { background: rgba(201,75,120,0.20); border-radius: 4px; }

/* ── Section label dalam sidebar ── */
.sidebar-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    padding: 14px 20px 6px;
    display: block;
}

/* ── Nav link dalam sidebar ── */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    border-left: 3px solid transparent;
}
.sidebar-link:hover,
.sidebar-link.active-sidebar {
    color: var(--pink);
    background: var(--pink-pale);
    border-left-color: var(--pink);
}
.sidebar-link-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(201, 75, 120, 0.08);
    border: 1px solid rgba(201, 75, 120, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--pink);
    flex-shrink: 0;
    transition: var(--transition);
}
.sidebar-link:hover .sidebar-link-icon,
.sidebar-link.active-sidebar .sidebar-link-icon {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}
.sidebar-divider {
    height: 1px;
    background: rgba(201, 75, 120, 0.10);
    margin: 8px 20px;
}

/* ── Footer sidebar (CTA + contact) ── */
.sidebar-footer {
    flex-shrink: 0;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(201, 75, 120, 0.12);
    background: rgba(255, 245, 248, 0.60);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--pink);
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(201, 75, 120, 0.30);
    border: none;
    cursor: pointer;
    width: 100%;
}
.sidebar-cta:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 75, 120, 0.40);
}
.sidebar-cta-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    background: transparent;
    color: var(--pink);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--pink-border);
    transition: var(--transition);
    width: 100%;
}
.sidebar-cta-ghost:hover {
    background: var(--pink-pale);
    border-color: var(--pink);
    color: var(--pink);
}
.sidebar-cta-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    color: #dc3545;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid rgba(220,53,69,0.25);
    transition: var(--transition);
    width: 100%;
}
.sidebar-cta-logout:hover {
    background: rgba(220,53,69,0.06);
    border-color: rgba(220,53,69,0.45);
    color: #dc3545;
}

/* ── Hotline chips di sidebar ── */
.sidebar-contact-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 0 0;
}
.sidebar-contact-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: rgba(255,255,255,0.80);
    border: 1px solid rgba(201, 75, 120, 0.14);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.sidebar-contact-chip:hover {
    border-color: var(--pink);
    background: var(--pink-pale);
    color: var(--pink);
}
.sidebar-contact-chip i {
    width: 28px;
    height: 28px;
    background: var(--pink-pale);
    border: 1px solid var(--pink-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--pink);
    flex-shrink: 0;
}

/* ── Sembunyikan sidebar & overlay di desktop ── */
@media (min-width: 961px) {
    .mobile-sidebar,
    .sidebar-overlay { display: none !important; }
    /* Pastikan mobile-menu lama juga tidak muncul */
    .mobile-menu { display: none !important; }
}

/* ── Hamburger baru (3 baris → X animasi) ── */
.lp-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.lp-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.lp-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 24px;
}
.lp-hamburger span {
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
                opacity 0.2s ease,
                width 0.2s ease;
}

/* =============================================================
   RESPONSIVE FIX — Dashboard Authenticated (User Login)
   Tambahkan di paling bawah app.css
   ============================================================= */

/* ─────────────────────────────────────────────
   NAVBAR MOBILE — authenticated layout
───────────────────────────────────────────── */
@media (max-width: 960px) {
    /* Sembunyikan nama user, sisakan avatar saja */
    .user-trigger .user-name {
        display: none;
    }
    .user-trigger {
        padding: 4px;
        border-radius: 50%;
        gap: 0;
    }

    /* Tombol LAPOR disembunyikan di navbar — sudah ada di sidebar */
    .lp-nav-right .btn-nav-lapor {
        display: none;
    }

    /* Notif bell tetap tampil */
    .notif-wrapper {
        display: flex;
    }

    /* Gap lebih rapat */
    .lp-nav-right {
        gap: 8px;
    }
}

/* ─────────────────────────────────────────────
   HERO PHOTO GRID — perbaikan utama mobile
   Masalah: absolute positioning tidak responsif
───────────────────────────────────────────── */

/* Tablet landscape (960px-1100px) */
@media (max-width: 1100px) and (min-width: 769px) {
    .hero-right {
        height: 420px;
    }
    .photo-item-1 { width: 56%; height: 52%; }
    .photo-item-2 { width: 40%; height: 40%; }
    .photo-item-3 { width: 72%; height: 40%; }
}

/* Tablet portrait (600px-768px) */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 32px 20px 52px;
        gap: 28px;
    }
    .hero-right {
        order: -1;
        height: 300px;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
    /* Sesuaikan ukuran foto agar proporsional */
    .photo-item-1 { width: 55%; height: 54%; top: 0; left: 0; }
    .photo-item-2 { width: 41%; height: 42%; top: 0; right: 0; }
    .photo-item-3 { width: 76%; height: 40%; bottom: 0; left: 8%; }
}

/* Handphone besar (480px-600px) */
@media (max-width: 600px) {
    .hero-right {
        height: 260px;
        max-width: 420px;
    }
    .photo-item-1 { width: 57%; height: 53%; }
    .photo-item-2 { width: 39%; height: 41%; }
    .photo-item-3 { width: 74%; height: 40%; }

    /* Greeting badge lebih compact */
    .hero-user-greeting {
        padding: 5px 14px 5px 5px;
        margin-bottom: 20px;
    }
    .hero-user-greeting img {
        width: 34px;
        height: 34px;
    }
    .hero-user-greeting-hi {
        font-size: 10px;
    }
    .hero-user-greeting-name {
        font-size: 12px;
    }
}

/* Handphone kecil (< 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 24px 16px 44px;
        gap: 24px;
    }
    .hero-right {
        height: 220px;
        max-width: 340px;
    }

    /* Heading lebih compact */
    .hero-heading {
        font-size: clamp(40px, 12vw, 60px);
        margin-bottom: 16px;
    }

    /* Desc lebih compact */
    .hero-desc {
        font-size: 13.5px;
        margin-bottom: 24px;
    }

    /* Stats row wrap dengan gap lebih kecil */
    .hero-stats {
        flex-wrap: wrap;
        gap: 8px 0;
        margin-bottom: 24px;
    }
    .hero-stat {
        padding: 0 14px 0 0;
        margin-right: 14px;
    }
    .hero-stat-num  { font-size: 22px; }
    .hero-stat-label { font-size: 10px; }

    /* CTA buttons full width */
    .hero-cta-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
    }

    /* Badges full width & compact */
    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }
    .hero-badge {
        width: 100%;
        padding: 8px 12px;
    }
    .hero-badge-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .hero-badge-text  { font-size: 11px; }
    .hero-badge-sub   { font-size: 10px; }
}

/* Handphone sangat kecil (< 360px) */
@media (max-width: 360px) {
    .hero-right   { height: 190px; }
    .hero-heading { font-size: 36px; }
    nav.lp-nav    { padding: 0 12px; }
}

/* ─────────────────────────────────────────────
   NOTIFIKASI DROPDOWN — tidak overflow di mobile
───────────────────────────────────────────── */
@media (max-width: 480px) {
    .notif-dropdown {
        position: fixed !important;
        top: 72px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        max-width: none !important;
    }
}

/* ─────────────────────────────────────────────
   CTA BAND — authenticated home
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .cta-band {
        margin: 0 16px 48px;
        padding: 28px 20px;
        border-radius: 16px;
    }
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .cta-band-title {
        font-size: clamp(22px, 6vw, 32px);
    }
    .cta-band-desc {
        font-size: 13.5px;
    }
    .cta-band-right {
        width: 100%;
    }
    .btn-cta-white,
    .btn-cta-ghost {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-band {
        margin: 0 0 40px;
        border-radius: 0;
    }
}


@media (max-width: 640px) {
    .lp-section { padding: 52px 18px; }
}
@media (max-width: 480px) {
    .lp-section { padding: 40px 14px; }
    .section-eyebrow-text { font-size: 10px; letter-spacing: 2px; }
}


/* Pastikan sidebar tidak muncul di desktop */
@media (min-width: 961px) {
    .mobile-sidebar,
    .sidebar-overlay { display: none !important; }
}

/* Di layar sangat kecil, sidebar full width */
@media (max-width: 320px) {
    .mobile-sidebar {
        width: 100%;
        max-width: 100%;
    }
}



/* ── NAVBAR HEIGHT & LOGO ── */
@media (max-width: 960px) {
    nav.lp-nav {
        height: 64px !important;
        padding: 0 16px !important;
    }
    .nav-logo-img {
        height: 40px !important;
    }
    html {
        scroll-padding-top: 64px !important;
    }
    .lp-nav-right {
        gap: 6px;
    }
    /* Sembunyikan nama user, sisakan avatar */
    .user-trigger .user-name {
        display: none !important;
    }
    .user-trigger {
        padding: 4px !important;
        border-radius: 50% !important;
    }
    /* Sembunyikan tombol LAPOR di navbar */
    .lp-nav-right .btn-nav-lapor {
        display: none !important;
    }
}

@media (max-width: 480px) {
    nav.lp-nav {
        height: 56px !important;
        padding: 0 12px !important;
    }
    .nav-logo-img {
        height: 34px !important;
    }
}

/* ── HERO SECTION LAYOUT MOBILE ── */
@media (max-width: 960px) {
    .hero-section {
        grid-template-columns: 1fr !important;
        padding: 28px 20px 52px !important;
        gap: 24px !important;
        max-width: 100% !important;
    }
    .hero-right {
        order: -1 !important;
        height: 280px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    /* Reset & sesuaikan posisi foto */
    .photo-item-1 {
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        width: 54% !important;
        height: 52% !important;
    }
    .photo-item-2 {
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 43% !important;
        height: 42% !important;
    }
    .photo-item-3 {
        bottom: 0 !important;
        left: 4% !important;
        right: auto !important;
        width: 78% !important;
        height: 41% !important;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 24px 16px 44px !important;
    }
    .hero-right {
        height: 240px !important;
    }
    .photo-item-3 {
        width: 82% !important;
        left: 2% !important;
    }
}

@media (max-width: 480px) {
    .hero-right {
        height: 210px !important;
    }
    .hero-section {
        padding: 20px 14px 40px !important;
    }
    /* CTA buttons full width */
    .hero-cta-row {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100% !important;
        justify-content: center !important;
    }
    /* Badges full width */
    .hero-badges {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .hero-badge {
        width: 100% !important;
    }
    /* Stats compact */
    .hero-stat-num   { font-size: 22px !important; }
    .hero-stat-label { font-size: 10px !important; }
    .hero-stat       { padding-right: 14px !important; margin-right: 14px !important; }
}

/* ── NOTIF DROPDOWN — tidak overflow ── */
@media (max-width: 480px) {
    .notif-dropdown {
        position: fixed !important;
        top: 56px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        max-width: none !important;
    }
}

/* ── FIX NAVBAR FULL WIDTH MOBILE ── */
@media (max-width: 960px) {
    nav.lp-nav {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    /* Pastikan body & html tidak ada margin tersembunyi */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ── FIX NAVBAR & SIDEBAR — versi aman ── */
html {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

body {
    overflow-x: hidden !important;
    /* JANGAN pakai overflow-y: hidden atau max-height di body */
    width: 100% !important;
}

/* Navbar full width */
nav.lp-nav {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Sidebar full height — gunakan dvh bukan vh */
.mobile-sidebar {
    height: 100dvh !important;
    max-height: 100dvh !important;
}

/* Overlay full screen */
.sidebar-overlay {
    height: 100dvh !important;
}

/* ── FIX FOOTER & TICKER MOBILE ── */

/* Tampilkan ticker di semua ukuran layar */
@media (max-width: 640px) {
    .ticker-wrap {
        display: flex !important;
        height: 32px !important;
    }
    .ticker-spacer {
        display: block !important;
        height: 32px !important;
    }
    .ticker-item {
        font-size: 11px !important;
        padding: 0 16px !important;
        letter-spacing: 1.5px !important;
    }
}

/* Footer tidak tertutup ticker */
footer.lp-footer {
    padding-bottom: 0 !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Pastikan page-content tidak memotong footer */
.page-content {
    display: flex !important;
    flex-direction: column !important;
}

/* Footer & ticker selalu di bawah konten */
@media (max-width: 768px) {
    footer.lp-footer {
        margin-bottom: 0 !important;
    }
    .footer-bottom {
        padding-bottom: 16px !important;
    }
}




.logout-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 30, 0.60);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.logout-overlay.active {
    display: flex;
    opacity: 1;
}

.logout-modal {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 24px 80px rgba(201, 75, 120, 0.25);
    border: 1.5px solid rgba(201, 75, 120, 0.18);
    overflow: hidden;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
.logout-overlay.active .logout-modal {
    transform: translateY(0) scale(1);
}

/* Header strip pink */
.logout-modal-header {
    background: linear-gradient(135deg, #C94B78 0%, #9B2F5C 100%);
    padding: 28px 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.logout-modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}
.logout-modal-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.logout-modal-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 6px;
    position: relative;
    z-index: 1;
}
.logout-modal-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* Body */
.logout-modal-body {
    padding: 24px 28px 28px;
    text-align: center;
}
.logout-modal-desc {
    font-size: 14px;
    color: rgba(26, 17, 64, 0.65);
    line-height: 1.75;
    margin: 0 0 24px;
}
.logout-modal-user {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 75, 120, 0.07);
    border: 1.5px solid rgba(201, 75, 120, 0.18);
    border-radius: 50px;
    padding: 8px 18px 8px 8px;
    margin-bottom: 24px;
}
.logout-modal-user img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 75, 120, 0.30);
    flex-shrink: 0;
}
.logout-modal-user-name {
    font-size: 13px;
    font-weight: 700;
    color: #1A1140;
}
.logout-modal-user-role {
    font-size: 11px;
    color: rgba(26, 17, 64, 0.50);
}

/* Tombol aksi */
.logout-modal-actions {
    display: flex;
    gap: 12px;
}
.btn-logout-cancel {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1.5px solid rgba(201, 75, 120, 0.25);
    background: rgba(201, 75, 120, 0.06);
    color: #C94B78;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
}
.btn-logout-cancel:hover {
    background: rgba(201, 75, 120, 0.12);
    border-color: #C94B78;
}
.btn-logout-confirm {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #C94B78 0%, #9B2F5C 100%);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    box-shadow: 0 4px 16px rgba(201, 75, 120, 0.35);
}
.btn-logout-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 75, 120, 0.45);
}
.btn-logout-confirm:active {
    transform: translateY(0);
}

/* Loading state saat logout */
.btn-logout-confirm.loading {
    pointer-events: none;
    opacity: 0.80;
}
.btn-logout-confirm.loading i {
    animation: spinIcon 0.8s linear infinite;
}
@keyframes spinIcon {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 480px) {
    .logout-modal {
        border-radius: 16px;
        max-width: 100%;
    }
    .logout-modal-header {
        padding: 22px 20px 16px;
    }
    .logout-modal-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
    .logout-modal-title {
        font-size: 19px;
    }
    .logout-modal-body {
        padding: 20px 20px 24px;
    }
    .logout-modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    .btn-logout-cancel,
    .btn-logout-confirm {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .logout-modal-header { padding: 18px 16px 14px; }
    .logout-modal-body   { padding: 16px 16px 20px; }
}



/* Container posisi fixed */
.lp-alert-stack {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 380px;
    max-width: calc(100vw - 32px);
    pointer-events: none;
}

/* Base alert card */
.lp-alert {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99999;
    width: 380px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 14px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 40px rgba(0, 0, 0, 0.10);
    border: 1.5px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px 20px;
    overflow: hidden;
    pointer-events: all;
    /* Animasi masuk */
    animation: lpAlertIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Jika ada beberapa alert, stack ke bawah */
.lp-alert + .lp-alert { top: auto; }

@keyframes lpAlertIn {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}
@keyframes lpAlertOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(60px) scale(0.95);
    }
}
.lp-alert.closing {
    animation: lpAlertOut 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Ikon lingkaran ── */
.lp-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Teks body ── */
.lp-alert-body {
    flex: 1;
    min-width: 0;
}
.lp-alert-title {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 3px;
    font-family: 'Barlow', sans-serif;
}
.lp-alert-msg {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    font-family: 'Barlow', sans-serif;
}

/* ── List error (multiple) ── */
.lp-alert-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.lp-alert-list li {
    font-size: 12.5px;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-family: 'Barlow', sans-serif;
}
.lp-alert-list li i {
    font-size: 7px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ── Tombol close ── */
.lp-alert-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: -2px;
    transition: all 0.18s ease;
    margin-right: -4px;
}

/* ── Progress bar bawah ── */
.lp-alert-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 14px 14px;
    width: 100%;
    transform-origin: left;
    animation: lpProgress 5s linear forwards;
}
@keyframes lpProgress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}



/* SUCCESS — hijau */
.lp-alert-success {
    border-color: rgba(39, 103, 73, 0.20);
    background: linear-gradient(135deg, #fff 60%, rgba(209, 231, 221, 0.30) 100%);
}
.lp-alert-success .lp-alert-icon {
    background: #d1e7dd;
    color: #0f5132;
}
.lp-alert-success .lp-alert-title { color: #0f5132; }
.lp-alert-success .lp-alert-msg   { color: #2a6049; }
.lp-alert-success .lp-alert-close {
    color: #0f5132;
    background: rgba(15, 81, 50, 0.07);
}
.lp-alert-success .lp-alert-close:hover {
    background: rgba(15, 81, 50, 0.14);
}
.lp-alert-success .lp-alert-progress { background: #0f5132; }

/* ERROR — merah */
.lp-alert-error {
    border-color: rgba(132, 32, 41, 0.20);
    background: linear-gradient(135deg, #fff 60%, rgba(248, 215, 218, 0.30) 100%);
}
.lp-alert-error .lp-alert-icon {
    background: #f8d7da;
    color: #842029;
}
.lp-alert-error .lp-alert-title { color: #842029; }
.lp-alert-error .lp-alert-msg   { color: #a33036; }
.lp-alert-error .lp-alert-list li { color: #842029; }
.lp-alert-error .lp-alert-list li i { color: #842029; }
.lp-alert-error .lp-alert-close {
    color: #842029;
    background: rgba(132, 32, 41, 0.07);
}
.lp-alert-error .lp-alert-close:hover {
    background: rgba(132, 32, 41, 0.14);
}
.lp-alert-error .lp-alert-progress { background: #842029; }

/* WARNING — kuning/amber */
.lp-alert-warning {
    border-color: rgba(133, 100, 4, 0.20);
    background: linear-gradient(135deg, #fff 60%, rgba(255, 243, 205, 0.40) 100%);
}
.lp-alert-warning .lp-alert-icon {
    background: #fff3cd;
    color: #856404;
}
.lp-alert-warning .lp-alert-title { color: #856404; }
.lp-alert-warning .lp-alert-msg   { color: #9a7207; }
.lp-alert-warning .lp-alert-close {
    color: #856404;
    background: rgba(133, 100, 4, 0.07);
}
.lp-alert-warning .lp-alert-close:hover {
    background: rgba(133, 100, 4, 0.14);
}
.lp-alert-warning .lp-alert-progress { background: #856404; }

/* INFO — pink (sesuai tema website) */
.lp-alert-info {
    border-color: rgba(201, 75, 120, 0.22);
    background: linear-gradient(135deg, #fff 60%, rgba(244, 168, 192, 0.15) 100%);
}
.lp-alert-info .lp-alert-icon {
    background: rgba(201, 75, 120, 0.12);
    color: #C94B78;
}
.lp-alert-info .lp-alert-title { color: #9B2F5C; }
.lp-alert-info .lp-alert-msg   { color: #C94B78; }
.lp-alert-info .lp-alert-close {
    color: #C94B78;
    background: rgba(201, 75, 120, 0.07);
}
.lp-alert-info .lp-alert-close:hover {
    background: rgba(201, 75, 120, 0.14);
}
.lp-alert-info .lp-alert-progress { background: #C94B78; }

/* ── Multiple alert stacking ── */
.lp-alert:nth-of-type(2) { top: 180px; }
.lp-alert:nth-of-type(3) { top: 260px; }
.lp-alert:nth-of-type(4) { top: 340px; }

/* ── Responsive ── */
@media (max-width: 480px) {
    .lp-alert {
        top: 72px !important;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: 100%;
        border-radius: 12px;
        padding: 14px 14px 18px;
        gap: 12px;
    }
    .lp-alert:nth-of-type(2) { top: 158px !important; }
    .lp-alert:nth-of-type(3) { top: 244px !important; }
    .lp-alert-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .lp-alert-title { font-size: 13px; }
    .lp-alert-msg   { font-size: 12px; }
}

@media (max-width: 360px) {
    .lp-alert { right: 8px; left: 8px; }
}



.hero-section {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 60px 80px;
    max-width: 1440px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────
   HERO RIGHT — container foto
───────────────────────────────────────────── */
.hero-right {
    position: relative;
    height: 600px;
    animation: fadeUp 0.7s ease 0.2s both;
    flex-shrink: 0;
}

/* Dekorasi lingkaran besar */
.photo-deco-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 75, 120, 0.13) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Dekorasi kotak */
.photo-deco-rect {
    position: absolute;
    bottom: 10px;
    left: -30px;
    width: 220px;
    height: 220px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle, rgba(147, 112, 219, 0.11) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

/* Dot pattern pojok kiri atas */
.photo-grid::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(circle, rgba(201,75,120,0.28) 1.5px, transparent 1.5px);
    background-size: 13px 13px;
    pointer-events: none;
    z-index: 0;
    border-radius: 8px;
}

/* Dot pattern pojok kanan bawah */
.photo-grid::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: 6%;
    width: 72px;
    height: 72px;
    background-image: radial-gradient(circle, rgba(201,75,120,0.20) 1.5px, transparent 1.5px);
    background-size: 11px 11px;
    pointer-events: none;
    z-index: 0;
    border-radius: 8px;
}

/* Photo grid wrapper */
.photo-grid {
    position: relative;
    width: 100%;
    height: 100%;
}


.photo-item-1,
.photo-item-2,
.photo-item-3 {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.96);
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-item-1 img,
.photo-item-2 img,
.photo-item-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-item-1:hover img,
.photo-item-2:hover img,
.photo-item-3:hover img {
    transform: scale(1.07);
}


/* Foto 1 — besar, kiri atas */
.photo-item-1 {
    top: 0;
    left: 0;
    width: 59%;
    height: 57%;
    z-index: 2;
    box-shadow:
        -6px 18px 52px rgba(201, 75, 120, 0.22),
        0 4px 20px rgba(0, 0, 0, 0.10);
    animation: photoIn1 0.8s ease 0.30s both,
               photoFloat1 6.5s ease-in-out 1.2s infinite;
}

/* Foto 2 — kanan atas, sedikit naik */
.photo-item-2 {
    top: 12px;
    right: 0;
    width: 38%;
    height: 46%;
    z-index: 3;
    box-shadow:
        10px -6px 36px rgba(147, 112, 219, 0.20),
        0 8px 28px rgba(0, 0, 0, 0.12);
    animation: photoIn2 0.8s ease 0.45s both,
               photoFloat2 7.5s ease-in-out 1.5s infinite;
    border-radius: 18px;
}

/* Foto 3 — lebar penuh bawah, overlap */
.photo-item-3 {
    bottom: 0;
    left: 6%;
    width: 80%;
    height: 40%;
    z-index: 4;
    box-shadow:
        0 22px 60px rgba(201, 75, 120, 0.22),
        0 6px 20px rgba(0, 0, 0, 0.10);
    animation: photoIn3 0.8s ease 0.60s both,
               photoFloat3 8s ease-in-out 1.8s infinite;
}

/* Hover — angkat ke atas */
.photo-item-1:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        -6px 28px 68px rgba(201, 75, 120, 0.30),
        0 8px 28px rgba(0, 0, 0, 0.14) !important;
    z-index: 10;
    animation-play-state: paused;
}

.photo-item-2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        14px -6px 48px rgba(147, 112, 219, 0.28),
        0 12px 36px rgba(0, 0, 0, 0.15) !important;
    z-index: 10;
    animation-play-state: paused;
}

.photo-item-3:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 32px 80px rgba(201, 75, 120, 0.28),
        0 10px 28px rgba(0, 0, 0, 0.12) !important;
    z-index: 10;
    animation-play-state: paused;
}

/* Overlay gradient bawah foto 1 & 3 */
.photo-item-1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26,17,64,0.18) 100%);
    pointer-events: none;
    z-index: 1;
}

.photo-item-3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(26,17,64,0.20) 100%);
    pointer-events: none;
    z-index: 1;
}


@keyframes photoIn1 {
    from { opacity: 0; transform: translateX(-30px) translateY(14px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes photoIn2 {
    from { opacity: 0; transform: translateX(22px) translateY(-22px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes photoIn3 {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}


@keyframes photoFloat1 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-9px); }
}

@keyframes photoFloat2 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-7px); }
}

@keyframes photoFloat3 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

@media (max-width: 1280px) {
    .hero-section {
        gap: 40px;
        padding: 56px 48px 72px;
    }

    .hero-right { height: 540px; }

    .photo-item-1 { width: 60%; height: 56%; }
    .photo-item-2 { width: 37%; height: 44%; top: 10px; }
    .photo-item-3 { width: 82%; height: 41%; left: 4%; }
}


@media (max-width: 1100px) {
    .hero-section {
        gap: 36px;
        padding: 48px 40px 64px;
    }

    .hero-right { height: 480px; }

    .photo-item-1 { width: 60%; height: 55%; }
    .photo-item-2 { width: 37%; height: 43%; top: 8px; }
    .photo-item-3 { width: 82%; height: 40%; left: 4%; }

    /* Matikan float di layar kecil supaya tidak jitter */
    .photo-item-1,
    .photo-item-2,
    .photo-item-3 {
        animation-name: photoIn1, none;
    }
    .photo-item-2 { animation-name: photoIn2, none; }
    .photo-item-3 { animation-name: photoIn3, none; }
}


@media (max-width: 960px) {
    .hero-section {
        grid-template-columns: 1fr !important;
        padding: 32px 24px 56px !important;
        gap: 0 !important;
        max-width: 100% !important;
    }

    .hero-right {
        order: -1 !important;
        height: 380px !important;
        width: 100% !important;
        max-width: 680px !important;
        margin: 0 auto 32px !important;
    }

    /* Sembunyikan dot pattern */
    .photo-grid::before,
    .photo-grid::after { display: none; }

    /* Matikan float */
    .photo-item-1 { animation: photoIn1 0.8s ease 0.30s both !important; }
    .photo-item-2 { animation: photoIn2 0.8s ease 0.45s both !important; }
    .photo-item-3 { animation: photoIn3 0.8s ease 0.60s both !important; }

    /* Posisi ulang foto */
    .photo-item-1 {
        top: 0 !important; left: 0 !important;
        width: 56% !important; height: 58% !important;
        border-radius: 16px !important;
    }

    .photo-item-2 {
        top: 8px !important; right: 0 !important; left: auto !important;
        width: 41% !important; height: 48% !important;
        border-radius: 16px !important;
    }

    .photo-item-3 {
        bottom: 0 !important; left: 3% !important;
        width: 82% !important; height: 38% !important;
        border-radius: 16px !important;
    }

    /* Border tipis */
    .photo-item-1,
    .photo-item-2,
    .photo-item-3 { border-width: 3px !important; }
}


@media (max-width: 768px) {
    .hero-right {
        height: 340px !important;
        max-width: 580px !important;
        margin-bottom: 28px !important;
    }

    .photo-item-1 {
        width: 57% !important; height: 57% !important;
    }

    .photo-item-2 {
        width: 40% !important; height: 47% !important;
        top: 6px !important;
    }

    .photo-item-3 {
        width: 84% !important; height: 38% !important;
        left: 2% !important;
    }
}


@media (max-width: 640px) {
    .hero-section {
        padding: 24px 16px 48px !important;
    }

    .hero-right {
        height: 300px !important;
        max-width: 100% !important;
        margin-bottom: 24px !important;
    }

    .photo-item-1 {
        width: 57% !important; height: 57% !important;
        border-radius: 14px !important; border-width: 3px !important;
    }

    .photo-item-2 {
        width: 40% !important; height: 47% !important;
        top: 4px !important;
        border-radius: 14px !important; border-width: 3px !important;
    }

    .photo-item-3 {
        width: 87% !important; height: 37% !important;
        left: 1% !important;
        border-radius: 14px !important; border-width: 3px !important;
    }

    /* Sembunyikan overlay */
    .photo-item-1::after,
    .photo-item-3::after { display: none !important; }

    /* Hero teks */
    .hero-heading { font-size: clamp(44px, 11vw, 68px) !important; }

    .hero-cta-row {
        flex-direction: column !important; gap: 10px !important;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100% !important; justify-content: center !important;
    }

    .hero-badges { flex-direction: column !important; gap: 8px !important; }
    .hero-badge  { width: 100% !important; }
}


@media (max-width: 480px) {
    .hero-section {
        padding: 20px 14px 44px !important;
    }

    .hero-right {
        height: 260px !important;
        margin-bottom: 20px !important;
    }

    /* Layout ulang:
       Foto 1 kiri atas + foto 2 kanan atas = row 1
       Foto 3 full width bawah = row 2          */
    .photo-item-1 {
        top: 0 !important; left: 0 !important;
        width: 56% !important; height: 55% !important;
        border-radius: 12px !important; border-width: 2.5px !important;
    }

    .photo-item-2 {
        top: 0 !important; right: 0 !important; left: auto !important;
        width: 41% !important; height: 46% !important;
        border-radius: 12px !important; border-width: 2.5px !important;
    }

    .photo-item-3 {
        bottom: 0 !important; left: 0 !important;
        width: 100% !important; height: 40% !important;
        border-radius: 12px !important; border-width: 2.5px !important;
    }

    /* Heading */
    .hero-heading {
        font-size: clamp(38px, 12vw, 58px) !important;
        margin-bottom: 14px !important;
    }

    .hero-desc {
        font-size: 13.5px !important;
        margin-bottom: 20px !important;
    }

    /* Stats */
    .hero-stats { flex-wrap: wrap; gap: 8px 0; margin-bottom: 20px !important; }
    .hero-stat  { padding: 0 14px 0 0 !important; margin-right: 14px !important; }
    .hero-stat-num   { font-size: 22px !important; }
    .hero-stat-label { font-size: 10px !important; }

    /* Badges */
    .hero-badge-icon { width: 30px !important; height: 30px !important; font-size: 12px !important; }
    .hero-badge-text { font-size: 11px !important; }
    .hero-badge-sub  { font-size: 10px !important; }
    .hero-badge      { padding: 8px 12px !important; }
}


@media (max-width: 360px) {
    .hero-right  { height: 220px !important; }
    .hero-heading { font-size: 34px !important; }

    .photo-item-1 { width: 57% !important; height: 54% !important; }
    .photo-item-2 { width: 40% !important; height: 45% !important; }
    .photo-item-3 { height: 38% !important; }

    .photo-item-1,
    .photo-item-2,
    .photo-item-3 {
        border-radius: 10px !important;
        border-width: 2px !important;
    }
}


/* =============================================================
   HERO PHOTO GRID — BENTO GRID LAYOUT (FINAL)
   Replace semua block .hero-right & .photo-* yang lama
   Tempelkan di paling bawah app.css
   ============================================================= */

/* ─────────────────────────────────────────────
   HERO SECTION — 2 kolom seimbang
───────────────────────────────────────────── */
.hero-section {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 64px 64px 88px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────
   HERO RIGHT — bento container
───────────────────────────────────────────── */
.hero-right {
    position: relative;
    animation: fadeUp 0.7s ease 0.2s both;
}

/* Sembunyikan dekorasi lama */
.photo-deco-circle,
.photo-deco-rect { display: none; }

/* ─────────────────────────────────────────────
   BENTO GRID WRAPPER
───────────────────────────────────────────── */
.photo-grid {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
    gap: 12px;
}

.photo-grid::before,
.photo-grid::after { display: none; }

/* ─────────────────────────────────────────────
   RESET posisi absolut lama
───────────────────────────────────────────── */
.photo-item-1,
.photo-item-2,
.photo-item-3 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.95);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Foto 1 — kiri, span 2 baris */
.photo-item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 20px;
    box-shadow:
        -4px 12px 40px rgba(201, 75, 120, 0.20),
        0 4px 16px rgba(0, 0, 0, 0.08);
    animation: bentoBounce1 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
    outline: 1px solid rgba(201, 75, 120, 0.15);
    outline-offset: 3px;
}

/* Foto 2 — kanan atas */
.photo-item-2 {
    grid-column: 2;
    grid-row: 1;
    border-radius: 20px;
    box-shadow:
        4px -4px 32px rgba(147, 112, 219, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.08);
    animation: bentoBounce2 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

/* Foto 3 — kanan bawah */
.photo-item-3 {
    grid-column: 2;
    grid-row: 2;
    border-radius: 18px;
    box-shadow:
        4px 8px 32px rgba(201, 75, 120, 0.16),
        0 4px 16px rgba(0, 0, 0, 0.08);
    animation: bentoBounce3 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.50s both;
}

/* Image fit */
.photo-item-1 img,
.photo-item-2 img,
.photo-item-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover */
.photo-item-1:hover,
.photo-item-2:hover,
.photo-item-3:hover {
    transform: translateY(-6px) scale(1.015);
    z-index: 10;
}
.photo-item-1:hover img,
.photo-item-2:hover img,
.photo-item-3:hover img {
    transform: scale(1.07);
}

/* Overlay gradient foto 1 */
.photo-item-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(26,17,64,0.20) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* Dot pattern dekorasi */
.hero-right::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(201,75,120,0.25) 1.5px, transparent 1.5px);
    background-size: 13px 13px;
    pointer-events: none;
    z-index: 0;
    border-radius: 8px;
}

.hero-right::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(201,75,120,0.18) 1.5px, transparent 1.5px);
    background-size: 11px 11px;
    pointer-events: none;
    z-index: 0;
    border-radius: 8px;
}

/* ─────────────────────────────────────────────
   ANIMASI MASUK
───────────────────────────────────────────── */
@keyframes bentoBounce1 {
    from { opacity: 0; transform: translateX(-20px) scale(0.97); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes bentoBounce2 {
    from { opacity: 0; transform: translateY(-16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bentoBounce3 {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 1280px
───────────────────────────────────────────── */
@media (max-width: 1280px) {
    .hero-section { gap: 44px; padding: 56px 48px 72px; }
    .photo-grid { grid-template-rows: 230px 180px; gap: 10px; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 1100px
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-section { gap: 36px; padding: 48px 36px 64px; }
    .photo-grid { grid-template-rows: 200px 160px; gap: 10px; }
    .photo-item-1,
    .photo-item-2,
    .photo-item-3 { border-radius: 16px; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 960px
   Single column, foto di atas teks
───────────────────────────────────────────── */
@media (max-width: 960px) {
    .hero-section {
        grid-template-columns: 1fr !important;
        padding: 32px 24px 56px !important;
        gap: 28px !important;
        max-width: 100% !important;
    }

    .hero-right {
        order: -1 !important;
        width: 100% !important;
        max-width: 640px !important;
        margin: 0 auto !important;
        /* Padding bawah agar badge "Selamat datang" tidak terpotong */
        padding-bottom: 0 !important;
    }

    .hero-right::before,
    .hero-right::after { display: none; }

    .photo-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 220px 170px !important;
        gap: 10px !important;
        height: auto !important;
    }

    .photo-item-1,
    .photo-item-2,
    .photo-item-3 {
        position: relative !important;
        top: auto !important; left: auto !important;
        right: auto !important; bottom: auto !important;
        width: 100% !important; height: 100% !important;
        border-radius: 14px !important;
        border-width: 3px !important;
    }

    .photo-item-1 { grid-column: 1 !important; grid-row: 1 / 3 !important; }
    .photo-item-2 { grid-column: 2 !important; grid-row: 1 !important; }
    .photo-item-3 { grid-column: 2 !important; grid-row: 2 !important; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 768px
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-section {
        padding: 28px 20px 52px !important;
        gap: 24px !important;
    }

    .hero-right { max-width: 560px !important; }

    .photo-grid {
        grid-template-rows: 195px 150px !important;
        gap: 9px !important;
    }

    .photo-item-1,
    .photo-item-2,
    .photo-item-3 { border-radius: 14px !important; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 640px
───────────────────────────────────────────── */
@media (max-width: 640px) {
    .hero-section {
        padding: 24px 16px 44px !important;
        gap: 20px !important;
    }

    .hero-right { max-width: 100% !important; }

    .photo-grid {
        grid-template-rows: 170px 130px !important;
        gap: 8px !important;
    }

    .photo-item-1,
    .photo-item-2,
    .photo-item-3 {
        border-radius: 12px !important;
        border-width: 2.5px !important;
    }

    .hero-heading { font-size: clamp(42px, 11vw, 64px) !important; }
    .hero-cta-row { flex-direction: column !important; gap: 10px !important; }
    .btn-cta-primary,
    .btn-cta-secondary { width: 100% !important; justify-content: center !important; }
    .hero-badges { flex-direction: column !important; gap: 8px !important; }
    .hero-badge  { width: 100% !important; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 480px
   FIX: foto & badge "Selamat datang" mepet
───────────────────────────────────────────── */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 14px 40px !important;
        gap: 20px !important;
    }

    /* Beri ruang cukup di bawah grid foto
       agar badge greeting tidak tertimpa */
    .hero-right {
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }

    .photo-grid {
        grid-template-rows: 148px 112px !important;
        gap: 7px !important;
    }

    .photo-item-1,
    .photo-item-2,
    .photo-item-3 {
        border-radius: 10px !important;
        border-width: 2px !important;
    }

    /* Hero greeting badge — pastikan tidak overlap */
    .hero-user-greeting {
        position: relative !important;
        z-index: 5 !important;
        margin-top: 4px !important;
        margin-bottom: 20px !important;
    }

    /* Heading & teks */
    .hero-heading {
        font-size: clamp(36px, 12vw, 54px) !important;
        margin-bottom: 12px !important;
        line-height: 0.95 !important;
    }
    .hero-desc { font-size: 13.5px !important; margin-bottom: 18px !important; }

    /* Stats */
    .hero-stats { flex-wrap: wrap; gap: 8px 0; margin-bottom: 18px !important; }
    .hero-stat  { padding: 0 12px 0 0 !important; margin-right: 12px !important; }
    .hero-stat-num   { font-size: 20px !important; }
    .hero-stat-label { font-size: 10px !important; }

    /* CTA */
    .hero-cta-row {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 16px !important;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 13px 20px !important;
    }

    /* Badges */
    .hero-badges { flex-direction: column !important; gap: 8px !important; }
    .hero-badge  { width: 100% !important; padding: 8px 12px !important; }
    .hero-badge-icon { width: 28px !important; height: 28px !important; font-size: 11px !important; }
    .hero-badge-text { font-size: 11px !important; }
    .hero-badge-sub  { font-size: 10px !important; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 360px
───────────────────────────────────────────── */
@media (max-width: 360px) {
    .hero-section {
        padding: 16px 12px 36px !important;
        gap: 16px !important;
    }

    .photo-grid {
        grid-template-rows: 125px 96px !important;
        gap: 6px !important;
    }

    .photo-item-1,
    .photo-item-2,
    .photo-item-3 {
        border-radius: 8px !important;
        border-width: 2px !important;
    }

    .hero-heading { font-size: 32px !important; }
}