:root {
    --umkm-green: #2d8a65;
    --umkm-dark: #1c4232;
    --umkm-accent: #ffb347;
    --umkm-bg: #f5fbf8;
    --text-dark: #1f2a37;
    --text-muted: #5f6b7c;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--umkm-bg);
    color: var(--text-dark);
}

.umkm-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(8px);
}

.umkm-nav .container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--umkm-green), var(--umkm-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 12px 30px rgba(45, 138, 101, 0.25);
}

.nav-links {
    display: flex;
    gap: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-umkm {
    background: linear-gradient(120deg, var(--umkm-dark), var(--umkm-green));
    color: white;
    padding: 100px 0 70px;
}

.hero-umkm .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.hero-umkm h1 {
    margin: 0 0 20px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.hero-umkm p {
    margin: 0 0 20px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
}

.stat-card {
    background: rgba(255,255,255,0.18);
    padding: 18px;
    border-radius: 18px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.umkm-content {
    max-width: 1200px;
    margin: -40px auto 60px;
    padding: 0 24px;
}

.section-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(21, 61, 45, 0.08);
    margin-bottom: 28px;
}

.section-card h2 {
    margin-top: 0;
}

.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.filter-chip {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
    font-weight: 600;
    background: white;
    color: var(--text-muted);
}

.filter-chip.active {
    background: var(--umkm-green);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(45, 138, 101, 0.25);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.umkm-card {
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    background: white;
    box-shadow: 0 18px 45px rgba(21, 55, 40, 0.06);
    display: flex;
    flex-direction: column;
}

.umkm-photo {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.umkm-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(45, 138, 101, 0.12);
    color: var(--umkm-dark);
    font-weight: 600;
}

.contact-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info i {
    color: var(--umkm-green);
    margin-right: 8px;
}

.potensi-card {
    background: var(--umkm-bg);
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.04);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-belum { background: #fee2e2; color: #b91c1c; }
.status-sedang { background: #fef3c7; color: #b45309; }
.status-sudah { background: #dcfce7; color: #166534; }

.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 30px 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section-card {
        padding: 24px;
    }
}

