
:root{
  --bg:#0f172a;        /* slate-900 */
  --bg-soft:#111827;   /* gray-900 */
  --text:#e5e7eb;      /* gray-200 */
  --muted:#9ca3af;     /* gray-400 */
  --accent:#f59e0b;    /* amber-500 (construction yellow) */
  --card:#1f2937;      /* gray-800 */
  --link:#fbbf24;      /* amber-400 */
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;line-height:1.6}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.navbar{position:sticky;top:0;background:rgba(17,24,39,.85);backdrop-filter:saturate(180%) blur(8px);border-bottom:1px solid #374151;z-index:10}
.navbar .inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px;font-weight:700;font-size:1.05rem;color:#fff}
.brand img{height:36px;width:auto;filter:drop-shadow(0 2px 4px rgba(0,0,0,.35))}
.navlinks{display:flex;gap:20px;font-weight:600}
.btn{display:inline-block;background:var(--accent);color:#111827;padding:10px 16px;border-radius:10px;font-weight:700;box-shadow:0 4px 14px rgba(245,158,11,.25)}
.btn:hover{transform:translateY(-1px)}
.hero{background:linear-gradient(180deg, rgba(245,158,11,.12), rgba(17,24,39,0)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;min-height:58vh;display:flex;align-items:center;border-bottom:1px solid #374151}
.hero .content{padding:64px 0}
.hero h1{font-size:2.4rem;line-height:1.2;margin:0 0 10px;color:#fff}
.hero p{max-width:780px;font-size:1.075rem;color:#e9e9e9}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:var(--card);border:1px solid #374151;border-radius:16px;padding:18px;box-shadow:0 10px 24px rgba(0,0,0,.22)}
.card h3{margin:4px 0 8px}
.section{padding:56px 0}
.section h2{font-size:1.8rem;margin:0 0 16px}
.badge{display:inline-block;background:rgba(245,158,11,.18);color:#fde68a;border:1px solid rgba(245,158,11,.45);padding:4px 10px;border-radius:999px;font-size:.85rem;font-weight:700}
.footer{border-top:1px solid #374151;padding:24px 0;color:var(--muted);background:var(--bg-soft)}
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:24px}
input,textarea{width:100%;padding:12px 14px;border-radius:12px;background:#0b1220;border:1px solid #263045;color:#e5e7eb}
label{font-weight:600;font-size:.95rem;margin-bottom:8px;display:block}
.form-group{margin-bottom:14px}
@media(max-width:960px){
  .grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .navlinks{gap:12px}
  .hero h1{font-size:2rem}
}
