
:root{
  --bg:#f1f2f3;
  --paper:#fff;
  --ink:#171a1e;
  --muted:#70767e;
  --line:#dcdfe2;
  --gold:#e4ad21;
  --gold-soft:#fff6da;
  --dark:#22272e;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 82% 0%,rgba(255,255,255,.95),transparent 30%),
    linear-gradient(180deg,#eef0f2,#f8f9fa 48%,#eef0f2);
  color:var(--ink);
  font-family:Inter,Arial,Helvetica,sans-serif;
}
button,input,textarea{font:inherit}
.topbar{
  height:82px;padding:0 4vw;
  background:rgba(255,255,255,.93);
  border-bottom:1px solid rgba(25,30,35,.08);
  display:flex;align-items:center;justify-content:space-between;
  position:sticky;top:0;z-index:20;
  backdrop-filter:blur(12px);
}
.brand img{
  width:170px;height:50px;object-fit:contain;display:block;
}
.topline{font-size:11px;color:#68707a;font-weight:700}
.shell{max-width:980px;margin:auto;padding:65px 22px 80px}
.hero{margin-bottom:38px;max-width:780px}
.eyebrow{
  display:inline-block;padding:7px 10px;border-radius:999px;
  background:var(--gold-soft);border:1px solid #ecd48c;
  color:#85630f;font-size:10px;font-weight:900;letter-spacing:.14em;
}
.hero h1{
  font-size:clamp(42px,6vw,72px);line-height:.98;letter-spacing:-.05em;
  margin:18px 0 18px;
}
.hero p{font-size:16px;line-height:1.6;color:var(--muted);max-width:650px}
.form{display:grid;gap:16px}
.card{
  position:relative;background:rgba(255,255,255,.97);
  border:1px solid var(--line);border-radius:22px;
  padding:28px;box-shadow:0 18px 50px rgba(24,31,39,.07);
}
.card:before{
  content:"";position:absolute;left:0;top:25px;bottom:25px;width:3px;
  background:linear-gradient(180deg,var(--gold),#f0d67b);
  border-radius:0 3px 3px 0;
}
.step{
  position:absolute;right:22px;top:22px;
  width:34px;height:34px;border-radius:10px;
  background:#f8f2df;color:#8a6816;border:1px solid #ead9a4;
  display:grid;place-items:center;font-size:10px;font-weight:900;
}
.card-head{margin-bottom:24px;padding-right:55px}
.card-head h2{font-size:23px;margin:0 0 5px}
.card-head p{font-size:12px;color:var(--muted);margin:0}
.grid{display:grid;gap:14px}
.two{grid-template-columns:1fr 1fr}
label>span,legend{
  display:block;font-size:11px;font-weight:800;color:#4f5862;margin-bottom:7px;
}
input[type=text],input[type=email],input[type=tel],textarea{
  width:100%;border:1px solid #d6dce2;background:#fafbfc;color:#18202a;
  border-radius:11px;padding:13px 14px;outline:none;
}
textarea{resize:vertical}
input:focus,textarea:focus{
  border-color:#d0a43b;box-shadow:0 0 0 3px rgba(228,173,33,.12);
}
fieldset{border:0;padding:0;margin:0 0 22px}
fieldset:last-child{margin-bottom:0}
legend{margin-bottom:10px}
.choices{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.choice{cursor:pointer}
.choice input{position:absolute;opacity:0;pointer-events:none}
.choice span{
  margin:0;display:flex;align-items:center;gap:10px;
  border:1px solid #d9dee4;background:#fbfcfd;
  border-radius:12px;padding:14px;color:#39434e;font-size:12px;
  transition:.18s ease;
}
.choice b{
  width:27px;height:27px;border-radius:8px;background:#eef1f4;
  display:grid;place-items:center;font-size:10px;color:#6a737d;
}
.choice input:checked + span{
  border-color:#dbb13f;background:#fff9e8;
  box-shadow:0 0 0 2px rgba(228,173,33,.09);
}
.choice input:checked + span b{background:#e2ab21;color:#1c1d1f}
.full{display:block}
.consent{
  background:#fff;border:1px solid var(--line);border-radius:16px;padding:17px 18px;
}
.consent label{display:flex;align-items:flex-start;gap:10px}
.consent input{margin:2px 0 0;accent-color:#d8a41d}
.consent span{margin:0;font-size:10px;font-weight:500;line-height:1.5;color:#68717b}
.consent a{color:#3c4651}
.submit-wrap{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  background:#22272e;color:#fff;border-radius:20px;padding:19px 21px;
  position:sticky;bottom:12px;z-index:10;
  box-shadow:0 18px 40px rgba(26,32,39,.18);
}
.submit-wrap small{color:#aeb7c1;font-size:10px}
.submit-wrap button{
  border:0;border-radius:12px;padding:13px 16px 13px 18px;
  background:linear-gradient(135deg,#efbd36,#d69f17);
  color:#191b1e;font-weight:900;cursor:pointer;
  display:flex;align-items:center;gap:18px;
}
.submit-wrap button i{font-style:normal;font-size:18px}
.submit-wrap button:disabled{opacity:.6;cursor:wait}
.toast{
  position:fixed;right:22px;bottom:22px;z-index:100;
  max-width:360px;background:#22272e;color:#fff;border-radius:13px;
  padding:13px 15px;font-size:11px;box-shadow:0 18px 50px rgba(0,0,0,.18);
  opacity:0;transform:translateY(12px);pointer-events:none;transition:.25s ease;
  border-left:3px solid var(--gold);
}
.toast.show{opacity:1;transform:translateY(0)}
.toast.error{border-left-color:#d95e5e}
footer{
  background:#22272e;color:#aeb5bd;padding:24px 4vw;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  font-size:10px;
}
footer>span:first-child{color:#fff;font-weight:900;font-size:14px}
footer a{color:#d9b44d;text-decoration:none}
.hp{position:absolute!important;left:-9999px!important;opacity:0!important}
@media(max-width:700px){
  .topbar{height:66px;padding:0 14px}
  .brand img{width:125px;height:38px}
  .topline{display:none}
  .shell{padding:32px 12px 45px}
  .hero{margin-bottom:22px}
  .hero h1{font-size:39px}
  .hero p{font-size:14px}
  .card{padding:20px 15px;border-radius:17px}
  .step{right:14px;top:14px}
  .card-head{padding-right:45px}
  .card-head h2{font-size:19px}
  .two,.choices{grid-template-columns:1fr}
  input[type=text],input[type=email],input[type=tel],textarea{font-size:16px;min-height:46px}
  .submit-wrap{
    bottom:7px;padding:12px 13px;border-radius:15px;
    flex-direction:column;align-items:stretch;
  }
  .submit-wrap>div{display:none}
  .submit-wrap button{width:100%;justify-content:space-between}
  footer{flex-direction:column;align-items:flex-start}
  .toast{left:12px;right:12px;bottom:12px;max-width:none}
}


/* V2 conditional fields + transparent logo */
.brand img{
  object-fit:contain;
  background:transparent;
}
.conditional{
  margin-top:16px;
  padding:16px;
  border:1px solid #e0e3e6;
  background:#f8f9fa;
  border-radius:14px;
}
.hidden{display:none!important}
.hint{
  display:block;
  margin-top:7px;
  font-size:9px;
  color:#838b94;
}
input[type=file]{
  width:100%;
  border:1px dashed #d1d7de;
  background:#fff;
  border-radius:11px;
  padding:12px;
  color:#59636d;
}
.conditional-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:15px;
  margin-bottom:13px;
}
.conditional-head h3{
  margin:0 0 3px;
  font-size:16px;
}
.conditional-head p{
  margin:0;
  font-size:10px;
  color:#7a828c;
}
.mini-btn{
  border:1px solid #e2c46d;
  background:#fff8e4;
  color:#765711;
  border-radius:9px;
  padding:8px 10px;
  font-size:10px;
  font-weight:900;
  cursor:pointer;
}
.repeat-list{
  display:grid;
  gap:10px;
}
.repeat-row{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1.4fr auto;
  gap:9px;
  align-items:start;
  padding:12px;
  background:#fff;
  border:1px solid #dfe3e7;
  border-radius:12px;
}
.repeat-row.service-row{
  grid-template-columns:1fr 1.6fr auto;
}
.repeat-row input,
.repeat-row textarea{
  margin:0;
}
.remove-repeat{
  border:0;
  background:#fff0f0;
  color:#b94e4e;
  border-radius:9px;
  width:34px;
  height:34px;
  cursor:pointer;
  font-weight:900;
}

@media(max-width:700px){
  .conditional{padding:13px}
  .conditional-head{
    flex-direction:column;
    align-items:stretch;
  }
  .mini-btn{width:100%}
  .repeat-row,
  .repeat-row.service-row{
    grid-template-columns:1fr;
  }
  .remove-repeat{
    width:100%;
    height:36px;
  }
}
