/* ============================================================
   ACCES 2026 — Landing Page
   Kementerian UMKM Republik Indonesia
   ============================================================ */

:root {
    --gold-light: #F5E1AB;
    --gold: #E0B73C;
    --steel: #3E6E9E;
    --navy: #234766;
    --navy-deep: #1E2A40;
    --navy-darkest: #131C2B;
    --white: #ffffff;
    --ink-muted: rgba(255, 255, 255, 0.78);
    --border-soft: rgba(245, 225, 171, 0.18);
    --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'KoHo', sans-serif;
    font-weight: 400;
    background-color: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; }

a { color: inherit; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============ GOVERNMENT HEADER ============ */
.gov-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--navy-darkest);
    border-bottom: 2px solid var(--gold);
}

.gov-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kementerian-logo {
    height: 44px;
    width: auto;
}

.kita-umkm {
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--gold-light);
}

.kita-umkm strong { font-weight: 700; }

/* ============ SHARED — DIAMOND SUPERGRAPHIC ============ */
.diamond-accent {
    position: absolute;
    width: 70px;
    height: 70px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0.85;
    pointer-events: none;
}

.diamond-tl { top: 64px; left: -24px; box-shadow: 56px 56px 0 -8px rgba(62, 110, 158, 0.6); }
.diamond-br { bottom: 90px; right: -20px; box-shadow: -54px -54px 0 -6px rgba(62, 110, 158, 0.55); }
.diamond-cta { top: 40px; right: 6%; opacity: 0.5; }

.diamond-mini {
    display: inline-block;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    background: var(--gold);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(30, 42, 64, 0.92), rgba(19, 28, 43, 0.96)),
        url('asset/bghero4.png');
    background-size: cover;
    background-position: center;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 1.5rem 6.5rem;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--ink-muted);
    max-width: 560px;
    margin: 0 0 2.25rem;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-logo {
    display: flex;
    justify-content: center;
}

.hero-logo-card {
    width: 100%;
    max-width: 320px;
    padding: 2.5rem;
    background: rgba(35, 71, 102, 0.55);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    backdrop-filter: blur(2px);
}

.hero-logo-card img { display: block; }

/* skyline band */
.hero-skyline,
.footer-skyline {
    height: 90px;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='90' viewBox='0 0 360 90'%3E%3Cg fill='%233E6E9E' fill-opacity='0.35'%3E%3Crect x='0' y='45' width='26' height='45'/%3E%3Crect x='30' y='28' width='20' height='62'/%3E%3Crect x='54' y='55' width='30' height='35'/%3E%3Crect x='88' y='18' width='22' height='72'/%3E%3Crect x='114' y='40' width='26' height='50'/%3E%3Crect x='144' y='60' width='34' height='30'/%3E%3Crect x='182' y='30' width='18' height='60'/%3E%3Crect x='204' y='48' width='28' height='42'/%3E%3Crect x='236' y='22' width='22' height='68'/%3E%3Crect x='262' y='52' width='32' height='38'/%3E%3Crect x='298' y='36' width='20' height='54'/%3E%3Crect x='322' y='58' width='34' height='32'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 0.95rem 2.25rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 2px solid var(--gold-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary { background-color: var(--gold-light); color: var(--navy-darkest); }
.btn-secondary { background-color: transparent; color: var(--gold-light); }

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-lg { padding: 1.1rem 3rem; font-size: 1.2rem; }

/* ============ SECTIONS ============ */
.section { padding: 4.5rem 0; }

.section-manfaat { background-color: var(--navy); }
.section-kriteria { background-color: var(--navy-deep); }
.section-timeline { background-color: var(--navy); }
.section-klaster { background-color: var(--navy-deep); }
.section-mitra { background-color: var(--navy); }

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    margin: 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    margin: 0.9rem auto 0;
    background: var(--gold);
    border-radius: 2px;
}

/* ============ ICON TILES ============ */
.icon-tile {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, var(--steel) 0%, #4f7d52 55%, var(--gold) 100%);
    color: var(--white);
}

.icon-tile.small { width: 58px; height: 58px; border-radius: 10px; }

.icon-tile svg { width: 60%; height: 60%; }

/* ============ MANFAAT ============ */
.manfaat-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}

.manfaat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--navy-darkest);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    padding: 1.5rem;
}

.manfaat-text h3 {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
}

.manfaat-text p { margin: 0; color: var(--ink-muted); }

/* ============ KRITERIA ============ */
.kriteria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.kriteria-card {
    background-color: var(--navy-darkest);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.kriteria-card .icon-tile { margin: 0 auto 1.25rem; }

.kriteria-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
}

