:root{
  --bg:#0b1220;
  --bg2:#0f1a30;
  --card:#0f1b33;
  --card2:#111f3b;
  --txt:#e9f1ff;
  --mut:#b5c3dc;
  --acc:#35d0ff;
  --line:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(53,208,255,.10), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(90,126,255,.10), transparent 55%),
    linear-gradient(180deg,#0a1223,#0b1220);
  color:var(--txt);
}

.wrap{max-width:1120px;margin:0 auto;padding:26px;}
body.started .wrap{padding-top:18px;}
body.started #landing{display:none !important;}
body.started .wizard{margin-top:0;}

h1{margin:0 0 8px;font-size:28px}
p{margin:0 0 14px;color:var(--mut)}
.note{margin-top:10px;color:var(--mut);font-size:13px}

a{color:var(--acc);text-decoration:none}
a:hover{text-decoration:underline}

.btn{
  border:1px solid rgba(255,255,255,.12);
  background:transparent;
  color:var(--txt);
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
}
.btn.primary{
  background:var(--acc);
  border-color:transparent;
  color:#06101f;
  font-weight:700;
}

.hidden{display:none !important;}

.wizard{margin-top:12px}

.steps{display:flex;gap:10px;margin:16px 0}
.step{
  flex:1;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  color:var(--mut);
  text-align:center;
}
.step.active{color:var(--txt);border-color:rgba(53,208,255,.5)}

.panel{
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(16,26,48,.55);
}

.grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
label{display:flex;flex-direction:column;gap:6px;font-size:13px;color:var(--mut)}
input,select{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:#0b142a;
  color:var(--txt);
}
input[type="checkbox"]{accent-color: var(--acc);}

.check{flex-direction:row;align-items:center;gap:10px}
.actions{display:flex;gap:10px;justify-content:flex-end;margin-top:14px}

.card{
  padding:14px;
  border-radius:14px;
  background:rgba(11,20,42,.7);
  border:1px solid rgba(255,255,255,.08);
}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.k{color:var(--mut);font-size:12px}
.v{font-size:22px;font-weight:800}
.list{margin:10px 0 0;padding-left:18px}

.dropdown{position:relative}
.dropdown .opt{
  padding:10px 12px;
  border-radius:10px;
  background:#0b142a;
  border:1px solid rgba(255,255,255,.08);
  margin-top:6px;
  cursor:pointer;
}
.dropdown .opt:hover{outline:1px solid rgba(53,208,255,.5)}

.badge{
  display:inline-block;
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color:var(--mut)
}
hr{border:0;border-top:1px solid rgba(255,255,255,.08);margin:12px 0}
@media(max-width:760px){.grid,.row{grid-template-columns:1fr}}

/* ===== Landing ===== */
.landing{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:start;
  margin-bottom:18px;
}
@media (max-width: 920px){.landing{grid-template-columns:1fr;gap:14px}}

.brand{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.brand-logo{
  height:46px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.25));
}

.landing-left h1{margin:0 0 10px;font-size:30px;line-height:1.15}
@media (max-width: 520px){.landing-left h1{font-size:26px}}

.hero-list{margin:14px 0 0;padding-left:18px;color:var(--mut)}
.hero-list li{margin:6px 0}

.start-card{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
  backdrop-filter: blur(10px);
}
.start-title{font-size:18px;font-weight:800;margin-bottom:6px}
.start-sub{color:var(--mut);margin-bottom:14px}
.start-card .btn{width:100%;padding:12px 14px;border-radius:14px}
.start-foot{color:var(--mut);font-size:12px;margin-top:10px}

/* ===== Nice checkboxes (contact + GDPR) ===== */
.chk{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  user-select:none;
  line-height:1.25;
}

.chk input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.chk__box{
  width:20px;
  height:20px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.15s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  flex:0 0 20px;
}

.chk__box::after{
  content:"";
  width:11px;
  height:7px;
  border-left:2.6px solid transparent;
  border-bottom:2.6px solid transparent;
  transform:rotate(-45deg);
  opacity:0;
  transition:.15s ease;
}

.chk input:checked + .chk__box{
  border-color:rgba(53,208,255,.70);
  background:rgba(53,208,255,.16);
}
.chk input:checked + .chk__box::after{
  border-left-color:rgba(53,208,255,.95);
  border-bottom-color:rgba(53,208,255,.95);
  opacity:1;
}

.chk:hover .chk__box{border-color:rgba(255,255,255,.32)}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  transition:.15s ease;
}
.pill:hover{
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
}
.pill:has(input:checked){
  border-color:rgba(53,208,255,.34);
  background:rgba(53,208,255,.07);
}

.contact-prefs{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}

.chk--gdpr{
  grid-column:1 / -1;
  align-items:flex-start;
  gap:12px;
}
.chk--gdpr .chk__box{margin-top:2px;}

.hint{color:var(--mut);font-size:12px;margin-top:8px}
.req{color:var(--acc);font-weight:800}

/* ===== Footer ===== */
.footer{margin-top:18px;padding:14px 0;color:var(--mut)}
.footer-inner{
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:flex-end;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.footer-name{font-weight:800;color:var(--txt)}
.footer-meta{font-size:12px;margin-top:4px}
.footer-links{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.footer-links a{color:var(--acc)}
@media (max-width: 700px){.footer-inner{flex-direction:column;align-items:flex-start}}
