:root {
    --primary: #1d5a1a; --primary-dark: #0f3015; --accent-red: #c62828;
    --text-dark: #000; --text-muted: #536b58; --bg-canvas: #ecefe9;
    --field-bg: #f7fbf7; --field-border: #dbe3db;
}
* { box-sizing: border-box; }
body {
    margin: 0; background: var(--bg-canvas); color: var(--text-dark);
    font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif; font-size: 15px;
}
.topbar {
    position: sticky; top: 0; z-index: 5; color: #fff; padding: 12px 16px;
    background: rgba(15, 48, 21, .95); backdrop-filter: blur(12px);
    display: flex; align-items: center; gap: 10px;
}
.topbar img { height: 34px; }
.topbar b { font-family: 'Outfit', sans-serif; font-size: 15px; display: block; }
.topbar small { font-size: 11px; opacity: .75; }
.wrap { max-width: 520px; margin: 0 auto; padding: 16px; }
.card {
    background: #fff; border: 1px solid var(--field-border); border-radius: 14px;
    padding: 16px; margin-bottom: 14px; box-shadow: 0 3px 14px rgba(15, 48, 21, .07);
}
h2 { font-family: 'Outfit', sans-serif; font-size: 17px; margin: 0 0 10px; color: var(--primary-dark); }
label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin: 12px 0 4px; }
input, select, textarea {
    width: 100%; border: 1.5px solid var(--field-border); border-radius: 9px;
    padding: 11px 12px; font-size: 15px; background: var(--field-bg); font-family: inherit;
}
input:focus, select:focus, textarea:focus { outline: 2px solid #cfe3c8; border-color: var(--primary); }
.btn {
    display: block; width: 100%; border: 0; background: var(--primary); color: #fff;
    font-weight: 800; font-size: 15px; border-radius: 10px; padding: 13px; margin-top: 14px;
    font-family: inherit; cursor: pointer;
}
.btn:disabled { opacity: .55; }
.btn.ghost { background: #fff; color: var(--primary); border: 1.5px solid var(--primary); }
.error { color: var(--accent-red); font-size: 13px; margin-top: 10px; min-height: 18px; }
.muted { color: var(--text-muted); font-size: 12.5px; }
.hidden { display: none !important; }
.steps { display: flex; gap: 6px; margin-bottom: 12px; }
.steps span { flex: 1; height: 4px; border-radius: 3px; background: #d9e3d7; }
.steps .on { background: var(--primary); }
.profile { display: flex; gap: 12px; align-items: center; }
.profile img { width: 62px; height: 78px; object-fit: cover; border-radius: 8px; border: 1px solid var(--field-border); }
.fee-opts { display: flex; gap: 8px; margin-top: 6px; }
.fee-opts button {
    flex: 1; border: 1.5px solid var(--field-border); border-radius: 10px; padding: 10px 6px;
    background: #fff; text-align: center; font-family: inherit; cursor: pointer;
}
.fee-opts button.on { border-color: var(--primary); background: #f0f7ee; outline: 2px solid #d7ead2; }
.fee-opts b { display: block; font-size: 15px; color: var(--primary-dark); }
.fee-opts small { font-size: 10px; color: var(--text-muted); }
.rules { max-height: 180px; overflow-y: auto; font-size: 12.5px; color: #333; background: var(--field-bg); border: 1px solid var(--field-border); border-radius: 10px; padding: 10px 12px; }
.rules li { margin-bottom: 6px; }
.check { display: flex; gap: 9px; align-items: flex-start; margin-top: 10px; font-size: 13.5px; }
.check input { width: auto; margin-top: 2px; }
.chip { display: inline-block; border-radius: 9px; font-size: 11px; font-weight: 700; padding: 3px 9px; }
.chip.ok { background: #dcfce7; color: #166534; }
.chip.warn { background: #fef3c7; color: #92400e; }
.chip.bad { background: #fee2e2; color: #b91c1c; }
.kv { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.kv td { padding: 6px 0; border-top: 1px solid #eef2ed; }
.kv td:first-child { color: var(--text-muted); width: 44%; }
