/* Ubukule Styling */
:root {
  --bg: #0e1a12;
  --card: #111e17;
  --muted: #9bb5a7;
  --primary: #006400;
  --accent: #C9A227;
  --text: #e7f2ec;
  --text-dim: #cfe0d7;
  --error: #ff7979;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: var(--text); background: var(--bg); }
.hero { position: relative; min-height: 70vh; background: url('assets/hero.svg') center/cover no-repeat;
  display:flex; align-items:center; justify-content:center; text-align:center; padding: 4rem 1rem; }
.hero .overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0.4), rgba(14,26,18,0.75)); }
.nav { position:absolute; top:0; left:0; right:0; display:flex; align-items:center; justify-content:space-between; padding: 1rem 2rem; z-index: 2; }
.brand { display:flex; align-items:center; gap:.75rem; font-weight:700; letter-spacing:.5px; }
.logo { width:36px; height:36px; }
.nav .cta { background:var(--primary); color:white; text-decoration:none; padding:.6rem 1rem; border-radius:999px; font-weight:600; }
.hero-content { position:relative; z-index:2; max-width: 900px; }
.hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); margin: 0 0 .75rem; }
.hero p { color: var(--text-dim); margin: 0 0 1rem; font-size: 1.1rem; }
.benefits { list-style: none; padding:0; margin:0 0 1.5rem; display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; color:var(--text-dim); }
.benefits li::before { content:"✓ "; color: var(--accent); }
.container { max-width: 980px; margin: -3rem auto 2rem; padding: 0 1rem; position: relative; z-index: 5; }
.card { background: var(--card); border:1px solid #1f2a24; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); padding: 1.25rem; }
.steps { display:flex; gap:.5rem; overflow:auto; scrollbar-width:none; }
.step { background:#0a1611; border:1px solid #1b2a22; padding:.5rem .75rem; border-radius: 999px; color:var(--muted); display:flex; align-items:center; gap:.5rem; font-weight:600; white-space:nowrap; }
.step span { background: var(--primary); color:white; width:24px; height:24px; display:grid; place-items:center; border-radius:999px; font-size:.85rem; font-weight:700; }
.step.active { color:white; border-color: var(--primary); }
.progress { background:#0b1712; border:1px solid #1b2a22; border-radius:999px; height: 8px; margin: .9rem 0 1rem; overflow:hidden; }
.bar { background: linear-gradient(90deg, var(--primary), var(--accent)); height: 100%; width: 20%; transition: width .35s ease; }
.form-step { display:none; }
.form-step.active { display:block; }
.grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:1rem; }
.grid .full { grid-column:1/-1; }
label span { display:block; margin-bottom:.4rem; color: var(--text-dim); font-size:.95rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="url"], select, textarea {
  width:100%; padding:.85rem 1rem; border-radius:12px; border:1px solid #22352b; background:#0a1611; color: var(--text);
}
textarea { resize: vertical; }
input[type="file"] { background: transparent; color: var(--text-dim); border:none; padding:.25rem 0; }
.hidden { display:none !important; }
.actions { display:flex; justify-content: flex-end; gap:.75rem; margin-top:1rem; }
.btn { background: var(--primary); color:white; border:none; padding:.85rem 1.2rem; border-radius: 12px; font-weight:700; cursor:pointer; }
.btn.big { padding: 1rem 1.4rem; font-size:1.05rem; }
.btn.ghost { background: transparent; border:1px solid #274038; color: var(--text); }
.btn.small { padding:.55rem .9rem; font-size:.9rem; }
.note { color: var(--text-dim); font-size:.95rem; line-height:1.5; }
.success { text-align:center; padding:2rem 1rem; }
.share { margin-top:1rem; }
.foot { text-align:center; color:var(--muted); font-size:.9rem; padding: 2rem 1rem 3rem; }
@media (max-width: 720px) { .grid { grid-template-columns: 1fr; } }
