@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');
:root {
    --primary: #0F2573;
    --primary-dark: #0A1A57;
    --primary-light: #C7D2F7;
    --primary-xlight: #EEF1FD;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --text-dark: #0F172A;
    --text-mid: #475569;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;
    --border: #E2E8F0;
    --border-focus: #0F2573;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
    --shadow: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
    --transition: .2s ease;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'DM Serif Display', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
.serif { font-family: var(--font-serif); }
.text-primary { color: var(--primary); }
.text-mid { color: var(--text-mid); }
.text-light { color: var(--text-light); }
.text-sm { font-size: .85rem; }
.text-xs { font-size: .75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.w-full { width: 100%; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.pt-2 { padding-top: 1rem; } .pb-2 { padding-bottom: 1rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 64px;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    justify-self: start;
}
.navbar-brand:hover { color: var(--primary-dark); }
.navbar-brand-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.navbar-brand-icon svg { color: white; }
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand-text strong { color: var(--primary); font-size: 1rem; letter-spacing: .02em; }
.navbar-brand-text span { color: var(--text-dark); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .65; }
.navbar-menu {
    display: flex;
    align-items: center;
    gap: .15rem;
    justify-self: center;
}
.navbar-menu a {
    padding: .45rem .85rem;
    border-radius: var(--radius-sm);
    color: var(--text-mid);
    font-size: .85rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}
.navbar-menu a:hover, .navbar-menu a.active {
    background: var(--primary-xlight);
    color: var(--primary);
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    justify-self: end;
}
.user-menu { position: relative; }
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .75rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: .875rem;
    font-weight: 600;
    transition: all var(--transition);
    font-family: var(--font-sans);
    color: var(--text-dark);
}
.user-menu-btn:hover { border-color: var(--primary); color: var(--primary); }
.user-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 700;
}
.user-dropdown {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    overflow: hidden;
    display: none;
    z-index: 200;
}
.user-dropdown.open { display: block; }
.user-dropdown a, .user-dropdown button {
    display: block;
    width: 100%;
    padding: .65rem 1rem;
    text-align: left;
    border: none;
    background: none;
    color: var(--text-mid);
    font-size: .875rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
}
.user-dropdown a:hover, .user-dropdown button:hover {
    background: var(--bg-light);
    color: var(--primary);
}
.user-dropdown hr { border: none; border-top: 1px solid var(--border); margin: .25rem 0; }
.user-dropdown .logout-btn { color: var(--danger); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; }
.btn-outline { background: transparent; border: 1.5px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-outline-gray { background: transparent; border: 1.5px solid var(--border); color: var(--text-mid); }
.btn-outline-gray:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: var(--danger); color: white; }
.btn-success { background: var(--success); color: white; }
.btn-warning { background: var(--warning); color: white; }
.btn-sm { padding: .4rem .9rem; font-size: .8rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: var(--radius); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.form-control {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .9rem;
    color: var(--text-dark);
    background: white;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, .12);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: .3rem; }
.form-error { font-size: .8rem; color: var(--danger); margin-top: .3rem; }
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-header h3 { font-size: 1rem; font-weight: 700; }
.card-body { padding: 1.5rem; }
.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .65rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
}
.badge-primary { background: #DBEAFE; color: #1D4ED8; }
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-danger { background: #FEE2E2; color: #991B1B; }
.badge-info { background: #DBEAFE; color: #1E40AF; }
.badge-secondary { background: #F1F5F9; color: #475569; }
.alert {
    padding: .85rem 1.1rem;
    border-radius: var(--radius);
    font-size: .875rem;
    border-left: 3px solid;
    margin-bottom: 1rem;
}
.alert-success { background: #D1FAE5; border-color: var(--success); color: #065F46; }
.alert-danger { background: #FEE2E2; border-color: var(--danger); color: #991B1B; }
.alert-warning { background: #FEF3C7; border-color: var(--warning); color: #92400E; }
.alert-info { background: #DBEAFE; border-color: var(--info); color: #1E40AF; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--bg-light); }
th {
    padding: .85rem 1rem;
    text-align: left;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
td {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: .875rem;
    vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg-light); }
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform .25s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-mid);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.modal-close:hover { background: var(--border); color: var(--text-dark); }
.modal-body { padding: 1.5rem; }
.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: .75rem;
    justify-content: flex-end;
}
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}
.step {
    display: flex;
    align-items: center;
}
.step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    color: var(--text-light);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 700;
    transition: all var(--transition);
    flex-shrink: 0;
}
.step-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: .35rem;
    text-align: center;
    transition: color var(--transition);
}
.step-line {
    height: 2px;
    width: 60px;
    background: var(--border);
    transition: background var(--transition);
    flex-shrink: 0;
}
.step.active .step-num { background: var(--primary); border-color: var(--primary); color: white; }
.step.active .step-label { color: var(--primary); }
.step.done .step-num { background: var(--success); border-color: var(--success); color: white; }
.step.done + .step .step-line,
.step.done .step-line { background: var(--success); }
.step-wrap { display: flex; flex-direction: column; align-items: center; }
.page-header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}
.page-header h1 { font-size: 1.5rem; }
.page-content { padding-bottom: 3rem; }
.payment-option {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}
.payment-option:hover { border-color: var(--primary); }
.payment-option.selected {
    border-color: var(--primary);
    background: var(--primary-xlight);
}
.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.payment-option-inner { display: flex; align-items: center; gap: 1rem; pointer-events: none; }
.payment-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.timeline { list-style: none; position: relative; padding-left: 2rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: .55rem;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 1.5rem; }
.timeline-dot {
    position: absolute;
    left: -1.55rem;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--border);
    top: .3rem;
}
.timeline-item.done .timeline-dot { background: var(--primary); box-shadow: 0 0 0 2px var(--primary-light); }
.timeline-item.current .timeline-dot { background: var(--accent); box-shadow: 0 0 0 2px #FEF3C7; }
.timeline-title { font-size: .9rem; font-weight: 600; }
.timeline-time { font-size: .75rem; color: var(--text-light); }
.timeline-desc { font-size: .825rem; color: var(--text-mid); margin-top: .2rem; }
.upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg-light);
}
.upload-area:hover, .upload-area.dragover {
    border-color: var(--primary);
    background: var(--primary-xlight);
}
.upload-area input { display: none; }
.item-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .75rem;
}
.item-check {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}
.item-check:hover { border-color: var(--primary); background: var(--primary-xlight); }
.item-check.selected { border-color: var(--primary); background: var(--primary-xlight); }
.item-check input { display: none; }
.item-check-box {
    width: 20px; height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.item-check.selected .item-check-box {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.item-check-name { font-size: .875rem; font-weight: 500; flex: 1; }
.item-check-price { font-size: .78rem; color: var(--text-light); }
.no-mobile { display: inline-flex; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    border: none;
    background: none;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-light); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(2px);
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
    position: absolute;
    top: 0; right: 0;
    width: 82%;
    max-width: 320px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head {
    padding: 1.25rem 1.25rem .75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-nav-brand { font-weight: 800; font-size: 1rem; color: var(--primary); }
.mobile-nav-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-mid);
}
.mobile-nav-links { padding: .75rem 0; flex: 1; }
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.25rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-mid);
    border-left: 3px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}
