.vcw-wrap{
  --vcw-primary:#83b4da;
  --vcw-secondary:#4d7ba2;
  --vcw-blue-soft:#edf6fc;
  --vcw-blue-pale:#f7fbfe;
  --vcw-blue-border:#d9e8f3;
  --vcw-gold:#d3ad67;
  --vcw-gold-soft:#ead6aa;
  --vcw-text:#607486;
  --vcw-heading:#4d7ba2;
  --vcw-muted:#8595a3;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--vcw-text);
  margin:30px auto;
}

.vcw-shell{
  position:relative;
  isolation:isolate;
  max-width:980px;
  margin:auto;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#fefefe 100%);
  border:1px solid rgba(131,180,218,.28);
  border-radius:26px;
  padding:42px 42px 38px;
  box-shadow:0 18px 48px rgba(69,105,135,.08);
}

.vcw-shell::before,
.vcw-shell::after{
  position:absolute;
  z-index:-1;
  color:var(--vcw-gold);
  font-family:Georgia,serif;
  line-height:1;
  pointer-events:none;
  opacity:.40;
}

.vcw-shell::before{
  content:"✦";
  top:30px;
  right:34px;
  font-size:20px;
}

.vcw-shell::after{
  content:"✦";
  bottom:34px;
  left:30px;
  font-size:14px;
  opacity:.24;
}

.vcw-top{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:flex-start;
}

.vcw-kicker,
.vcw-mini{
  color:var(--vcw-gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:1.75px;
  text-transform:uppercase;
}

.vcw-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.vcw-kicker::before,
.vcw-kicker::after{
  content:"✦";
  color:var(--vcw-gold);
  font-size:10px;
  line-height:1;
  opacity:.82;
}

.vcw-top h2{
  margin:12px 0 10px;
  color:var(--vcw-heading);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4vw,48px);
  font-weight:500;
  line-height:1.08;
  letter-spacing:-.45px;
}

.vcw-top p{
  margin:0;
  max-width:650px;
  color:#768896;
  font-size:16px;
  line-height:1.7;
}

.vcw-progress-meta{
  min-width:110px;
  padding-top:4px;
  text-align:right;
  font-size:13px;
  color:#6f8291;
  font-weight:700;
}

.vcw-progress-meta strong{
  display:block;
  color:var(--vcw-secondary);
  font-size:20px;
  margin-top:3px;
}

.vcw-progress{
  position:relative;
  height:8px;
  margin:30px 0 40px;
  overflow:visible;
  background:#edf3f8;
  border-radius:999px;
  box-shadow:inset 0 1px 2px rgba(55,91,120,.04);
}

.vcw-progress span{
  position:relative;
  display:block;
  width:25%;
  height:100%;
  background:linear-gradient(90deg,#98c2e2 0%,var(--vcw-primary) 58%,#72a8d1 100%);
  border-radius:999px;
  box-shadow:0 2px 7px rgba(90,145,188,.16);
  transition:width .3s ease;
}

.vcw-progress span::after{
  content:"";
  position:absolute;
  top:50%;
  right:-2px;
  width:6px;
  height:6px;
  transform:translateY(-50%);
  border-radius:50%;
  background:var(--vcw-gold-soft);
  box-shadow:0 0 0 3px rgba(234,214,170,.20);
}

.vcw-step{display:none}

.vcw-step.is-active{
  display:block;
  animation:vcwIn .28s ease;
}

.vcw-step > .vcw-mini{
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
  margin-bottom:10px;
  white-space:nowrap;
}

.vcw-step > .vcw-mini::before,
.vcw-step > .vcw-mini::after{
  content:"";
  height:1px;
  flex:1 1 auto;
  background:linear-gradient(90deg,transparent,rgba(211,173,103,.55));
}

.vcw-step > .vcw-mini::after{
  background:linear-gradient(90deg,rgba(211,173,103,.55),transparent);
}

.vcw-step h3{
  margin:9px 0 26px;
  color:var(--vcw-heading);
  font-size:28px;
  line-height:1.25;
  font-weight:650;
}

@keyframes vcwIn{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:none}
}

