:root{
  --vt-register-max: 1140px;
}

.vt-reg-wrap{
  max-width: var(--vt-register-max);
  margin: 0 auto;
  padding: 18px 14px;
}

.vt-reg-hero{
  background: linear-gradient(135deg, rgba(2,124,237,.10), rgba(218,41,28,.08), rgba(0,0,0,0));
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 14px;
}

.vt-reg-hero__title{
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 6px 0;
}

.vt-reg-hero__sub{ margin:0; opacity:.78; }

/* Layout */
.vt-reg-layout{ display:block; }

.vt-reg-layout--split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 980px){
  .vt-reg-layout--split{ grid-template-columns: 1fr; }
}

.vt-step--form{
  margin-top: 14px;
}
.vt-reg-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.vt-reg-title{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom: 10px;
}
.vt-reg-badge{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(2,124,237,.12);
  color: var(--vt-brand-back, #027ced);
  font-weight: 800;
  font-size: 13px;
}
.vt-reg-title h2{ font-size: 16px; margin:0; }
.vt-reg-sub{ margin:0 0 12px 0; opacity:.78; font-size: 13px; }

.vt-reg-right{ min-height: 10px; }
.vt-reg-sticky{ position: sticky; top: 14px; }
@media (max-width: 980px){ .vt-reg-sticky{ position: static; } }

.vt-reg-summary{
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.vt-reg-summary .line{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.vt-reg-summary .line:last-child{ border-bottom:0; }
.vt-reg-summary .k{ opacity:.7; font-size: 12px; }
.vt-reg-summary .v{ font-weight:800; font-size: 13px; text-align:right; }

.vt-select{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 13px 14px;
  font-size: 15px;
  background: #fff;
  font: inherit;
}

.vt-field__error{ margin-top: 8px; color: #b00020; font-size: 13px; }

/* Typography normalization for all form controls on register page */
.vt-reg-wrap,
.vt-reg-wrap *{ font-family: inherit; }
.vt-reg-form input,
.vt-reg-form select,
.vt-reg-form textarea,
.vt-reg-form button,
.vt-select{ font: inherit; }

.vt-reg-form{
  background:#fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* CF7 base */
.vt-reg-form .wpcf7 form{ margin:0; }
.vt-reg-form label{
  display:block;
  font-size: 12px;
  opacity: .72;
  margin: 10px 0 6px;
}
.vt-reg-form input[type="text"],
.vt-reg-form input[type="tel"],
.vt-reg-form input[type="email"],
.vt-reg-form textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 13px 14px;
  font-size: 15px;
  background: #fff;
}
.vt-reg-form textarea{ min-height: 92px; resize: vertical; }
.vt-reg-form input:focus, .vt-reg-form textarea:focus{
  outline: none;
  border-color: rgba(225,6,0,.65);
  box-shadow: 0 0 0 4px rgba(225,6,0,.10);
}

.vt-reg-form input[type="submit"]{
  width:100%;
  border:0;
  border-radius: 999px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 900;
  cursor:pointer;
  background: var(--vt-accent);
  color:#fff;
  margin-top: 12px;
}

.vt-reg-note{
  margin-top: 10px;
  font-size: 12px;
  opacity: .78;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vt-reg-note span{
  background: rgba(0,0,0,.05);
  border-radius: 999px;
  padding: 6px 10px;
}

/* Service cards */
.vt-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 980px){ .vt-cards{ grid-template-columns: 1fr; } }

.vt-card{
  width: 100%;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  cursor:pointer;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.vt-card:hover{ transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.vt-card.is-selected{
  border-color: rgba(225,6,0,.55);
  box-shadow: 0 12px 28px rgba(225,6,0,.12);
}
.vt-card__title{ font-weight: 900; font-size: 14px; }
.vt-card__desc{ opacity:.78; font-size: 13px; }
.vt-card__cta{
  margin-top:auto;
  background: rgba(225,6,0,.10);
  color: var(--vt-accent);
  font-weight: 800;
  border-radius: 999px;
  padding: 7px 10px;
  width: fit-content;
}

/* Hide step2 before selection */
#vt_step2[hidden]{ display:none !important; }


/* --- Tighter spacing --- */
.vt-reg-card{ margin-bottom: 12px; }
.vt-reg-summary{ margin: 12px 0; }
.vt-reg-form{ margin-top: 12px; }

/* Right info panel */
.vt-reg-info{
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.vt-reg-info__head{
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
}
.vt-reg-info__rows .row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.vt-reg-info__rows .row:last-child{ border-bottom:0; }
.vt-reg-info__rows .k{ opacity:.7; font-size: 12px; }
.vt-reg-info__rows .v{ font-weight:800; font-size: 13px; text-align:right; }
.vt-reg-info__promo{ margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.08); }
.vt-reg-info__promo .promo-title{ font-weight: 900; font-size: 13px; margin-bottom: 6px; }
.vt-reg-info__promo .promo-body{ font-size: 13px; line-height: 1.45; opacity: .9; }
.vt-reg-info__promo .promo-body p{ margin: 0 0 8px 0; }

/* Spacing inside CF7 */
.vt-reg-form .wpcf7 form p{ margin: 0 0 10px 0; }
.vt-reg-form .wpcf7 form br{ display:none; }
.vt-reg-form .wpcf7 form label{ margin: 10px 0 6px; }

/* Make form feel lighter */
.vt-reg-form input[type="text"],
.vt-reg-form input[type="tel"],
.vt-reg-form input[type="email"],
.vt-reg-form textarea{
  border-radius: 14px;
}

/* Optional: visually hide email row if present (user requested remove email). 
   NOTE: this does not remove validation if field is required in CF7. */
.vt-reg-form input[name="lc_email"]{
  display:none !important;
}
.vt-reg-form input[name="lc_email"] + .wpcf7-not-valid-tip{
  display:none !important;
}
