:root{
  --bg:#1f2937;
  --ink:#0b1220;
  --muted:#6b7280;
  --card:#ffffff;
  --accent:#d0612c; /* orange */
  --accent2:#0ea5e9;
  --radius:18px;
  --shadow: 0 16px 40px rgba(0,0,0,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#111827;
  background: radial-gradient(1200px 600px at 20% 10%, #334155 0%, #111827 55%, #0b1220 100%);
}

a{color:inherit; text-decoration:none}
.container{width:min(1160px, 92vw); margin:0 auto}
.small{font-size:.92rem;color:rgba(255,255,255,.78)}
.pill{display:inline-flex; gap:.5rem; align-items:center; padding:.45rem .7rem; border-radius:999px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.9)}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(9,16,28,.62);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px; font-weight:800; color:#fff;
  letter-spacing:.2px;
}
.logo{
  width:42px;height:42px;border-radius:12px;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  box-shadow: 0 12px 30px rgba(208,97,44,.35);
  display:grid; place-items:center; color:#111827; font-weight:900;
}
.brand span{font-size:1.1rem}
.navlinks{display:flex; gap:20px; align-items:center; flex-wrap:wrap}
.navlinks a{color:rgba(255,255,255,.86); font-weight:600; font-size:.95rem}
.navlinks a:hover{color:#fff}
.actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.iconbtn{
  display:inline-flex; gap:.5rem; align-items:center; justify-content:center;
  padding:.55rem .75rem;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.08);
}
.iconbtn:hover{background: rgba(255,255,255,.12)}

main{padding:28px 0 70px}

.heroShell{
  border-radius: 26px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.heroTop{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 520px;
}
.heroMedia{
  position:relative;
  background: #0b1220;
}
.heroMedia img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
.heroPanel{
  padding:52px 44px;
  background: linear-gradient(180deg, rgba(208,97,44,1) 0%, rgba(185,79,32,1) 100%);
  color:#fff;
  position:relative;
}
.heroPanel:before{
  content:"";
  position:absolute;
  left:-84px; top:-60px;
  width:180px; height:180px;
  background: rgba(255,255,255,.12);
  border-radius: 0 0 180px 0;
  transform: rotate(14deg);
}
.h1{
  font-size: 3rem;
  line-height: 1.05;
  margin:0 0 22px 0;
  letter-spacing:.2px;
}
.h1 .quote{opacity:.95}
.heroBullets{display:grid; gap:12px; margin: 16px 0 22px}
.bullet{
  display:flex; gap:10px; align-items:flex-start;
  font-weight:650;
}
.check{
  width:22px;height:22px;border-radius:999px;
  background: rgba(16,185,129,.92);
  display:grid; place-items:center;
  flex:0 0 auto;
  box-shadow: 0 10px 18px rgba(16,185,129,.25);
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight:800;
  border: 1px solid rgba(255,255,255,.18);
  cursor:pointer;
  transition: transform .08s ease, background .15s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btnPrimary{
  background: rgba(15,23,42,.92);
  color:#fff;
  box-shadow: 0 14px 26px rgba(0,0,0,.22);
}
.btnPrimary:hover{background: rgba(15,23,42,1)}
.btnGhost{
  background: rgba(255,255,255,.12);
  color:#fff;
}
.btnGhost:hover{background: rgba(255,255,255,.18)}
.heroNote{margin-top:14px; font-weight:650; opacity:.92}

.section{
  margin-top:34px;
  color: rgba(255,255,255,.92);
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
.card h3{margin:4px 0 8px 0; color:#fff}
.card p{margin:0; color: rgba(255,255,255,.78); line-height:1.45}
.kpis{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.kpis .pill{background: rgba(0,0,0,.18)}

.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
  margin: 10px 0 14px 0;
}
.sectionTitle h2{
  margin:0;
  font-size: 1.6rem;
  color:#fff;
}
.sectionTitle .hint{color: rgba(255,255,255,.7); font-weight:600}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.list{
  margin:0; padding-left:18px;
  color: rgba(255,255,255,.78);
  line-height:1.6;
}
.steps{
  display:grid; gap:10px;
}
.step{
  display:flex; gap:12px; align-items:flex-start;
}
.stepNum{
  width:34px;height:34px;border-radius:12px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  display:grid; place-items:center;
  color:#fff; font-weight:900;
}
.step b{color:#fff}
.formShell{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
}
form{display:grid; gap:12px}
label{color: rgba(255,255,255,.84); font-weight:650; font-size:.95rem}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(9,16,28,.45);
  color:#fff;
  outline:none;
}
input::placeholder, textarea::placeholder{color: rgba(255,255,255,.55)}
textarea{min-height:110px; resize:vertical}
.formRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.footer{
  margin-top:46px;
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.74);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.footer a{color: rgba(255,255,255,.86)}
.footer a:hover{color:#fff}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius: 14px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}

.notice{
  color: rgba(255,255,255,.78);
  line-height:1.6;
}
.notice h1,.notice h2,.notice h3{color:#fff}
.notice .mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

@media (max-width: 980px){
  .heroTop{grid-template-columns: 1fr}
  .heroPanel{padding:34px 22px}
  .h1{font-size: 2.35rem}
  .grid3{grid-template-columns: 1fr}
  .twoCol{grid-template-columns: 1fr}
  .formRow{grid-template-columns: 1fr}
  .navlinks{display:none}
}
