/* ============================================================
   STYLE.CSS — GA Suplemen Optimizer
   Tema: Dark Professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- RESET & BASE ---- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary:    #0f1117;
    --bg-secondary:  #1a1d27;
    --bg-card:       #1e2130;
    --bg-input:      #252838;
    --border:        #2e3348;
    --border-light:  #363b52;
    --accent:        #4f8ef7;
    --accent-hover:  #3a7de8;
    --accent-soft:   rgba(79,142,247,0.12);
    --green:         #34d399;
    --green-soft:    rgba(52,211,153,0.12);
    --orange:        #fb923c;
    --orange-soft:   rgba(251,146,60,0.12);
    --red:           #f87171;
    --text-primary:  #f1f3f9;
    --text-secondary:#8b92a9;
    --text-muted:    #555d78;
    --white:         #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(15,17,23,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #4f8ef7, #7c3aed);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; }

.brand-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.brand-sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
}

.navbar-links {
    display: flex;
    gap: 2px;
    list-style: none;
}

.navbar-links a {
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.navbar-links a:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.navbar-links a.active {
    background: var(--accent-soft);
    color: var(--accent);
}

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ============================================================
   CARD
   ============================================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 16px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ============================================================
   PAGE TITLE
   ============================================================ */
.page-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.page-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ============================================================
   BADGE LANGKAH
   ============================================================ */
.langkah-badge {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   ALUR BAR — progress langkah di atas halaman simulasi
   ============================================================ */
.alur-bar {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 24px;
    margin-bottom: 20px;
}

.alur-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.alur-nomor {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alur-teks {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.alur-garis {
    flex: 0 0 24px;
    height: 1px;
    background: var(--border);
    margin: 0 6px;
}

/* ============================================================
   BUDGET BOX
   ============================================================ */
.budget-box {
    background: var(--accent-soft);
    border: 1px solid rgba(79,142,247,0.25);
    border-radius: 14px;
    padding: 22px;
}

.budget-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 12px 18px;
    width: fit-content;
    margin-bottom: 12px;
}

.budget-prefix {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.budget-input {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    border: none;
    background: transparent;
    outline: none;
    width: 200px;
    font-family: 'Inter', sans-serif;
}

.budget-contoh {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   RANGE SLIDER
   ============================================================ */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 10px;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid var(--bg-card);
    box-shadow: 0 0 0 2px var(--accent);
}

/* ============================================================
   PARAMS GRID — 4 kotak slider parameter
   ============================================================ */
.params-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.param-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.param-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.param-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.param-skala {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 5px;
}

.param-penjelasan {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    line-height: 1.6;
}

/* ============================================================
   PARAMS SELECT GRID — dropdown seleksi & crossover
   ============================================================ */
.params-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.select-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

/* ============================================================
   INFO ELITISME
   ============================================================ */
.info-elitisme {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--green-soft);
    border: 1px solid rgba(52,211,153,0.2);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-elitisme-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 5px;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-control {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 9px;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-input);
    outline: none;
    transition: border 0.2s;
    font-family: 'Inter', sans-serif;
}

.form-control:focus { border-color: var(--accent); }

/* ============================================================
   TABEL SUPLEMEN
   ============================================================ */
.tabel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.tabel-info {
    font-size: 13px;
    color: var(--text-secondary);
}

.table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--border);
}

table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
    font-size: 13px;
}

thead th {
    text-align: left;
    padding: 10px 14px;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

tbody td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    vertical-align: middle;
}

tbody td:first-child  { color: var(--text-muted); }
tbody td:nth-child(2) { color: var(--text-primary); font-weight: 500; }

tbody tr:hover td { background: rgba(79,142,247,0.04); }
tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   FORM TAMBAH SUPLEMEN
   ============================================================ */
.form-tambah {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.form-tambah-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-tambah-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.form-tambah-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.form-full  { grid-column: span 2; }
.form-group { margin-bottom: 0; }

/* ============================================================
   RDA INFO
   ============================================================ */
.rda-info {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.rda-info-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.rda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.rda-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 12px;
}

.rda-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.rda-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

/* ============================================================
   TOMBOL
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover    { background: var(--accent-hover); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-secondary {
    background: var(--bg-input);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
    color: var(--text-primary);
}

.btn-secondary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-danger {
    background: rgba(248,113,113,0.1);
    color: var(--red);
    border: 1px solid rgba(248,113,113,0.2);
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 7px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-danger:hover { background: rgba(248,113,113,0.2); }

/* ============================================================
   JALANKAN BOX
   ============================================================ */
.jalankan-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    margin-bottom: 16px;
    text-align: center;
}

.jalankan-judul {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.jalankan-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.btn-jalankan {
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
}

#jalankan-error {
    max-width: 480px;
    margin: 0 auto 16px;
    text-align: left;
}

