:root{
  --accent:#7FFF00;
  --accent-dark:#54c800;
  --muted:#666;
  --card-bg:#f9fff2;
  --text:#0b2a0b;
  --shadow:0 8px 25px rgba(0,0,0,0.08);
  --radius:12px;
  --max-width:980px;
}
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: linear-gradient(180deg,#fbfff8 0%,#effff0 100%);
  margin: 0; padding: 36px;
  color:var(--text);
  display:flex; justify-content:center;
}
.wrap {
  width:100%; max-width:var(--max-width);
  background:#fff; border-radius:16px; box-shadow:var(--shadow); overflow:hidden;
}
.header { padding:22px 28px; background:linear-gradient(90deg, rgba(127,255,0,0.06), rgba(90,200,30,0.03)); }
.header h1 { margin:0; font-family:'Poppins',sans-serif; font-size:20px;}
.header p { margin:6px 0 0; color:var(--muted); font-size:14px; }

form { padding:24px 28px; }
.grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px 18px; }
@media(max-width:880px){ .grid { grid-template-columns:1fr; } }

label { display:block; margin-bottom:6px; font-weight:600; font-size:13px; }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width:100%; padding:10px 12px; border-radius:10px; border:1px solid #e6e6e6; font-size:14px; box-sizing:border-box;
}
textarea { min-height:110px; resize:vertical; }

.section-title { margin-top:18px; margin-bottom:10px; display:flex; align-items:center; }
.section-title h3 { margin:0; font-size:13px; text-transform:uppercase; letter-spacing:0.5px; color:#2b4c2b; border-left:4px solid var(--accent); padding-left:10px; }

.radio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:6px; }
@media(max-width:880px){ .radio-grid{ grid-template-columns:1fr; } }
.radio-card { padding:12px; border-radius:10px; background:#fbfff7; border:1px solid rgba(0,0,0,0.06); cursor:pointer; font-weight:700; display:flex; align-items:center; gap:10px; }
.radio-card.active { background:linear-gradient(90deg,var(--accent),var(--accent-dark)); color:#062606; transform:translateY(-3px); box-shadow:0 8px 18px rgba(127,255,0,0.12); }

.fees { margin-top:14px; padding:12px; border-radius:10px; background:linear-gradient(180deg,#fbfff8,#f0fff0); border:1px solid #e7f8d8; display:flex; gap:16px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.fees .left { font-weight:700; color:#163b10; }
.fees .right { font-weight:800; color:#163b10; font-size:18px; }

.muted { color:var(--muted); font-size:13px; }

.submit-row { display:flex; gap:10px; margin-top:18px; align-items:center; flex-wrap:wrap; }
button.primary { background:linear-gradient(135deg,var(--accent),var(--accent-dark)); border:none; padding:12px 18px; border-radius:10px; font-weight:800; color:#052305; cursor:pointer; box-shadow:0 8px 18px rgba(127,255,0,0.16); }
button.secondary { background:#fff; border:1px solid #ddd; padding:10px 14px; border-radius:10px; cursor:pointer; }

#form-msg { margin-left:10px; color:#666; font-weight:600; }

.hidden { display:none !important; }
.thankyou { padding:18px 28px; background:#f6fff1; border-top:1px solid #e6f8d7; text-align:center; }
.thankyou h2 { margin:0; color:#2b6f23; }
