/* Variabel warna agar background dan teks konsisten di semua device */
:root {
    --black: #0b0b0b;
    --white: #ffffff;
    --gold: #e1c547;
    --gold-bright: #e1c547;
    --muted: #c9c9c9;
    --border-gold: rgba(146, 111, 52, 0.25);
    --bg-gold-light: rgba(146, 111, 52, 0.04);
    --bg-gold-medium: rgba(146, 111, 52, 0.1);
}
/* Paksa background putih di semua device, override dark mode dan CSS lain */
html,
body {
    background: var(--white) !important;
    color: var(--black) !important;
    color-scheme: only light;
}
/* Responsive Styles - Menyesuaikan dengan landing.css */
@media (max-width: 900px) {
    .container {
        padding: 0 16px;
    }
    header {
        background: var(--black);
        border-bottom: 1px solid var(--border-gold);
    }
    .nav {
        padding: 12px 0;
    }
    .brand {
        font-size: 18px;
        color: var(--gold-bright);
    }
    .menu {
        display: none;
    }
    .cta {
        background: var(--gold-bright);
        color: #000;
        padding: 10px 16px;
        border-radius: 25px;
        font-weight: 800;
        border: 1px solid var(--gold);
        box-shadow: 0 4px 12px rgba(225, 197, 71, 0.3);
        font-size: 14px;
    }
    .cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(225, 197, 71, 0.4);
    }
    .hero {
        padding-top: 80px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
        gap: 20px;
    }
    .divider {
        display: none;
    }
    .hero h1 {
        font-family: "Agency FB", sans-serif;
        font-size: 36px;
        margin-bottom: 16px;
        font-weight: bold;
        line-height: 1.2;
        color: var(--gold-bright);
        font-style: italic;
    }
    .hero p {
        font-family: "Agency FB", sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.4;
        color: var(--black);
    }
    .hero .actions {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    .hero .hero-logo img {
        max-width: 280px;
        width: 100%;
        border-radius: 16px;
        transition: transform 0.3s ease;
    }
    .hero .hero-logo img:hover {
        transform: scale(1.02);
    }
    section {
        padding: 40px 0;
    }
    h2.section-title {
        font-family: "Agency FB", sans-serif;
        font-size: 32px;
        margin-bottom: 16px;
        font-weight: bold;
        color: var(--gold-bright);
        text-align: center;
    }
    .section-sub {
        font-family: "Agency FB", sans-serif;
        font-size: 18px;
        padding: 0 15px;
        line-height: 1.4;
        color: var(--black);
        text-align: center;
    }
    .grid {
        gap: 12px;
        display: grid;
    }
    .col-4,
    .col-3 {
        grid-template-columns: 1fr;
    }
    .card {
        background: var(--white);
        border: 1px solid var(--border-gold);
        border-radius: 16px;
        color: var(--black);
        padding: 15px;
        font-family: "Agency FB", sans-serif;
        box-shadow: 0 4px 20px var(--shadow-light);
        transition: all 0.3s ease;
    }
    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px var(--shadow-medium);
        border-color: var(--gold-bright);
    }
    .card h3 {
        font-family: "Agency FB", sans-serif;
        font-size: 22px;
        font-weight: bold;
        color: var(--gold-bright);
    }
    .card p {
        font-family: "Agency FB", sans-serif;
        font-size: 16px;
        line-height: 1.4;
        color: var(--black);
    }
    .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
        background: linear-gradient(
            90deg,
            var(--bg-gold-medium),
            var(--bg-gold-light)
        );
        border: 1px solid var(--border-gold);
        border-radius: 16px;
        display: flex;
        align-items: center;
        box-shadow: 0 8px 25px var(--shadow-light);
    }
    .cta-band h3 {
        font-family: "Agency FB", sans-serif;
        font-size: 28px;
        font-weight: bold;
        color: var(--gold-bright);
    }
    .cta-band .actions {
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .cta-band .btn {
        width: 100%;
        text-align: center;
    }
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .footer-cols h4 {
        color: var(--gold-bright);
    }
    footer {
        padding: 24px 0;
        color: var(--white);
        background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    }
    footer nav {
        justify-content: center;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
    }
    .copy {
        margin-top: 24px;
        font-size: 12px;
        color: var(--muted);
        text-align: center;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .btn {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 25px;
        font-weight: 800;
        border: 1px solid var(--gold);
        background: var(--gold-bright);
        color: #000;
        box-shadow: 0 4px 12px rgba(225, 197, 71, 0.3);
    }
    .hero .actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .hero .actions .btn {
        width: 100%;
    }
    .hero .hero-logo img {
        max-width: 200px;
    }
    .article {
        padding: 12px;
        border-radius: 12px;
        font-size: 14px;
    }
    .article h3 {
        font-size: 16px;
    }
    .article p {
        font-size: 14px;
    }
    .timeline {
        padding-left: 24px;
    }
    .step {
        font-size: 14px;
        padding: 10px 12px;
        border-radius: 8px;
    }
}
