
:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0b1220;
  --muted: #5b6475;
  --border: #e6e8ee;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --focus: 0 0 0 4px rgba(59, 130, 246, 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: var(--text);
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 45%, #ffffff 100%);
}

a{color:inherit}
a:hover{opacity:0.9}
small{color:var(--muted)}
.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 255, 0.7);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand img{width:170px; height:auto; color:#0b1220}
.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
}
.navlinks a{
  text-decoration:none;
  color: var(--muted);
  font-weight:600;
  font-size:14px;
}
.navlinks a:hover{color:var(--text)}
.menuBtn{
  display:none;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
  cursor:pointer;
}
.menuPanel{
  display:none;
  padding:0 0 14px 0;
}
.menuPanel a{
  display:block;
  padding:10px 0;
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
}

.hero{
  padding:52px 0 24px 0;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:26px;
  align-items:stretch;
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.heroCard{
  padding:30px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background:#fff;
  font-weight:700;
  font-size:13px;
}
.h1{
  margin:14px 0 10px 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lede{
  margin:0 0 18px 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}
.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin:18px 0 10px 0;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid var(--border);
  background:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
}
.btnPrimary{
  border-color:#1d4ed8;
  background:#1d4ed8;
  color:#fff;
}
.btnSecondary{
  background:#ffffff;
}
.btn:focus{outline:none; box-shadow: var(--focus)}
.metaRow{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
}

.sideCard{
  padding:22px;
}
.kpi{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius: var(--radius-sm);
  border:1px solid var(--border);
  background:#fff;
  margin-bottom:12px;
}
.kpi strong{display:block; font-size:14px}
.kpi span{display:block; font-size:13px; color:var(--muted); line-height:1.4}
.icon{
  width:34px; height:34px;
  border-radius:12px;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  background: #f8fafc;
  flex: 0 0 auto;
}

.section{
  padding: 26px 0;
}
.section h2{
  margin:0 0 10px 0;
  font-size: 24px;
  letter-spacing:-0.01em;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  padding:18px;
}
.feature h3{margin:10px 0 6px 0; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}

.notice{
  border-radius: var(--radius);
  border:1px dashed #c7cde0;
  background: rgba(255,255,255,0.75);
  padding:18px;
  color: var(--muted);
  line-height:1.6;
  font-size: 13px;
}

.footer{
  padding: 22px 0 34px 0;
  border-top:1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.footerGrid{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.footer a{color:var(--muted); text-decoration:none; font-weight:700}
.footer a:hover{color:var(--text)}
.disclaimer{
  max-width: 820px;
  margin-top: 10px;
  line-height: 1.6;
}

.formWrap{padding: 26px 0 42px 0;}
.formCard{padding: 22px;}
.stepper{
  display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px;
}
.stepDot{
  height:10px; width:10px; border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
}
.stepDot.active{background:#1d4ed8; border-color:#1d4ed8}
.stepTitle{display:flex; justify-content:space-between; gap:14px; align-items:center; margin-bottom:12px}
.stepTitle h1{margin:0; font-size:22px}
.stepTitle .typePill{
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
  font-size: 13px;
  color: var(--muted);
  background:#fff;
}

.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.field{margin-bottom:12px}
label{display:block; font-weight:800; font-size:13px; margin:0 0 6px 0}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  font-size: 15px;
  background:#fff;
}
input:focus, select:focus, textarea:focus{outline:none; box-shadow: var(--focus); border-color:#93c5fd}
.helper{margin-top:6px; color:var(--muted); font-size:12.5px; line-height:1.5}
.error{margin-top:6px; color:#b91c1c; font-size:12.5px; font-weight:800; display:none}

.actions{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top: 16px;
  flex-wrap:wrap;
}
.hr{
  height:1px; background: var(--border); margin: 14px 0;
}
.checkboxRow{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px;
  border:1px solid var(--border);
  border-radius: 14px;
  background:#fff;
}
.checkboxRow input{width:auto; margin-top:3px}
.consentText{
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}
.consentText a{color:#1d4ed8; font-weight:800; text-decoration:none}
.consentText a:hover{text-decoration:underline}
.miniNote{font-size:12.5px; color:var(--muted); line-height:1.55}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background:#0b1220;
  color:#fff;
  padding:12px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display:none;
  width:min(720px, 92vw);
  font-size: 13px;
  line-height:1.4;
}
.toast a{color:#93c5fd; font-weight:800; text-decoration:none}
.toast a:hover{text-decoration:underline}

@media (max-width: 860px){
  .heroGrid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .grid3{grid-template-columns:1fr}
}

@media (max-width: 600px){
  .navlinks{display:none}
  .menuBtn{display:inline-flex}
  .menuPanel{display:none}
  .row{grid-template-columns:1fr}
  .h1{font-size:32px}
}


/* CQ consumer-only actions fix */
.actions{align-items:center}

/* Step label nowrap fix */
.stepLabel {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Step badge sizing fix */
.stepBadge{
  width: auto;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