.kriteria-card p { margin: 0; color: var(--ink-muted); font-size: 0.98rem; }

.kriteria-card strong { color: var(--white); }

/* ============ TIMELINE ============ */
.timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 720px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--gold);
}

.timeline-step {
    position: relative;
    padding-left: 56px;
    margin-bottom: 1.25rem;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-node {
    position: absolute;
    left: 9px;
    top: 18px;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    background: var(--gold);
    border: 3px solid var(--navy);
}

.timeline-card {
    background-color: var(--navy-darkest);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.timeline-batch {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy-darkest);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.6rem;
}

.timeline-card h3 {
    margin: 0 0 0.3rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.timeline-date {
    margin: 0;
    color: var(--gold-light);
    font-weight: 600;
}

/* ============ KLASTER ============ */
.klaster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.klaster-card {
    background-color: var(--navy-darkest);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.klaster-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.klaster-card .icon-tile { margin-bottom: 1.25rem; }

.klaster-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
}

.klaster-card p { margin: 0; color: var(--ink-muted); }

/* ============ MITRA ============ */
.logo-gallery {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem 2.5rem;
    align-items: center;
    justify-items: center;
}

.logo-gallery img {
    width: 100%;
    height: 72px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-gallery img[alt="Logo Restock"],
.logo-gallery img[alt="Restock.ID"],
.logo-gallery img[alt="Verse"],
.logo-gallery img[alt="Jakarta Ventura"],
.logo-gallery img[alt="Bank Syariah Indonesia"] {
    transform: scale(2);
}

.logo-gallery img:hover {
    transform: scale(1.05);
}

.logo-gallery img[alt="Logo Restock"]:hover,
.logo-gallery img[alt="Restock.ID"]:hover,
.logo-gallery img[alt="Verse"]:hover,
.logo-gallery img[alt="Jakarta Ventura"]:hover,
.logo-gallery img[alt="Bank Syariah Indonesia"]:hover {
    transform: scale(2.1);
}

/* ============ FINAL CTA ============ */
.section-cta {
    position: relative;
    background-color: var(--navy-darkest);
    overflow: hidden;
}

.cta-card {
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-darkest) 100%);
    border: 1px solid var(--border-soft);
    border-top: 4px solid var(--gold);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-card h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-light);
}

.cta-lead {
    margin: 0 auto 2rem;
    max-width: 560px;
    color: var(--ink-muted);
    font-size: 1.1rem;
}

.cta-register {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-register-label {
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}

.cta-register-link {
    background-color: var(--steel);
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.4rem 1.4rem;
    border-radius: 8px;
}

.cta-contact {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-soft);
}

.cta-contact p { margin: 0; color: var(--ink-muted); }

.cta-contact strong { color: var(--gold-light); }

.cta-banner {
    margin-top: 1.5rem;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: var(--navy-darkest);
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1.1rem 1.5rem;
    border-radius: 10px;
}

/* ============ FOOTER ============ */
.gov-footer { background-color: var(--navy-darkest); }

.footer-skyline { opacity: 0.6; }

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-site {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.footer-copy {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3.5rem 1.5rem 5rem;
        text-align: center;
    }

    .hero-desc { margin-left: auto; margin-right: auto; }
    .button-group { justify-content: center; }
    .hero-logo { order: -1; }
    .hero-logo-card { max-width: 240px; padding: 1.75rem; }

    .diamond-tl, .diamond-br { display: none; }

    .kriteria-grid { grid-template-columns: repeat(2, 1fr); }
    .klaster-grid { grid-template-columns: 1fr; }
    .logo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 1.5rem;
        padding: 1.75rem 1.25rem;
    }
    .logo-gallery img { width: 100%; height: 52px; object-fit: contain; }
}

/* ============ RESPONSIVE — PHONE ============ */
@media (max-width: 480px) {
    .gov-header-inner { padding: 0.6rem 1rem; }
    .kementerian-logo { height: 34px; }
    .kita-umkm { font-size: 0.95rem; }

    .hero-inner { padding: 2.5rem 1.25rem 4rem; }
    .hero-title { font-size: 3.25rem; }

    .btn { display: block; text-align: center; }
    .button-group { flex-direction: column; }

    .kriteria-grid { grid-template-columns: 1fr; }

    .manfaat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .manfaat-item .icon-tile { margin: 0 auto; }

    .cta-card { padding: 2.25rem 1.25rem; }
    .cta-register-link { font-size: 1.2rem; }

    .footer-inner { justify-content: center; }
}
