:root {
    --green: #07862f;
    --green-dark: #075f2d;
    --green-soft: #edf8ef;
    --text: #101820;
    --muted: #64706b;
    --line: #dfe8e3;
    --danger: #d92929;
    --shadow: 0 18px 46px rgba(16, 58, 34, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--text);
    background: #fbfdfc;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 clamp(24px, 5vw, 48px);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #eff2f0;
    backdrop-filter: blur(10px);
}
.brand img { width: 140px; height: auto; }
.logo-text {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.logo-warung {
    color: #101820;
}
.logo-io {
    color: var(--green);
    margin-left: 2px;
}
.top-actions { display: flex; align-items: center; gap: 32px; color: #6b7471; font-size: 11px; }
.support-link, .login-link { display: flex; align-items: center; gap: 8px; transition: color 0.2s ease; }
.support-link span:last-child, .login-link { display: grid; gap: 1px; }
.support-link strong, .login-link strong { color: var(--green); font-size: 12px; font-weight: 700; }
.support-link:hover, .login-link:hover { color: var(--green); }
.top-icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #111;
    border: 2px solid #333;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.divider { width: 1px; height: 32px; background: #dfe5df; }

.page { width: min(1190px, calc(100% - 48px)); margin: 0 auto; }
.intro {
    display: block;
    padding: 48px 8px 32px;
    text-align: center;
}
.intro h1 {
    max-width: 580px;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 0 auto 16px;
}
.intro p { max-width: 520px; margin: 0 auto; color: #4d5a56; font-size: 14px; line-height: 1.7; }

.content-grid {
    display: grid;
    grid-template-columns: 345px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}
.side-column { display: grid; gap: 28px; }
.hero-card {
    min-height: 385px;
    display: grid;
    place-items: end center;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(180deg, #f5fbf6, #eaf7ec);
}
.hero-card img { width: 104%; filter: drop-shadow(0 24px 30px rgba(8, 70, 34, 0.13)); }
.benefit-card {
    padding: 34px 26px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fbfefd, #f4fbf6);
    box-shadow: var(--shadow);
}
.benefit-card h2 { margin-bottom: 30px; color: #064a22; font-size: 20px; line-height: 1.35; }
.benefit-card article { display: flex; gap: 18px; margin-bottom: 26px; align-items: flex-start; }
.benefit-card article img {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 50%;
    background: #e8f6ec;
}
.benefit-card h3 { font-size: 13px; margin-bottom: 7px; }
.benefit-card p { color: #58635f; font-size: 12px; font-weight: 600; line-height: 1.6; }
.benefit-card blockquote {
    margin: 22px 0 18px;
    padding: 24px;
    color: #5b6762;
    border: 1px solid #e2ece6;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.7;
}
.mini-store { width: 230px; margin: 0 auto -8px; }

.partner-form { display: grid; gap: 22px; }
.form-card {
    display: none;
    padding: 28px 28px 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
}
.form-card.active { display: block; animation: fadeUp 0.32s ease both; }
.card-heading { margin-bottom: 25px; }
.card-heading h2 { margin-bottom: 7px; font-size: 20px; }
.card-heading p { color: #66716d; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.form-grid.compact { gap: 20px 24px; }
.field {
    position: relative;
    display: grid;
    gap: 8px;
    color: #202924;
    font-size: 12px;
    font-weight: 800;
}
.field b { color: var(--danger); }
.field.full { grid-column: 1 / -1; }
input, select, textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #dce4df;
    border-radius: 7px;
    color: #1a241f;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
textarea { min-height: 92px; padding-top: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus {
    border-color: #73bd86;
    box-shadow: 0 0 0 4px rgba(7, 134, 47, 0.1);
}
.invalid input, .invalid select, .invalid textarea, input.invalid { border-color: #e24c4c; background: #fffafa; }
.counter { position: absolute; right: 14px; bottom: 12px; color: #7b8581; font-size: 12px; font-weight: 700; }
.time-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-group { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.check-group > b { margin-right: 0; }
.check-group label, .agree { display: inline-flex; align-items: center; gap: 10px; color: #596460; font-size: 12px; font-weight: 700; }
.check-group input, .agree input { width: 16px; height: 16px; min-height: auto; accent-color: var(--green); }

.map-widget {
    position: relative;
    min-height: 280px;
    max-height: 380px;
    overflow: hidden;
    border: 1px solid #dce4df;
    border-radius: 8px;
    background: #f0f0f0;
}
.map-field small { color: #6e7b76; font-size: 11px; font-weight: 700; }

.safe-note {
    display: flex;
    gap: 17px;
    align-items: center;
    margin-top: 28px;
    padding: 19px;
    border-radius: 8px;
    background: linear-gradient(90deg, #edf8ef, #f6fbf8);
}
.safe-note img { width: 40px; height: 40px; padding: 8px; border-radius: 50%; background: #ddf1e3; }
.safe-note div { display: grid; gap: 5px; font-size: 13px; }
.safe-note span { color: #58645f; font-size: 12px; font-weight: 600; }
.agree { margin-top: 26px; }
.finish-panel { text-align: center; padding: 56px 40px; }
.finish-panel img { width: 82px; margin: 0 auto 24px; }
.finish-panel p { max-width: 560px; margin: 14px auto 28px; color: #5b6762; line-height: 1.8; }

.form-message { min-height: 20px; color: var(--danger); font-size: 13px; font-weight: 700; }
.form-message.success { color: var(--green); }
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px 16px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 139px;
    min-height: 49px;
    padding: 0 24px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
}
.btn.primary { color: #fff; background: linear-gradient(135deg, #0b9238, #066d31); box-shadow: 0 10px 24px rgba(7, 134, 47, 0.18); }
.btn.ghost { color: var(--green); background: #fff; border: 1px solid #9bd1aa; }
.hidden { display: none !important; }

.cta-strip {
    display: grid;
    grid-template-columns: 160px 1fr repeat(3, 130px);
    align-items: center;
    gap: 20px;
    min-height: 140px;
    margin: 34px 0 48px;
    padding: 28px 32px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(90deg, #f0faf2, #fbfdfb);
}
.cta-strip > img { align-self: center; width: 140px; height: auto; margin: 0; }
.cta-strip h2 { color: #0b5529; font-size: 19px; line-height: 1.4; font-weight: 800; }
.cta-strip p { margin-top: 7px; color: #4d5a56; font-size: 13px; font-weight: 600; line-height: 1.6; }
.cta-strip article { display: flex; align-items: center; gap: 11px; font-size: 11px; font-weight: 700; color: #4d5a56; }
.cta-strip article img { width: 42px; height: 42px; padding: 9px; border-radius: 50%; background: #fff; }

.footer {
    width: min(1190px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 48px;
    padding: 0 28px 54px;
    color: #1c2822;
}
.footer-brand img { width: 145px; margin-bottom: 18px; }
.footer p, .footer a { display: block; color: #5d6864; font-size: 12px; font-weight: 600; line-height: 1.9; }
.footer h3 { margin-bottom: 16px; font-size: 13px; }
.footer a { margin-bottom: 11px; }
.copyright { grid-column: 1 / -1; text-align: center; color: #9aa39f !important; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
    .content-grid, .cta-strip { grid-template-columns: 1fr; }
    .side-column { grid-template-columns: 1fr 1fr; }
    .cta-strip { grid-template-columns: 120px 1fr repeat(2, 110px); padding: 24px; }
    .cta-strip > img { width: 110px; }
    .cta-strip article:last-child { display: none; }
    .footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .topbar { height: auto; padding: 14px 18px; align-items: flex-start; flex-direction: column; }
    .logo-text { font-size: 20px; }
    .top-actions { width: 100%; justify-content: space-between; gap: 10px; font-size: 10px; }
    .divider { display: none; }
    .page, .footer { width: min(100% - 30px, 1190px); }
    .intro { padding-top: 28px; text-align: center; }
    .intro h1 { font-size: 22px; }
    .side-column, .form-grid, .footer { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .form-card { padding: 18px 16px; }
    .form-actions { gap: 12px; flex-direction: column-reverse; }
    .btn { width: 100%; }
    .check-group { display: grid; align-items: start; }
    .cta-strip { grid-template-columns: 80px 1fr; gap: 12px; padding: 16px; min-height: auto; }
    .cta-strip > img { width: 80px; }
    .cta-strip h2 { font-size: 16px; }
    .cta-strip p { margin-top: 6px; font-size: 11px; }
    .cta-strip article { display: none; }
    .map-widget { min-height: 240px; }
}
