:root{
  --bg:#ffffff;
  --muted:#6b7280;
  --text:#111827;
  --soft:#f6f7f9;
  --border:#e5e7eb;
  --orange:#f97316;
  --orange2:#ea580c;
}

body{
  background:var(--bg);
  color:var(--text);
}

.navbar{
  border-bottom:1px solid var(--border);
}

.brand-mark{
  width:34px;height:34px;border-radius:10px;
  background: var(--orange);
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;font-weight:900;
}

.btn-orange{
  background: var(--orange);
  border-color: var(--orange);
  color:#fff;
  font-weight:700;
}
.btn-orange:hover{
  background: var(--orange2);
  border-color: var(--orange2);
  color:#fff;
}

.btn-outline-orange{
  border-color: var(--orange);
  color: var(--orange);
  font-weight:700;
}
.btn-outline-orange:hover{
  background: var(--orange);
  border-color: var(--orange);
  color:#fff;
}

.hero{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  min-height: 420px;
  background: #111;
}

.hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.10) 100%);
  z-index:1;
}

.hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  z-index:0;
  transform: scale(1.02);
}

.hero-content{
  position:relative;
  z-index:2;
  padding: 48px;
  max-width: 640px;
}

.hero-kicker{
  display:inline-flex;align-items:center;gap:10px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}

.hero-title{
  color:#fff;
  font-weight:900;
  letter-spacing:-.5px;
  margin:16px 0 10px;
  font-size: 44px;
  line-height:1.05;
}

.hero-text{
  color: rgba(255,255,255,.86);
  font-size:16px;
  line-height:1.6;
  margin-bottom:18px;
}

.section{
  padding: 42px 0;
}

.section-alt{
  background: var(--soft);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.card-soft{
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow: 0 12px 28px rgba(16,24,40,.06);
}

.icon-pill{
  width:46px;height:46px;border-radius:14px;
  background: rgba(249,115,22,.12);
  color: var(--orange2);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}

.small-muted{ color: var(--muted); }

.form-card{
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow: 0 14px 34px rgba(16,24,40,.08);
}

.required::after{
  content:" *";
  color: var(--orange2);
  font-weight:800;
}

.badge-orange{
  background: rgba(249,115,22,.10);
  color: var(--orange2);
  border:1px solid rgba(249,115,22,.20);
}

.footer{
  border-top:1px solid var(--border);
  padding:18px 0;
  color: var(--muted);
  font-size:13px;
}