.vcw-grid{display:grid;gap:18px}
.vcw-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}

.vcw-form label{
  display:block;
  color:#4f6b81;
  font-size:13px;
  font-weight:700;
}

.vcw-form label span{
  color:#8999a6;
  font-weight:500;
}

.vcw-form em{
  color:#bd6a5e;
  font-style:normal;
}

.vcw-form input[type=text],
.vcw-form input[type=tel],
.vcw-form input[type=email],
.vcw-form select,
.vcw-form textarea{
  width:100%;
  box-sizing:border-box;
  margin-top:8px;
  border:1px solid var(--vcw-blue-border);
  background:#fff;
  border-radius:14px;
  padding:14px 15px;
  color:#39586e;
  font:inherit;
  outline:none;
  box-shadow:0 1px 0 rgba(67,109,142,.015);
  transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;
}

.vcw-form input::placeholder,
.vcw-form textarea::placeholder{color:#9aa9b5}

.vcw-form textarea{resize:vertical}

.vcw-form input:hover,
.vcw-form select:hover,
.vcw-form textarea:hover{
  border-color:#bfd8ea;
}

.vcw-form input:focus,
.vcw-form select:focus,
.vcw-form textarea:focus{
  border-color:var(--vcw-primary);
  background:#fff;
  box-shadow:0 0 0 3px rgba(131,180,218,.13);
}

.vcw-choice-title{
  margin:25px 0 12px;
  color:#4f6b81;
  font-size:13px;
  font-weight:700;
}

.vcw-cards{display:grid;gap:12px}
.vcw-cards-3{grid-template-columns:repeat(3,1fr)}
.vcw-cards-4{grid-template-columns:repeat(4,1fr);margin-bottom:24px}

.vcw-choice,
.vcw-service{
  position:relative;
  overflow:hidden;
  border:1px solid #dfeaf2;
  border-radius:16px;
  padding:18px;
  background:#fff;
  cursor:pointer;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background-color .2s ease;
}

.vcw-choice::after,
.vcw-service::after{
  content:"✦";
  position:absolute;
  top:10px;
  right:12px;
  color:var(--vcw-gold);
  font-family:Georgia,serif;
  font-size:8px;
  opacity:0;
  transform:scale(.75);
  transition:opacity .2s ease,transform .2s ease;
}

.vcw-choice:hover,
.vcw-service:hover{
  transform:translateY(-2px);
  border-color:#b7d3e7;
  box-shadow:0 9px 22px rgba(63,105,137,.07);
}

.vcw-choice input,
.vcw-service input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.vcw-choice:has(input:checked),
.vcw-service:has(input:checked){
  border-color:var(--vcw-primary);
  background:linear-gradient(180deg,#fbfdff 0%,#f2f8fc 100%);
  box-shadow:0 0 0 2px rgba(131,180,218,.09);
}

.vcw-choice:has(input:checked)::after,
.vcw-service:has(input:checked)::after{
  opacity:.82;
  transform:scale(1);
}

.vcw-choice span,
.vcw-service-title{
  display:block;
  color:var(--vcw-secondary);
  font-size:15px;
  font-weight:800;
}

.vcw-choice small,
.vcw-service small{
  display:block;
  margin-top:4px;
  color:#7f909d;
  font-size:12px;
  font-weight:500;
  line-height:1.45;
}

.vcw-service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.vcw-service{min-height:76px}

.vcw-other-field{display:none!important;margin-top:20px}
.vcw-other-field.is-visible{display:block!important}

.vcw-privacy-note{
  margin:18px 0;
  padding:14px 16px;
  border:1px solid #e1ebf2;
  border-left:3px solid var(--vcw-gold-soft);
  border-radius:10px;
  background:#f8fbfd;
  color:#687b89;
  font-size:12px;
  line-height:1.6;
}

.vcw-consent{
  display:flex!important;
  gap:10px;
  align-items:flex-start;
  margin-top:18px;
}

.vcw-consent input{
  margin-top:3px;
  accent-color:var(--vcw-primary);
}

.vcw-consent span{
  color:#667b8b;
  font-weight:500;
  line-height:1.55;
}

.vcw-consent a{
  color:var(--vcw-primary);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:2px;
}

.vcw-consent a:hover,
.vcw-consent a:focus{color:var(--vcw-secondary)}

.vcw-actions{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:34px;
}

.vcw-actions button,
.vcw-external-button,
.vcw-call{
  min-height:50px;
  border:0;
  border-radius:14px;
  padding:0 24px;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none!important;
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}

.vcw-back{
  border:1px solid #dfebf3!important;
  background:#f3f7fa;
  color:#587184;
}

.vcw-next,
.vcw-submit{
  margin-left:auto;
  background:linear-gradient(135deg,#92bee0 0%,var(--vcw-primary) 54%,#73a9d2 100%);
  color:#fff;
  box-shadow:0 11px 24px rgba(93,149,191,.18);
}

.vcw-next:hover,
.vcw-submit:hover,
.vcw-call:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(93,149,191,.20);
  filter:saturate(1.03);
}

.vcw-submit{display:none}

.vcw-error{
  display:none;
  margin-top:18px;
  padding:12px 14px;
  border-radius:12px;
  background:#fff6f5;
  color:#99534a;
  font-size:13px;
}

.vcw-error.is-visible{display:block}

.vcw-success{
  position:relative;
  text-align:center;
  padding:35px 10px 10px;
}

.vcw-success-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #d6e8dd;
  background:#f0f8f3;
  color:#4e8c69;
  font-size:30px;
  font-weight:900;
}

.vcw-success h3{
  margin:8px 0 12px;
  color:var(--vcw-heading);
  font-family:Georgia,"Times New Roman",serif;
  font-size:36px;
}

.vcw-success p{
  max-width:620px;
  margin:0 auto 22px;
  line-height:1.7;
}

.vcw-call{
  display:inline-flex;
  align-items:center;
  background:linear-gradient(135deg,#92bee0,var(--vcw-primary));
  color:#fff!important;
}

.vcw-external-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#92bee0,var(--vcw-primary));
  color:#fff!important;
  box-shadow:0 10px 22px rgba(93,149,191,.17);
}

.vcw-hp{
  position:absolute!important;
  left:-9999px!important;
  opacity:0!important;
}

@media(max-width:760px){
  .vcw-wrap{margin:18px auto}
  .vcw-shell{padding:28px 18px 24px;border-radius:20px}
  .vcw-shell::before{top:18px;right:18px;font-size:15px}
  .vcw-shell::after{display:none}
  .vcw-top{display:block}
  .vcw-top h2{font-size:clamp(31px,9vw,40px)}
  .vcw-progress-meta{text-align:left;margin-top:18px;padding-top:0}
  .vcw-progress{margin:20px 0 32px}
  .vcw-grid.two,
  .vcw-cards-3,
  .vcw-cards-4,
  .vcw-service-grid{grid-template-columns:1fr}
  .vcw-step h3{font-size:24px}
  .vcw-step > .vcw-mini{gap:10px}
  .vcw-actions{
    position:sticky;
    bottom:8px;
    z-index:5;
    margin-left:-6px;
    margin-right:-6px;
    padding:12px 6px 0;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(8px);
  }
  .vcw-actions button{flex:1}
}

@media(prefers-reduced-motion:reduce){
  .vcw-step.is-active{animation:none}
  .vcw-progress span,
  .vcw-choice,
  .vcw-service,
  .vcw-actions button,
  .vcw-external-button,
  .vcw-call{transition:none}
}
