.hero-informasi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 72px 64px;
    background: url('/img/1.png') center/cover no-repeat;
    flex-wrap: wrap;
}
.hero-informasi .hero-content { max-width: 560px; }
.hero-informasi .hero-image {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
}
.hero-mockup img {
    max-width: 90%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.klasifikasi-section {
    padding: 72px 64px;
    background: #f5f7fb;
}
.klasifikasi-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}
.klasifikasi-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.klasifikasi-header p {
    color: #6b7280;
    line-height: 1.6;
}
.klasifikasi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.klasifikasi-card {
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border-top: 4px solid transparent;
}
.klasifikasi-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: #fff;
}
.klasifikasi-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}
.klasifikasi-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}
.klasifikasi-pertanian {border-top-color: #d2be08; }
.klasifikasi-pertanian .klasifikasi-icon { background: #d2be08; }

.klasifikasi-terbangun { border-top-color: #ff6562; }
.klasifikasi-terbangun .klasifikasi-icon { background: #ff6562; }

.klasifikasi-vegetasi { border-top-color: #4caf50; }
.klasifikasi-vegetasi .klasifikasi-icon { background: #4caf50; }
.info-full-box {
    max-width: 1080px;
    margin: 0 auto 72px;
    padding: 0 64px;
}
.info-header {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}
.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.info-body {
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 16px;
    padding: 28px;
}
.info-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #4338ca;
    margin-bottom: 16px;
}
.info-body ul {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.info-body li {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .hero-informasi { padding: 56px 24px; }
    .klasifikasi-section { padding: 56px 24px; }
    .klasifikasi-row { grid-template-columns: 1fr; }
    .info-full-box { padding: 0 24px; }
    .info-row { grid-template-columns: 1fr; }
}