.mobile-nav-links a svg { flex-shrink: 0; opacity: .7; transition: opacity var(--transition); }
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--primary-xlight);
    color: var(--primary);
    border-left-color: var(--primary);
}
.mobile-nav-links a:hover svg,
.mobile-nav-links a.active svg { opacity: 1; }
.mobile-nav-links .nav-divider {
    height: 1px;
    background: var(--border);
    margin: .5rem 1.25rem;
}
.mobile-nav-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
@media (max-width: 768px) {
    html { font-size: 14px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .container { padding: 0 1rem; }
    .container-sm { padding: 0 1rem; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    .navbar-inner {
        grid-template-columns: auto 1fr auto;
        padding: 0 1rem;
        height: 56px;
    }
    .navbar-menu { display: none; }
    .hamburger { display: flex; }
    .no-mobile { display: none !important; }
    .user-menu-btn { padding: .35rem .6rem; font-size: .8rem; }
    .user-menu-btn svg { display: none; }
    .modal-overlay { align-items: flex-end; padding: 0; }
    .modal {
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 92vh;
    }
    .card-body { padding: 1rem; }
    .card-header { padding: .85rem 1rem; }
    .btn-lg { padding: .75rem 1.5rem; font-size: .9rem; }
    .btn-xl { padding: .85rem 1.5rem; font-size: .95rem; }
    .page-header { padding: 1rem 0; margin-bottom: 1.25rem; }
    .page-content { padding-bottom: 2rem; }
    .table-wrap { border-radius: var(--radius-sm); }
    th, td { padding: .65rem .75rem; font-size: .8rem; }
    .item-checklist { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .item-check { padding: .6rem .75rem; }
    .item-check-name { font-size: .8rem; }
    .step-line { width: 30px; }
    .step-num { width: 30px; height: 30px; font-size: .75rem; }
    .step-label { font-size: .65rem; }
    .upload-area { padding: 1.25rem; }
    .mt-3 { margin-top: 1rem; }
    .mb-3 { margin-bottom: 1rem; }
}
.cara-kerja-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step-arrow-right {
    position: absolute;
    right: -1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary-light);
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 900px) {
    .cara-kerja-grid { grid-template-columns: repeat(2,1fr) !important; }
    .step-arrow-right { display: none; }
}
@media (max-width: 480px) {
    .cara-kerja-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    html { font-size: 13.5px; }
    .container, .container-sm { padding: 0 .75rem; }
    h1 { font-size: 1.35rem; }
    .item-checklist { grid-template-columns: 1fr; }
    .btn-lg, .btn-xl { width: 100%; justify-content: center; }
    .card-body { padding: .875rem; }
    .modal { max-height: 96vh; }
    .plan-card { padding: 1.25rem; }
}
.site-footer {
    background: var(--text-dark);
    color: #94A3B8;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}
.site-footer h4 { color: white; font-size: .95rem; margin-bottom: 1rem; }
.site-footer a { color: #94A3B8; font-size: .875rem; }
.site-footer a:hover { color: var(--primary-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.25rem;
    margin-top: 2rem;
    font-size: .8rem;
    text-align: center;
}
