*{box-sizing:border-box}
:root{
  --bg:#f4f2f6;
  --card:#ffffff;
  --text:#241b2f;
  --muted:#6f667b;
  --line:#e7deee;
  --accent:#7f5aa8;
  --accent-soft:#f1e9f8;
  --success:#ecfdf3;
  --error:#fef3f2;
}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:linear-gradient(180deg,#f7f5f8 0%,#f2edf6 100%);
  color:var(--text);
}
.layout{
  min-height:100vh;
  padding:32px 16px 60px;
}
.card{
  max-width:760px;
  margin:0 auto;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:26px;
  padding:24px;
  box-shadow:0 20px 56px rgba(40,20,60,.08);
}
.progress{
  height:10px;
  background:#ece4f4;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:24px;
}
.progress > div{
  width:10%;
  height:100%;
  background:linear-gradient(90deg,#b79ad4,#7f5aa8);
  transition:width .25s ease;
}
.step{display:none}
.step.active{display:block}
.step-number{
  width:34px;
  height:34px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:12px;
}
h1,h2{
  margin:0 0 12px;
  line-height:1.15;
}
h1{font-size:34px}
h2{font-size:29px}
.intro{
  margin:0 0 22px;
  color:var(--muted);
}
.fields{margin-bottom:18px}
.field{
  display:grid;
  gap:8px;
  margin-bottom:16px;
}
label{
  font-size:14px;
  font-weight:700;
}
input[type="email"],input[type="text"],select,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  background:#fff;
}
textarea{
  min-height:120px;
  resize:vertical;
}
.options{
  display:grid;
  gap:12px;
}
.option{
  width:100%;
  text-align:left;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:18px;
  font:inherit;
  cursor:pointer;
  transition:.18s ease;
}
.option small{
  color:var(--muted);
  font-size:13px;
}
.option:hover,.option.selected{
  border-color:var(--accent);
  background:#f8f3fc;
  transform:translateY(-1px);
}
.checkbox-list{
  display:grid;
  gap:10px;
}
.checkbox-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  background:#fff;
  line-height:1.5;
}
.actions{
  display:flex;
  gap:12px;
  margin-top:24px;
  flex-wrap:wrap;
}
.actions.end{justify-content:flex-end}
.actions.between{justify-content:space-between}
.btn{
  border:0;
  border-radius:16px;
  padding:14px 18px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
}
.btn.secondary{
  background:var(--accent-soft);
  color:var(--text);
}
.notice{
  display:none;
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
}
.notice.error{display:block;background:var(--error);color:#b42318}
.notice.success{display:block;background:var(--success);color:#027a48}
.global-notice{
  margin:0 0 18px;
}
.option-title{
  font-size:14px;
  font-weight:800;
  color:var(--muted);
  margin:6px 0 10px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.offer-hero{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:16px;
  align-items:center;
  margin-bottom:18px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fbf8fe;
}
.offer-image{
  min-height:110px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:var(--accent);
  background:linear-gradient(135deg,#efe7f7,#dbc8ee);
}
.offer-kicker{
  font-size:13px;
  font-weight:800;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:8px;
}
.hidden{display:none!important}
@media (max-width:640px){
  h1{font-size:29px}
  h2{font-size:24px}
  .offer-hero{grid-template-columns:1fr}
}