/* ============================================================
   LOADING
   ============================================================ */
.loading {
    display: none;
    text-align: center;
    padding: 44px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-teks {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.loading-sub {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   HASIL — TAG DAN GRAFIK
   ============================================================ */
.hasil-section-tag {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.export-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 16px;
    gap: 16px;
}

.export-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.export-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   CARD HASIL — rekomendasi suplemen
   ============================================================ */
.card-hasil {
    border: 1px solid rgba(79,142,247,0.25);
    background: linear-gradient(
        180deg,
        rgba(79,142,247,0.04) 0%,
        var(--bg-card) 80px
    );
}

.hasil-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

/* ============================================================
   METRIK GA — 4 kotak angka di bawah hasil-top
   ============================================================ */
.metrik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 4px;
}

.metrik-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
}

.metrik-label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    line-height: 1.4;
}

.metrik-val {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.metrik-biru   { color: var(--accent); }
.metrik-hijau  { color: var(--green); }
.metrik-oranye { color: var(--orange); }

/* ============================================================
   FITNESS BADGE
   ============================================================ */
.fitness-badge {
    background: var(--accent);
    border-radius: 12px;
    padding: 14px 22px;
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
}

.fitness-angka {
    font-size: 26px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.fitness-label {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

/* ============================================================
   SECTION LABEL & DESC
   ============================================================ */
.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

/* ============================================================
   SUPLEMEN GRID — daftar suplemen terpilih
   ============================================================ */
.suplemen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 4px;
}

.suplemen-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.suplemen-nama {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
}

.suplemen-harga {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-input);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================
   NUTRISI PROGRESS BAR
   ============================================================ */
.nutrisi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 4px;
}


.nutrisi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.nutrisi-nama {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.nutrisi-angka {
    font-size: 12px;
    font-weight: 600;
}

.progress-bar-wrap {
    background: var(--bg-input);
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 8px;
    border-radius: 4px;
    transition: width 0.8s ease;
    min-width: 2px;
}

.nutrisi-status {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.status-green  { color: var(--green); }
.status-blue   { color: var(--accent); }
.status-orange { color: var(--orange); }
.status-gray   { color: var(--text-muted); }

/* ============================================================
   KROMOSOM
   ============================================================ */
.kromosom-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.gen-box {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: monospace;
    border: 1px solid var(--border);
    cursor: default;
    transition: transform 0.1s;
}

.gen-box:hover { transform: scale(1.1); }

.gen-1 {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: rgba(79,142,247,0.35);
}

.gen-0 {
    background: var(--bg-secondary);
    color: var(--text-muted);
}

.kromosom-legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* ============================================================
   ALERT
   ============================================================ */
.alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
}

.alert-warning {
    background: rgba(251,146,60,0.1);
    color: var(--orange);
    border: 1px solid rgba(251,146,60,0.2);
}

.alert-info {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(79,142,247,0.2);
}

.alert-success {
    background: var(--green-soft);
    color: var(--green);
    border: 1px solid rgba(52,211,153,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    text-align: center;
    padding: 24px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

/* ============================================================
   BERANDA — HERO
   ============================================================ */
.hero {
    text-align: center;
    padding: 70px 0 50px;
}

.hero-tag {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(79,142,247,0.2);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.25;
}

.hero-title span {
    background: linear-gradient(135deg, #4f8ef7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* ============================================================
   BERANDA — FITUR GRID
   ============================================================ */
.fitur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.fitur-icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.fitur-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.fitur-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   BERANDA — STATS BANNER
   ============================================================ */
.stats-banner {
    background: linear-gradient(135deg, #1a2540, #1e2d4a);
    border: 1px solid rgba(79,142,247,0.2);
    border-radius: 16px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 16px;
}

.stats-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.stats-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ============================================================
   CARA PAKAI — LANGKAH CARD
   ============================================================ */
.langkah-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.langkah-nomor {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.langkah-judul {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.langkah-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CARA PAKAI — TIPS CARD
   ============================================================ */
.tips-card {
    background: rgba(251,146,60,0.06);
    border-color: rgba(251,146,60,0.2);
}

.tips-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 12px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.tips-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tips-key { font-size: 12px; color: var(--text-secondary); }
.tips-val  { font-size: 12px; font-weight: 600; color: var(--orange); }

/* ============================================================
   TENTANG — INFO GRID
   ============================================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.info-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-key { font-size: 12px; color: var(--text-muted); }
.info-val  { font-size: 12px; font-weight: 500; color: var(--text-primary); }

/* ============================================================
   TENTANG — KOMPONEN GA
   ============================================================ */
.komponen-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
}

.komponen-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}