/* valuecase widget v1.2.10 - executive style */
#vcw-tool{
  --vcw-bg:#f4f5f2;
  --vcw-card:#ffffff;
  --vcw-text:#141414;
  --vcw-heading:#0f1720;
  --vcw-muted:#5f676f;
  --vcw-muted-2:#7a828a;
  --vcw-line:#d9ddd6;
  --vcw-soft:#f7f8f5;
  --vcw-dark:#121820;
  --vcw-dark-2:#1f2933;
  --vcw-accent:#88c540;
  --vcw-accent-dark:#6fa333;
  --vcw-accent-soft:#eef6e7;
  --vcw-gold:#b49a63;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--vcw-text);
  max-width:100%;
  scroll-margin-top:190px;
}
#vcw-tool,#vcw-tool *{box-sizing:border-box;text-transform:none !important}

#vcw-tool .vcw-shell{
  border-radius:14px;
  padding:28px;
  background:linear-gradient(180deg,#f7f8f5 0%,#eef0eb 100%);
  border:1px solid var(--vcw-line);
  box-shadow:0 10px 28px rgba(18,24,32,.08);
  overflow:hidden;
  color:var(--vcw-text);
}
#vcw-tool .vcw-hero{
  max-width:850px;
  margin:0 auto 22px;
  text-align:center;
  color:var(--vcw-text);
}
#vcw-tool .vcw-kicker{
  display:inline-block;
  font-size:12px;
  letter-spacing:.13em;
  font-weight:850;
  color:var(--vcw-accent-dark);
  border:1px solid rgba(136,197,64,.34);
  background:#fff;
  border-radius:999px;
  padding:7px 12px;
}
#vcw-tool .vcw-title{
  font-size:clamp(30px,4vw,48px);
  line-height:1.06;
  margin:14px 0 10px;
  font-weight:900;
  letter-spacing:-.035em;
  color:var(--vcw-heading);
}
#vcw-tool .vcw-lead{
  font-size:17px;
  line-height:1.65;
  margin:0 auto;
  color:var(--vcw-muted);
  max-width:760px;
}

#vcw-tool .vcw-card{
  max-width:980px;
  margin:0 auto;
  background:var(--vcw-card);
  color:var(--vcw-text);
  border:1px solid var(--vcw-line);
  border-radius:14px;
  padding:28px;
  box-shadow:0 2px 8px rgba(18,24,32,.04);
}
#vcw-tool .vcw-card::before{
  content:"";
  display:block;
  height:4px;
  width:100%;
  background:linear-gradient(90deg,var(--vcw-accent),var(--vcw-gold));
  border-radius:999px;
  margin:-10px 0 22px;
}
#vcw-tool .vcw-progress{margin-bottom:22px}
#vcw-tool .vcw-progress-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:9px;
  color:#46505a;
  font-weight:760;
  font-size:13px;
}
#vcw-tool .vcw-step-navigation{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
#vcw-tool .vcw-step-arrow{
  appearance:none;
  border:0;
  background:transparent;
  color:#9aa1a8;
  width:28px;
  height:28px;
  padding:0;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font:inherit;
  font-size:15px;
  line-height:1;
  cursor:pointer;
  transition:color .18s ease, background-color .18s ease, opacity .18s ease;
}
#vcw-tool .vcw-step-arrow:hover,
#vcw-tool .vcw-step-arrow:focus-visible{
  color:var(--vcw-accent);
  background:rgba(111,143,47,.10);
}
#vcw-tool .vcw-step-arrow:disabled{
  opacity:0;
  pointer-events:none;
}
#vcw-tool .vcw-bar{height:8px;background:#e6e9e2;border-radius:999px;overflow:hidden}
#vcw-tool #vcwBarFill{
  height:100%;
  width:10%;
  background:var(--vcw-accent);
  border-radius:999px;
  transition:width .25s ease;
}

#vcw-tool .vcw-step{
  display:none;
  min-height:340px;
  animation:vcwFade .18s ease-out;
  text-align:center;
}
#vcw-tool .vcw-step.active{display:block}
@keyframes vcwFade{from{opacity:.35;transform:translateY(4px)}to{opacity:1;transform:none}}
#vcw-tool .vcw-step h3{
  font-size:clamp(25px,3vw,35px);
  line-height:1.14;
  margin:8px auto 10px;
  letter-spacing:-.025em;
  color:var(--vcw-heading);
  max-width:800px;
  font-weight:880;
}
#vcw-tool .vcw-step p{
  font-size:16px;
  color:var(--vcw-muted);
  line-height:1.68;
  margin:0 auto 24px;
  max-width:720px;
}
#vcw-tool label{
  display:block;
  font-weight:760;
  font-size:14px;
  color:#34404a;
  margin:0 auto 10px;
  text-align:center;
  max-width:620px;
}

#vcw-tool input[type="text"],
#vcw-tool input[type="email"],
#vcw-tool input[type="number"]{
  width:100%;
  max-width:560px;
  margin:0 auto;
  display:block;
  border:1px solid #cfd6cc;
  background:#fff;
  border-radius:10px;
  padding:17px 18px;
  font-size:20px;
  line-height:1.2;
  color:#111820;
  outline:none;
  box-shadow:0 1px 0 rgba(18,24,32,.03);
  text-align:center;
}
#vcw-tool input::placeholder{color:#8b949e}
#vcw-tool input:focus{
  border-color:var(--vcw-accent-dark);
  box-shadow:0 0 0 3px rgba(136,197,64,.18);
}

#vcw-tool .vcw-choice-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  max-width:760px;
  margin:0 auto;
}
#vcw-tool .vcw-choice-grid-4{max-width:840px}
#vcw-tool .vcw-choice,
#vcw-tool .vcw-level{
  appearance:none;
  border:1px solid #d4d9d1;
  background:#fff;
  color:#121820;
  border-radius:10px;
  padding:21px;
  text-align:center;
  font-size:18px;
  font-weight:850;
  cursor:pointer;
  transition:transform .15s ease,border-color .15s ease,background .15s ease,box-shadow .15s ease,color .15s ease;
}
#vcw-tool .vcw-choice:hover,
#vcw-tool .vcw-level:hover{
  transform:translateY(-1px);
  border-color:var(--vcw-accent-dark);
  box-shadow:0 6px 18px rgba(18,24,32,.06);
}
#vcw-tool .vcw-choice.active,
#vcw-tool .vcw-level.active{
  background:var(--vcw-dark);
  border-color:var(--vcw-dark);
  color:#fff;
  box-shadow:0 8px 18px rgba(18,24,32,.14);
}
#vcw-tool .vcw-level{
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  gap:7px;
  align-items:center;
  justify-content:center;
  min-height:128px;
}
#vcw-tool .vcw-level strong{
  display:block;
  font-size:22px;
  color:inherit;
  line-height:1.05;
}
#vcw-tool .vcw-level span{
  display:block;
  font-size:13px;
  line-height:1.45;
  color:#69737d;
  font-weight:650;
  max-width:180px;
}
#vcw-tool .vcw-choice.active span,
#vcw-tool .vcw-level.active span{color:rgba(255,255,255,.78)}
#vcw-tool .vcw-level-grid{grid-template-columns:1fr 1fr 1fr;max-width:820px}
#vcw-tool .vcw-indication{
  max-width:760px;
  margin:22px auto 0;
  color:#606972;
  font-size:12px;
  line-height:1.6;
  text-align:center;
  background:#f8f9f5;
  border:1px solid #e4e8df;
  border-radius:10px;
  padding:11px 14px;
}

#vcw-tool .vcw-scan-summary{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  max-width:820px;
  margin:26px auto 0;
}
#vcw-tool .vcw-scan-summary div{
  border:1px solid #dfe4dc;
  background:#f8f9f5;
  border-radius:10px;
  padding:18px;
  text-align:center;
}
#vcw-tool .vcw-scan-summary span{
  display:block;
  color:#69737d;
  font-size:12px;
  font-weight:820;
  letter-spacing:.04em;
  margin-bottom:7px;
}
#vcw-tool .vcw-scan-summary strong{
  display:block;
  color:#121820;
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.025em;
}

#vcw-tool .vcw-nav{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid var(--vcw-line);
  padding-top:20px;
  margin-top:12px;
}
#vcw-tool .vcw-btn,
#vcw-tool .vcw-main-cta{
  appearance:none;
  border:1px solid var(--vcw-dark);
  background:var(--vcw-dark);
  color:#fff;
  border-radius:10px;
  padding:16px 22px;
  font-weight:850;
  cursor:pointer;
  box-shadow:none;
  font-size:16px;
}
#vcw-tool .vcw-btn:hover,
#vcw-tool .vcw-main-cta:hover{background:#000;border-color:#000}
#vcw-tool .vcw-btn.ghost{background:#fff;color:#121820;border-color:#d4d9d1;box-shadow:none}
#vcw-tool .vcw-btn.ghost:hover{background:#f5f7f2;border-color:#c8d0c3}
#vcw-tool .vcw-btn[disabled]{opacity:.45;cursor:not-allowed}

#vcw-tool .vcw-result-intro{text-align:center;margin-bottom:16px}
#vcw-tool .vcw-result-kicker{
  display:inline-block;
  font-size:12px;
  font-weight:850;
  letter-spacing:.12em;
  color:var(--vcw-accent-dark);
  margin-bottom:8px;
}
#vcw-tool .vcw-hero-result{
  max-width:820px;
  margin:16px auto 18px;
  padding:30px;
  border-radius:14px;
  background:var(--vcw-dark);
  color:#fff;
  box-shadow:none;
  border-top:4px solid var(--vcw-accent);
}
#vcw-tool .vcw-hero-result span{
  display:block;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  color:rgba(255,255,255,.72);
  margin-bottom:10px;
}
#vcw-tool .vcw-hero-result strong{
  display:block;
  font-size:clamp(34px,5.2vw,62px);
  line-height:1.02;
  letter-spacing:-.055em;
  color:#fff;
}
#vcw-tool .vcw-hero-result p{color:rgba(255,255,255,.80);margin:12px auto 0;max-width:560px}

#vcw-tool .vcw-result-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  margin:18px auto;
  max-width:920px;
}
#vcw-tool .vcw-result-card{
  border:1px solid #dfe4dc;
  background:#f8f9f5;
  border-radius:10px;
  padding:18px;
  text-align:left;
}
#vcw-tool .vcw-result-card.primary{
  background:#fff;
  border-color:rgba(136,197,64,.52);
  border-top:4px solid var(--vcw-accent);
}
#vcw-tool .vcw-result-card span{
  display:block;
  font-size:12px;
  font-weight:850;
  letter-spacing:.06em;
  color:#68727c;
  margin-bottom:8px;
}
#vcw-tool .vcw-result-card strong{
  font-size:24px;
  line-height:1.1;
  color:#121820;
  letter-spacing:-.035em;
}
#vcw-tool .vcw-breakdown{
  border:1px solid #dfe4dc;
  border-radius:10px;
  overflow:hidden;
  margin:16px auto;
  max-width:920px;
  text-align:left;
}
#vcw-tool .vcw-breakdown div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:13px 15px;
  border-top:1px solid #e3e7df;
  background:#fff;
  color:#4f5a64;
  font-size:14px;
}
#vcw-tool .vcw-breakdown div:first-child{border-top:0}
#vcw-tool .vcw-breakdown strong{color:#121820;white-space:nowrap}

#vcw-tool .vcw-request-benefits{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  margin:18px auto;
  max-width:900px;
  text-align:left;
}
#vcw-tool .vcw-request-benefits div{
  border:1px solid #dfe4dc;
  background:#f8f9f5;
  border-radius:10px;
  padding:16px;
}
#vcw-tool .vcw-request-benefits strong{display:block;color:#121820;margin-bottom:6px;font-size:16px}
#vcw-tool .vcw-request-benefits span{display:block;color:#5f6a74;font-size:14px;line-height:1.5}
#vcw-tool .vcw-cta-box{
  max-width:820px;
  margin:20px auto 0;
  background:var(--vcw-dark);
  border-top:4px solid var(--vcw-accent);
  border-radius:14px;
  padding:24px;
  color:#fff;
  text-align:center;
}
#vcw-tool .vcw-cta-box h4{font-size:26px;line-height:1.12;margin:0 0 8px;letter-spacing:-.025em;color:#fff}
#vcw-tool .vcw-cta-box p{color:rgba(255,255,255,.82);margin:0 auto 18px;max-width:640px}
#vcw-tool .vcw-contact-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:0 auto 14px;max-width:680px}
#vcw-tool .vcw-cta-box input{background:#fff !important;color:#111820 !important;text-align:center;border-color:#fff}
#vcw-tool .vcw-request-note{margin-top:12px;font-size:13px;color:rgba(255,255,255,.82)}
#vcw-tool .vcw-footer-note{color:#5f6870;font-size:12px;line-height:1.45;margin:16px auto 0;max-width:860px;text-align:center}

@media(max-width:720px){
  #vcw-tool .vcw-shell{padding:18px;border-radius:14px}
  #vcw-tool .vcw-card{padding:18px;border-radius:12px}
  #vcw-tool .vcw-choice-grid,#vcw-tool .vcw-level-grid,#vcw-tool .vcw-result-grid,#vcw-tool .vcw-contact-row,#vcw-tool .vcw-request-benefits,#vcw-tool .vcw-scan-summary{grid-template-columns:1fr}
  #vcw-tool .vcw-step{min-height:auto}
  #vcw-tool .vcw-step h3{font-size:24px}
  #vcw-tool input[type="text"],#vcw-tool input[type="email"],#vcw-tool input[type="number"]{font-size:18px;padding:16px}
  #vcw-tool .vcw-result-card strong{font-size:22px}
  #vcw-tool .vcw-hero-result strong{font-size:34px}
  #vcw-tool .vcw-breakdown div{flex-direction:column;gap:4px}
}


/* valuecase widget v1.0.6 additions */
#vcw-tool.vcw-at-start .vcw-progress,
#vcw-tool.vcw-at-start .vcw-nav{
  display:none;
}
#vcw-tool .vcw-start-step{
  min-height:420px;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  padding:24px 10px 30px;
}
#vcw-tool .vcw-start-step.active{
  display:flex;
}
#vcw-tool .vcw-start-step h3{
  font-size:clamp(34px,5vw,58px);
  max-width:840px;
  margin:18px auto 14px;
}
#vcw-tool .vcw-start-step p{
  font-size:18px;
  max-width:720px;
  margin-bottom:22px;
}
#vcw-tool .vcw-start-list{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  max-width:860px;
  width:100%;
  margin:18px auto 28px;
}
#vcw-tool .vcw-start-list div{
  border:1px solid #dfe4dc;
  background:#f8f9f5;
  border-radius:10px;
  padding:16px 14px;
  color:#34404a;
  font-size:14px;
  font-weight:760;
  line-height:1.45;
}
#vcw-tool .vcw-start-list div::before{
  content:"";
  display:block;
  width:28px;
  height:3px;
  border-radius:999px;
  background:var(--vcw-accent);
  margin:0 auto 10px;
}
#vcw-tool .vcw-start-cta{
  min-width:190px;
  font-size:18px;
  padding:18px 34px;
}
#vcw-tool .vcw-breakdown-title{
  max-width:920px;
  margin:24px auto 10px;
  color:#121820;
  font-size:20px;
  line-height:1.2;
  letter-spacing:-.02em;
  text-align:left;
}
#vcw-tool .vcw-breakdown .vcw-breakdown-total{
  background:#f8f9f5;
  font-weight:850;
  border-top:1px solid #cfd6cc;
}
#vcw-tool .vcw-breakdown .vcw-breakdown-total span,
#vcw-tool .vcw-breakdown .vcw-breakdown-total strong{
  color:#121820;
}
@media(max-width:720px){
  #vcw-tool .vcw-start-list{grid-template-columns:1fr}
  #vcw-tool .vcw-start-step{min-height:auto;padding:12px 0 20px}
  #vcw-tool .vcw-start-step h3{font-size:32px}
  #vcw-tool .vcw-start-step p{font-size:16px}
}

/* valuecase widget v1.0.6 result refinements */
#vcw-tool .vcw-cost-hero{
  max-width:820px;
  margin:16px auto 18px;
  padding:28px;
  border-radius:14px;
  background:#f8f9f5;
  color:#121820;
  border:1px solid #dfe4dc;
  border-top:4px solid var(--vcw-accent);
  text-align:center;
}
#vcw-tool .vcw-cost-hero span{
  display:block;
  font-size:13px;
  font-weight:850;
  letter-spacing:.08em;
  color:#58636d;
  margin-bottom:10px;
}
#vcw-tool .vcw-cost-hero strong{
  display:block;
  font-size:clamp(32px,4.7vw,56px);
  line-height:1.02;
  letter-spacing:-.055em;
  color:#121820;
}
#vcw-tool .vcw-cost-hero p{
  margin:8px auto 0;
  color:#606972;
}
#vcw-tool .vcw-breakdown-intro{
  max-width:920px;
  margin:8px auto 8px;
  text-align:left;
  color:#5f6870;
  font-size:14px;
}
#vcw-tool .vcw-extra-value{
  max-width:920px;
  margin:20px auto 0;
  padding:22px;
  border:1px solid #dfe4dc;
  border-radius:12px;
  background:#fff;
  text-align:left;
}
#vcw-tool .vcw-extra-value h4{
  margin:0 0 8px;
  color:#121820;
  font-size:22px;
  line-height:1.18;
  letter-spacing:-.02em;
}
#vcw-tool .vcw-extra-value p{
  text-align:left;
  margin:8px 0;
  color:#5f6870;
  max-width:none;
}
#vcw-tool .vcw-extra-value ul{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 14px;
}
#vcw-tool .vcw-extra-value li{
  position:relative;
  padding-left:22px;
  color:#34404a;
  font-size:14px;
  line-height:1.45;
  font-weight:650;
}
#vcw-tool .vcw-extra-value li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  color:var(--vcw-accent-dark);
  font-weight:900;
}
@media(max-width:720px){
  #vcw-tool .vcw-extra-value ul{grid-template-columns:1fr}
  #vcw-tool .vcw-cost-hero strong{font-size:34px}
}

/* valuecase widget v1.1.0 updates */
#vcw-tool .vcw-choice-grid-3{max-width:760px;grid-template-columns:1fr 1fr 1fr}
#vcw-tool .vcw-cost-hero small{display:block;margin:12px auto 0;color:#606972;font-size:14px;line-height:1.55;max-width:620px}
#vcw-tool .vcw-info-block,
#vcw-tool .vcw-assumptions{
  max-width:920px;
  margin:18px auto;
  padding:22px;
  border:1px solid #dfe4dc;
  border-radius:12px;
  background:#f8f9f5;
  text-align:left;
}
#vcw-tool .vcw-info-block h4,
#vcw-tool .vcw-assumptions summary{
  color:#121820;
  font-size:22px;
  line-height:1.18;
  letter-spacing:-.02em;
  font-weight:880;
  margin:0 0 10px;
}
#vcw-tool .vcw-assumptions summary{cursor:pointer;margin:0}
#vcw-tool .vcw-assumptions[open] summary{margin-bottom:10px}
#vcw-tool .vcw-info-block p,
#vcw-tool .vcw-assumptions p{
  text-align:left;
  max-width:none;
  margin:10px 0 0;
  color:#5f6870;
  font-size:15px;
  line-height:1.65;
}
#vcw-tool .vcw-saving-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  max-width:920px;
  margin:12px auto 18px;
}
#vcw-tool .vcw-saving-grid .vcw-result-card{
  min-height:245px;
}
#vcw-tool .vcw-saving-grid .vcw-result-card span{
  color:#121820;
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.035em;
  font-weight:900;
  text-transform:none !important;
}
#vcw-tool .vcw-saving-grid .vcw-result-card strong{
  display:block;
  margin:8px 0 10px;
  font-size:17px;
  line-height:1.25;
  letter-spacing:-.015em;
}
#vcw-tool .vcw-saving-grid .vcw-result-card p{
  text-align:left;
  margin:0;
  color:#5f6870;
  font-size:14px;
  line-height:1.55;
}
#vcw-tool .vcw-value-columns{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  margin-top:16px;
}
#vcw-tool .vcw-value-columns div{
  border:1px solid #dfe4dc;
  background:#fff;
  border-radius:10px;
  padding:16px;
}
#vcw-tool .vcw-value-columns strong{display:block;color:#121820;font-size:16px;margin-bottom:6px}
#vcw-tool .vcw-value-columns span{display:block;color:#5f6a74;font-size:14px;line-height:1.5}
#vcw-tool .vcw-result-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  max-width:920px;
  margin:22px auto 0;
}
#vcw-tool .vcw-primary-wide{
  min-width:min(100%,330px);
  padding:18px 28px;
  font-size:17px;
  border-color:var(--vcw-accent-dark);
  background:var(--vcw-accent-dark);
}
#vcw-tool .vcw-primary-wide:hover{background:#5f8f29;border-color:#5f8f29}
#vcw-tool .vcw-secondary-talk{
  max-width:820px;
  margin:18px auto 0;
  padding:18px;
  border:1px solid #dfe4dc;
  background:#f8f9f5;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
#vcw-tool .vcw-secondary-talk span{color:#5f6870;font-weight:760}
@media(max-width:720px){
  #vcw-tool .vcw-choice-grid-3,
  #vcw-tool .vcw-saving-grid,
  #vcw-tool .vcw-value-columns{grid-template-columns:1fr}
  #vcw-tool .vcw-saving-grid .vcw-result-card{min-height:auto}
  #vcw-tool .vcw-result-actions{flex-direction:column}
  #vcw-tool .vcw-result-actions .vcw-btn,
  #vcw-tool .vcw-result-actions .vcw-main-cta{width:100%}
}

@media print{
  body *{visibility:hidden !important}
  #vcw-tool,#vcw-tool *{visibility:visible !important}
  #vcw-tool{position:absolute;left:0;top:0;width:100%;max-width:none;background:#fff}
  #vcw-tool .vcw-shell{box-shadow:none;border:0;background:#fff;padding:0}
  #vcw-tool .vcw-card{box-shadow:none;border:0;padding:18px;max-width:none}
  #vcw-tool .vcw-progress,
  #vcw-tool .vcw-nav,
  #vcw-tool .vcw-result-actions,
  #vcw-tool .vcw-request-step,
  #vcw-tool .vcw-footer-note{display:none !important}
  #vcw-tool .vcw-step{display:none !important}
  #vcw-tool .vcw-result-step{display:block !important;min-height:auto}
  #vcw-tool .vcw-cost-hero,
  #vcw-tool .vcw-hero-result,
  #vcw-tool .vcw-info-block,
  #vcw-tool .vcw-extra-value,
  #vcw-tool .vcw-assumptions{break-inside:avoid;page-break-inside:avoid}
}


/* valuecase widget v1.1.3 layout refinements */
#vcw-tool .vcw-shell{
  padding:36px;
}
#vcw-tool .vcw-card{
  padding:34px 34px 30px;
}
#vcw-tool .vcw-card::before{
  margin:-12px 0 30px;
}
#vcw-tool .vcw-progress{
  margin-bottom:34px;
}
#vcw-tool .vcw-step{
  min-height:390px;
  padding:18px 0 24px;
}
#vcw-tool .vcw-step.active{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
#vcw-tool .vcw-result-step.active,
#vcw-tool .vcw-request-step.active{
  display:block;
  padding-top:6px;
}
#vcw-tool .vcw-step h3{
  margin:0 auto 18px;
}
#vcw-tool .vcw-step p{
  margin-bottom:32px;
}
#vcw-tool .vcw-start-step.active{
  display:flex;
}
#vcw-tool .vcw-choice-grid{
  gap:18px;
  margin-top:10px;
}
#vcw-tool .vcw-choice,
#vcw-tool .vcw-level{
  border-radius:14px;
  background:#fbfcf9;
  border-color:#e0e5dc;
  box-shadow:0 1px 0 rgba(18,24,32,.03);
}
#vcw-tool .vcw-choice{
  padding:24px 22px;
}
#vcw-tool .vcw-level{
  min-height:180px;
  padding:28px 22px;
  gap:12px;
}
#vcw-tool .vcw-level strong{
  font-size:21px;
  font-weight:850;
}
#vcw-tool .vcw-level span{
  max-width:235px;
  font-size:14px;
  line-height:1.55;
  font-weight:600;
}
#vcw-tool .vcw-choice.active,
#vcw-tool .vcw-level.active{
  background:#f3f8ec;
  border-color:rgba(111,163,51,.55);
  color:#121820;
  box-shadow:0 8px 22px rgba(18,24,32,.07);
}
#vcw-tool .vcw-choice.active span,
#vcw-tool .vcw-level.active span{
  color:#5f6870;
}
#vcw-tool .vcw-level.active strong{
  color:#121820;
}
#vcw-tool .vcw-level.active::before{
  content:"";
  display:block;
  width:34px;
  height:4px;
  border-radius:999px;
  background:var(--vcw-accent);
  margin-bottom:2px;
}
#vcw-tool .vcw-range-card{
  width:100%;
  max-width:680px;
  margin:8px auto 0;
  padding:30px;
  border:1px solid #dfe4dc;
  border-radius:16px;
  background:#f8f9f5;
  text-align:center;
}
#vcw-tool .vcw-range-card label{
  margin-bottom:10px;
}
#vcw-tool .vcw-range-value{
  display:inline-flex;
  align-items:baseline;
  justify-content:center;
  min-width:150px;
  margin:0 auto 22px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid #dfe4dc;
  color:#121820;
  font-size:34px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
}
#vcw-tool .vcw-range{
  width:100%;
  display:block;
  appearance:none;
  height:10px;
  border-radius:999px;
  background:#dfe7d7;
  outline:none;
  margin:0;
}
#vcw-tool .vcw-range::-webkit-slider-thumb{
  appearance:none;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--vcw-dark);
  border:4px solid #fff;
  box-shadow:0 3px 12px rgba(18,24,32,.22);
  cursor:pointer;
}
#vcw-tool .vcw-range::-moz-range-thumb{
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--vcw-dark);
  border:4px solid #fff;
  box-shadow:0 3px 12px rgba(18,24,32,.22);
  cursor:pointer;
}
#vcw-tool .vcw-range-scale{
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  color:#69737d;
  font-size:13px;
  font-weight:750;
}
#vcw-tool .vcw-nav{
  margin-top:22px;
  padding-top:24px;
}
#vcw-tool .vcw-info-block,
#vcw-tool .vcw-assumptions,
#vcw-tool .vcw-extra-value,
#vcw-tool .vcw-cost-hero,
#vcw-tool .vcw-hero-result{
  margin-top:24px;
  margin-bottom:24px;
}
#vcw-tool .vcw-saving-grid{
  gap:18px;
  margin-top:16px;
  margin-bottom:28px;
}
#vcw-tool .vcw-saving-grid .vcw-result-card{
  border-radius:14px;
  padding:22px;
}
@media(max-width:720px){
  #vcw-tool .vcw-shell{padding:20px}
  #vcw-tool .vcw-card{padding:22px 18px}
  #vcw-tool .vcw-step.active{min-height:auto;padding:12px 0 18px}
  #vcw-tool .vcw-level{min-height:auto;padding:22px 18px}
  #vcw-tool .vcw-range-card{padding:22px 18px}
  #vcw-tool .vcw-range-value{font-size:30px}
}


/* valuecase widget v1.2.10 requested refinements */
#vcw-tool .vcw-result-kicker{display:none}
#vcw-tool .vcw-cost-hero{
  background:var(--vcw-dark);
  color:#fff;
  border-color:var(--vcw-dark);
  border-top-color:var(--vcw-accent);
}
#vcw-tool .vcw-cost-hero span,
#vcw-tool .vcw-cost-hero p,
#vcw-tool .vcw-cost-hero small{color:rgba(255,255,255,.78)}
#vcw-tool .vcw-cost-hero strong{color:#fff}
#vcw-tool .vcw-hero-result{
  background:#fff;
  color:#121820;
  border:1px solid #dfe4dc;
  border-top:4px solid var(--vcw-accent);
}
#vcw-tool .vcw-hero-result span,
#vcw-tool .vcw-hero-result p{color:#5f6870}
#vcw-tool .vcw-hero-result strong{color:#121820}
#vcw-tool .vcw-request-step .vcw-cta-box{margin-top:26px}
#vcw-tool .vcw-level strong{max-width:240px}
/* progress visible on normal screens; hidden only on the start screen and print */
#vcw-tool .vcw-card::before{margin-top:-12px}

/* valuecase widget v1.2.10 refinements */
#vcw-tool #vcwRequestFull{
  background:var(--vcw-accent) !important;
  border-color:var(--vcw-accent) !important;
  color:#121820 !important;
  box-shadow:0 10px 22px rgba(136,197,64,.22);
}
#vcw-tool #vcwRequestFull:hover,
#vcw-tool #vcwRequestFull:focus{
  background:#9add4a !important;
  border-color:#9add4a !important;
  color:#121820 !important;
}
#vcw-tool .vcw-cta-box #vcwRequestFull{
  min-width:min(100%,260px);
  margin-top:2px;
}

@media(max-width:720px){
  #vcw-tool .vcw-shell{
    padding:14px;
    border-radius:12px;
  }
  #vcw-tool .vcw-card{
    padding:20px 14px 18px;
    border-radius:12px;
  }
  #vcw-tool .vcw-card::before{
    margin:-6px 0 22px;
  }
  #vcw-tool .vcw-step h3{
    font-size:23px;
    line-height:1.18;
    margin-bottom:12px;
  }
  #vcw-tool .vcw-step p{
    font-size:15px;
    line-height:1.55;
    margin-bottom:20px;
  }
  #vcw-tool .vcw-start-list,
  #vcw-tool .vcw-choice-grid,
  #vcw-tool .vcw-saving-grid,
  #vcw-tool .vcw-value-columns,
  #vcw-tool .vcw-request-benefits,
  #vcw-tool .vcw-contact-row,
  #vcw-tool .vcw-scan-summary{
    gap:10px;
  }
  #vcw-tool .vcw-level,
  #vcw-tool .vcw-choice{
    text-align:left;
    align-items:flex-start;
    padding:18px 16px;
  }
  #vcw-tool .vcw-level.active::before{
    margin-left:0;
  }
  #vcw-tool .vcw-level span{
    max-width:none;
    font-size:14px;
  }
  #vcw-tool .vcw-range-card{
    padding:20px 14px;
  }
  #vcw-tool .vcw-cost-hero,
  #vcw-tool .vcw-hero-result,
  #vcw-tool .vcw-info-block,
  #vcw-tool .vcw-extra-value,
  #vcw-tool .vcw-assumptions{
    padding:18px 16px;
    margin:16px auto;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card{
    padding:18px 16px;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card span,
  #vcw-tool .vcw-result-card strong{
    word-break:normal;
  }
  #vcw-tool .vcw-cta-box{
    padding:20px 16px;
  }
  #vcw-tool .vcw-cta-box h4{
    font-size:22px;
  }
  #vcw-tool .vcw-nav{
    gap:10px;
  }
  #vcw-tool .vcw-nav .vcw-btn{
    flex:1;
    padding:14px 12px;
  }
}

@media print{
  @page{size:A4;margin:12mm}
  html,body{background:#fff !important}
  #vcw-tool{
    position:static !important;
    width:100% !important;
    max-width:none !important;
    color:#121820 !important;
  }
  #vcw-tool .vcw-shell,
  #vcw-tool .vcw-card{
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    box-shadow:none !important;
    background:#fff !important;
    max-width:none !important;
  }
  #vcw-tool .vcw-card::before,
  #vcw-tool .vcw-progress,
  #vcw-tool .vcw-nav,
  #vcw-tool .vcw-result-actions,
  #vcw-tool .vcw-request-step,
  #vcw-tool .vcw-footer-note{
    display:none !important;
  }
  #vcw-tool .vcw-step{display:none !important}
  #vcw-tool .vcw-result-step{
    display:block !important;
    min-height:auto !important;
    padding:0 !important;
    text-align:left !important;
  }
  #vcw-tool .vcw-result-intro{
    text-align:left !important;
    margin:0 0 8mm !important;
  }
  #vcw-tool .vcw-result-intro h3{
    font-size:24pt !important;
    margin:0 !important;
    text-align:left !important;
  }
  #vcw-tool .vcw-cost-hero,
  #vcw-tool .vcw-hero-result{
    padding:8mm !important;
    margin:0 0 6mm !important;
    border:1px solid #dfe4dc !important;
    border-top:3mm solid #88c540 !important;
    border-radius:4mm !important;
    text-align:left !important;
    background:#fff !important;
    color:#121820 !important;
    break-inside:avoid;
    page-break-inside:avoid;
  }
  #vcw-tool .vcw-cost-hero span,
  #vcw-tool .vcw-cost-hero p,
  #vcw-tool .vcw-cost-hero small,
  #vcw-tool .vcw-hero-result span,
  #vcw-tool .vcw-hero-result p{
    color:#5f6870 !important;
  }
  #vcw-tool .vcw-cost-hero strong,
  #vcw-tool .vcw-hero-result strong{
    color:#121820 !important;
    font-size:28pt !important;
    letter-spacing:-.03em !important;
  }
  #vcw-tool .vcw-info-block,
  #vcw-tool .vcw-extra-value,
  #vcw-tool .vcw-assumptions{
    padding:6mm !important;
    margin:0 0 6mm !important;
    border:1px solid #dfe4dc !important;
    border-radius:4mm !important;
    background:#fff !important;
    text-align:left !important;
    break-inside:avoid;
    page-break-inside:avoid;
  }
  #vcw-tool .vcw-saving-grid,
  #vcw-tool .vcw-value-columns{
    display:grid !important;
    grid-template-columns:1fr 1fr 1fr !important;
    gap:4mm !important;
    margin:0 0 6mm !important;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card,
  #vcw-tool .vcw-value-columns div{
    padding:5mm !important;
    min-height:auto !important;
    background:#fff !important;
    border:1px solid #dfe4dc !important;
    border-radius:3mm !important;
    break-inside:avoid;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card span{
    font-size:15pt !important;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card strong,
  #vcw-tool .vcw-value-columns strong{
    font-size:10.5pt !important;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card p,
  #vcw-tool .vcw-info-block p,
  #vcw-tool .vcw-extra-value p,
  #vcw-tool .vcw-assumptions p,
  #vcw-tool .vcw-value-columns span{
    font-size:9.5pt !important;
    line-height:1.45 !important;
  }
  #vcw-tool .vcw-breakdown-title{
    margin:0 0 3mm !important;
    text-align:left !important;
  }
}

/* valuecase widget v1.2.10 scroll offset refinement */
#vcw-tool{scroll-margin-top:190px}
@media(max-width:720px){
  #vcw-tool{scroll-margin-top:145px}
}


/* v1.1.7 polish */
#vcw-tool .vcw-step{justify-content:flex-start;padding-top:10px}
#vcw-tool .vcw-step h3{margin-bottom:14px}
#vcw-tool .vcw-step p{margin-bottom:24px}
#vcw-tool .vcw-range-card,
#vcw-tool .vcw-info-block,
#vcw-tool .vcw-extra-value,
#vcw-tool .vcw-assumptions,
#vcw-tool .vcw-cta-box{border-radius:18px}
#vcw-tool .vcw-saving-grid{align-items:stretch}
#vcw-tool .vcw-result-card{display:flex;flex-direction:column}
#vcw-tool .vcw-result-card p{margin-top:auto}
#vcw-tool .vcw-contact-row{margin-top:18px;margin-bottom:18px}
#vcw-tool .vcw-main-cta{background:#88c540;border-color:#88c540}
#vcw-tool .vcw-main-cta:hover{background:#78b036;border-color:#78b036}
@media(max-width:720px){
#vcw-tool .vcw-shell{padding:16px}
#vcw-tool .vcw-card{padding:18px}
#vcw-tool .vcw-step h3{margin-bottom:10px}
#vcw-tool .vcw-contact-row{gap:10px}
#vcw-tool .vcw-main-cta,#vcw-tool .vcw-btn{width:100%}
}


/* valuecase widget v1.1.7 print + alignment refinements */
#vcw-tool .vcw-cost-hero,
#vcw-tool .vcw-info-block,
#vcw-tool .vcw-hero-result,
#vcw-tool .vcw-extra-value,
#vcw-tool .vcw-assumptions{
  max-width:900px;
}
#vcw-tool .vcw-result-step .vcw-result-intro{
  margin-bottom:18px;
}
#vcw-tool .vcw-cost-hero{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:220px;
}
#vcw-tool .vcw-info-block p + p{
  margin-top:16px;
}
#vcw-tool .vcw-cta-box .vcw-main-cta{
  color:#fff;
  font-weight:900;
}
#vcw-tool .vcw-request-note{
  margin-top:14px;
  color:rgba(255,255,255,.9);
  font-weight:750;
}

@media(max-width:720px){
  #vcw-tool .vcw-result-step .vcw-result-intro{
    margin-bottom:12px;
  }
  #vcw-tool .vcw-cost-hero{
    min-height:auto;
    padding:22px 18px;
  }
  #vcw-tool .vcw-cost-hero strong,
  #vcw-tool .vcw-hero-result strong{
    word-break:normal;
    overflow-wrap:normal;
  }
  #vcw-tool .vcw-info-block,
  #vcw-tool .vcw-extra-value,
  #vcw-tool .vcw-assumptions,
  #vcw-tool .vcw-cta-box{
    padding:20px 18px;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card{
    padding:18px;
  }
}

@media print{
  @page{
    size:A4;
    margin:8mm 10mm 10mm 10mm;
  }
  html,body{
    margin:0 !important;
    padding:0 !important;
    width:auto !important;
    min-height:0 !important;
    height:auto !important;
    background:#fff !important;
    -webkit-print-color-adjust:exact !important;
    print-color-adjust:exact !important;
  }
  body *{
    visibility:hidden !important;
  }
  #vcw-tool,
  #vcw-tool *{
    visibility:visible !important;
  }
  #vcw-tool{
    position:absolute !important;
    left:0 !important;
    top:0 !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
    background:#fff !important;
    color:#121820 !important;
    font-family:Arial, Helvetica, sans-serif !important;
    scroll-margin-top:0 !important;
  }
  #vcw-tool .vcw-shell,
  #vcw-tool .vcw-card{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    min-height:0 !important;
    height:auto !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    background:#fff !important;
    overflow:visible !important;
  }
  #vcw-tool .vcw-card::before,
  #vcw-tool .vcw-progress,
  #vcw-tool .vcw-nav,
  #vcw-tool .vcw-result-actions,
  #vcw-tool .vcw-request-step,
  #vcw-tool .vcw-footer-note,
  #vcw-tool .vcw-result-kicker{
    display:none !important;
  }
  #vcw-tool .vcw-step{
    display:none !important;
    min-height:0 !important;
    height:auto !important;
    padding:0 !important;
    margin:0 !important;
  }
  #vcw-tool .vcw-result-step,
  #vcw-tool .vcw-result-step.active{
    display:block !important;
    min-height:0 !important;
    height:auto !important;
    padding:0 !important;
    margin:0 !important;
    text-align:left !important;
    page-break-before:avoid !important;
  }
  #vcw-tool .vcw-result-intro{
    display:block !important;
    text-align:left !important;
    margin:0 0 5mm 0 !important;
    padding:0 !important;
  }
  #vcw-tool .vcw-result-intro h3{
    font-size:22pt !important;
    line-height:1.1 !important;
    letter-spacing:-.03em !important;
    margin:0 !important;
    padding:0 !important;
    color:#121820 !important;
    text-align:left !important;
  }
  #vcw-tool .vcw-cost-hero,
  #vcw-tool .vcw-hero-result,
  #vcw-tool .vcw-info-block,
  #vcw-tool .vcw-extra-value,
  #vcw-tool .vcw-assumptions{
    max-width:none !important;
    width:100% !important;
    margin:0 0 5mm 0 !important;
    padding:5.5mm 7mm !important;
    border:1px solid #dfe4dc !important;
    border-radius:3mm !important;
    background:#fff !important;
    color:#121820 !important;
    text-align:left !important;
    box-shadow:none !important;
    break-inside:avoid !important;
    page-break-inside:avoid !important;
  }
  #vcw-tool .vcw-cost-hero,
  #vcw-tool .vcw-hero-result{
    min-height:0 !important;
    border-top:2.5mm solid #88c540 !important;
  }
  #vcw-tool .vcw-cost-hero span,
  #vcw-tool .vcw-hero-result span{
    display:block !important;
    font-size:9.5pt !important;
    line-height:1.25 !important;
    letter-spacing:.08em !important;
    margin:0 0 3mm 0 !important;
    color:#5f6870 !important;
  }
  #vcw-tool .vcw-cost-hero strong,
  #vcw-tool .vcw-hero-result strong{
    display:block !important;
    font-size:27pt !important;
    line-height:1.05 !important;
    letter-spacing:-.04em !important;
    margin:0 0 2mm 0 !important;
    color:#121820 !important;
  }
  #vcw-tool .vcw-cost-hero p,
  #vcw-tool .vcw-hero-result p,
  #vcw-tool .vcw-cost-hero small{
    font-size:10pt !important;
    line-height:1.4 !important;
    color:#5f6870 !important;
    margin:0 !important;
    max-width:none !important;
  }
  #vcw-tool .vcw-cost-hero small{
    margin-top:4mm !important;
  }
  #vcw-tool .vcw-info-block h4,
  #vcw-tool .vcw-extra-value h4,
  #vcw-tool .vcw-assumptions summary{
    font-size:16pt !important;
    line-height:1.15 !important;
    margin:0 0 3mm 0 !important;
    color:#121820 !important;
  }
  #vcw-tool .vcw-info-block p,
  #vcw-tool .vcw-extra-value p,
  #vcw-tool .vcw-assumptions p{
    font-size:9.5pt !important;
    line-height:1.42 !important;
    margin:0 0 3mm 0 !important;
    color:#5f6870 !important;
    max-width:none !important;
    text-align:left !important;
  }
  #vcw-tool .vcw-breakdown-title{
    font-size:15pt !important;
    line-height:1.15 !important;
    margin:1mm 0 3mm 0 !important;
    color:#121820 !important;
    text-align:left !important;
  }
  #vcw-tool .vcw-saving-grid,
  #vcw-tool .vcw-value-columns{
    display:grid !important;
    grid-template-columns:1fr 1fr 1fr !important;
    gap:3.5mm !important;
    max-width:none !important;
    width:100% !important;
    margin:0 0 5mm 0 !important;
    align-items:stretch !important;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card,
  #vcw-tool .vcw-value-columns div{
    display:block !important;
    min-height:0 !important;
    padding:4mm !important;
    border:1px solid #dfe4dc !important;
    border-radius:3mm !important;
    background:#fff !important;
    color:#121820 !important;
    break-inside:avoid !important;
    page-break-inside:avoid !important;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card span{
    display:block !important;
    font-size:14pt !important;
    line-height:1.1 !important;
    margin:0 0 2mm 0 !important;
    color:#121820 !important;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card strong,
  #vcw-tool .vcw-value-columns strong{
    display:block !important;
    font-size:9.5pt !important;
    line-height:1.2 !important;
    margin:0 0 2mm 0 !important;
    color:#121820 !important;
  }
  #vcw-tool .vcw-saving-grid .vcw-result-card p,
  #vcw-tool .vcw-value-columns span{
    font-size:8.5pt !important;
    line-height:1.32 !important;
    margin:0 !important;
    color:#5f6870 !important;
    text-align:left !important;
  }
  #vcw-tool .vcw-assumptions{
    display:block !important;
  }
  #vcw-tool .vcw-assumptions summary{
    list-style:none !important;
    cursor:default !important;
  }
  #vcw-tool .vcw-assumptions summary::-webkit-details-marker{
    display:none !important;
  }
}

/* valuecase widget v1.2.0 print fallback: use a clean print document from JS */
@media print{
  #vcw-tool .vcw-result-step{transform:none !important;}
}

/* v1.2.1 - extended organisation profile summary */
#vcw-tool .vcw-scan-summary-extended{
  max-width:920px;
  grid-template-columns:repeat(3,1fr);
}
#vcw-tool .vcw-scan-summary-extended div{
  min-height:106px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
#vcw-tool .vcw-scan-summary-extended strong{
  font-size:22px;
}
@media(max-width:720px){
  #vcw-tool .vcw-scan-summary-extended{grid-template-columns:1fr}
  #vcw-tool .vcw-scan-summary-extended div{min-height:auto}
}


/* valuecase widget v1.2.10 - hidden full calculation panel */
#vcw-tool .vcw-result-step{
  position:relative;
}
#vcw-tool .vcw-hidden-calc-trigger{
  appearance:none;
  position:absolute;
  right:16px;
  bottom:12px;
  width:22px;
  height:22px;
  border:0;
  border-radius:50%;
  background:rgba(18,24,32,.18);
  opacity:.32;
  padding:0;
  cursor:pointer;
}
#vcw-tool .vcw-hidden-calc-trigger::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#121820;
  transform:translate(-50%,-50%);
}
#vcw-tool .vcw-hidden-calc-trigger:hover,
#vcw-tool .vcw-hidden-calc-trigger:focus{
  opacity:.55;
  outline:3px solid rgba(136,197,64,.35);
  outline-offset:3px;
}
#vcw-tool .vcw-calculation-panel{
  max-width:920px;
  margin:28px auto 0;
  padding:24px;
  border:1px solid #dfe4dc;
  border-radius:14px;
  background:#fff;
  text-align:left;
  box-shadow:0 10px 26px rgba(18,24,32,.08);
}
#vcw-tool .vcw-calculation-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}
#vcw-tool .vcw-calculation-head h4{
  margin:0;
  color:#121820;
  font-size:24px;
  letter-spacing:-.025em;
}
#vcw-tool .vcw-calc-close{
  appearance:none;
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid #dfe4dc;
  background:#f8f9f5;
  color:#121820;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
#vcw-tool .vcw-calc-intro,
#vcw-tool .vcw-calc-foot{
  color:#5f6870;
  font-size:14px;
  line-height:1.55;
  margin:0 0 16px;
  max-width:none;
  text-align:left;
}
#vcw-tool .vcw-calculation-panel h5{
  margin:20px 0 8px;
  color:#121820;
  font-size:16px;
  line-height:1.25;
}
#vcw-tool .vcw-calculation-panel table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid #dfe4dc;
  border-radius:10px;
  background:#fff;
}
#vcw-tool .vcw-calculation-panel th,
#vcw-tool .vcw-calculation-panel td{
  padding:11px 12px;
  border-top:1px solid #e6eae3;
  vertical-align:top;
  color:#4f5a64;
  font-size:13px;
  line-height:1.45;
}
#vcw-tool .vcw-calculation-panel tr:first-child th,
#vcw-tool .vcw-calculation-panel tr:first-child td{
  border-top:0;
}
#vcw-tool .vcw-calculation-panel th{
  width:28%;
  text-align:left;
  background:#f8f9f5;
  color:#121820;
  font-weight:850;
}
#vcw-tool .vcw-calculation-panel td:last-child{
  width:24%;
  text-align:right;
  white-space:nowrap;
  color:#121820;
  font-weight:750;
}

#vcw-tool .vcw-calculation-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
#vcw-tool .vcw-calc-copy{
  appearance:none;
  border:1px solid var(--vcw-accent-dark);
  background:var(--vcw-accent-dark);
  color:#fff;
  border-radius:999px;
  padding:9px 14px;
  font-size:13px;
  font-weight:850;
  cursor:pointer;
}
#vcw-tool .vcw-calc-copy:hover{background:#5f8f29;border-color:#5f8f29}
#vcw-tool .vcw-calc-summary-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin:14px 0 18px;
}
#vcw-tool .vcw-calc-summary-grid div{
  border:1px solid #dfe4dc;
  background:#f8f9f5;
  border-radius:10px;
  padding:13px;
}
#vcw-tool .vcw-calc-summary-grid span{
  display:block;
  color:#68727c;
  font-size:11px;
  font-weight:850;
  letter-spacing:.04em;
  margin-bottom:5px;
}
#vcw-tool .vcw-calc-summary-grid strong{
  display:block;
  color:#121820;
  font-size:18px;
  line-height:1.1;
  letter-spacing:-.03em;
}
@media(max-width:720px){
  #vcw-tool .vcw-calc-summary-grid{grid-template-columns:1fr 1fr}
  #vcw-tool .vcw-calculation-actions{width:100%;justify-content:space-between}
  #vcw-tool .vcw-calc-copy{flex:1}
}

@media(max-width:720px){
  #vcw-tool .vcw-calculation-panel{padding:18px;margin-top:22px}
  #vcw-tool .vcw-calculation-panel table,
  #vcw-tool .vcw-calculation-panel tbody,
  #vcw-tool .vcw-calculation-panel tr,
  #vcw-tool .vcw-calculation-panel th,
  #vcw-tool .vcw-calculation-panel td{display:block;width:100%}
  #vcw-tool .vcw-calculation-panel th{border-top:1px solid #e6eae3;border-bottom:0}
  #vcw-tool .vcw-calculation-panel tr:first-child th{border-top:0}
  #vcw-tool .vcw-calculation-panel td{border-top:0;padding-top:4px}
  #vcw-tool .vcw-calculation-panel td:last-child{text-align:left;white-space:normal;padding-top:4px;padding-bottom:14px}
}
@media print{
  #vcw-tool .vcw-hidden-calc-trigger,
  #vcw-tool .vcw-calculation-panel{display:none!important}
}

/* valuecase widget v1.2.6 - request page and dev calculation refinements */
#vcw-tool .vcw-request-detail{
  max-width:920px;
  margin:28px auto 0;
  text-align:center;
}
#vcw-tool .vcw-request-detail > p{
  margin:0 auto 18px;
  max-width:760px;
  color:#5f6870;
  font-size:16px;
  line-height:1.65;
}
#vcw-tool .vcw-request-detail .vcw-request-benefits{
  margin-top:0;
  margin-bottom:0;
}
#vcw-tool .vcw-request-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  max-width:920px;
  margin:24px auto 0;
  padding-top:22px;
  border-top:1px solid #dfe4dc;
}
#vcw-tool .vcw-calc-formula-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:10px 0 18px;
}
#vcw-tool .vcw-calc-formula-grid div{
  border:1px solid #dfe4dc;
  background:#fbfcf9;
  border-radius:10px;
  padding:14px;
}
#vcw-tool .vcw-calc-formula-grid strong,
#vcw-tool .vcw-calc-check-grid span{
  display:block;
  color:#121820;
  font-size:13px;
  line-height:1.25;
  font-weight:900;
  margin-bottom:5px;
}
#vcw-tool .vcw-calc-formula-grid span{
  display:block;
  color:#5f6870;
  font-size:12.5px;
  line-height:1.45;
  margin-bottom:8px;
}
#vcw-tool .vcw-calc-formula-grid em{
  display:block;
  font-style:normal;
  color:#121820;
  font-size:18px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.025em;
}
#vcw-tool .vcw-calc-check-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin:10px 0 18px;
}
#vcw-tool .vcw-calc-check-grid div{
  border:1px solid #dfe4dc;
  background:#f8f9f5;
  border-radius:10px;
  padding:13px;
  position:relative;
}
#vcw-tool .vcw-calc-check-grid strong{
  display:block;
  color:#121820;
  font-size:17px;
  line-height:1.1;
  letter-spacing:-.025em;
}
#vcw-tool .vcw-calc-check-grid em{
  position:absolute;
  top:10px;
  right:10px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#eef6e7;
  color:#5f8f29;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-style:normal;
  font-weight:900;
}
@media(max-width:720px){
  #vcw-tool .vcw-request-actions{flex-direction:column}
  #vcw-tool .vcw-request-actions .vcw-btn{width:100%}
  #vcw-tool .vcw-calc-formula-grid,
  #vcw-tool .vcw-calc-check-grid{grid-template-columns:1fr}
}


/* valuecase widget v1.2.10 updates */
#vcw-tool .vcw-range-entry{display:flex;justify-content:center;margin:0 auto 22px}
#vcw-tool input.vcw-range-number{width:170px;max-width:100%;font-size:34px;font-weight:900;letter-spacing:-.04em;padding:10px 16px;border-radius:999px}
#vcw-tool .vcw-inline-action{margin-top:18px;padding:11px 16px;font-size:14px}
#vcw-tool .vcw-breakdown-heading-row{max-width:920px;margin:24px auto 10px;display:flex;align-items:center;justify-content:space-between;gap:16px}
#vcw-tool .vcw-breakdown-heading-row .vcw-breakdown-title{margin:0}
#vcw-tool .vcw-download-subtle{appearance:none;border:0;background:transparent;color:#69737d;text-decoration:underline;text-underline-offset:3px;font-size:12px;cursor:pointer;padding:6px}
#vcw-tool .vcw-explanation-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:920px;margin:18px auto}
#vcw-tool .vcw-explanation-card{border:1px solid #dfe4dc;border-radius:12px;background:#f8f9f5;padding:22px;text-align:left}
#vcw-tool .vcw-explanation-card h4{margin:0 0 10px;color:#121820;font-size:20px;line-height:1.2}
#vcw-tool .vcw-explanation-card p{margin:0;text-align:left;max-width:none;font-size:14px;line-height:1.6}
#vcw-tool .vcw-result-cta-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:920px;margin:22px auto}
#vcw-tool .vcw-result-cta-card{border:1px solid #dfe4dc;border-radius:12px;background:#f8f9f5;padding:22px;text-align:left}
#vcw-tool .vcw-result-cta-card.featured{background:#121820;color:#fff;border-top:4px solid var(--vcw-accent)}
#vcw-tool .vcw-result-cta-card h4{margin:0 0 8px;font-size:22px;color:#121820}
#vcw-tool .vcw-result-cta-card.featured h4{color:#fff}
#vcw-tool .vcw-result-cta-card p{margin:0 0 16px;text-align:left;max-width:none;font-size:14px}
#vcw-tool .vcw-result-cta-card.featured p{color:rgba(255,255,255,.8)}
#vcw-tool .vcw-result-footnote{max-width:920px!important;margin:16px auto 0!important;font-size:12px!important;line-height:1.5!important;color:#69737d!important}
#vcw-tool .vcw-request-primary{max-width:820px;margin:18px auto;padding:26px;border-radius:14px;background:#121820;color:#fff;border-top:4px solid var(--vcw-accent);text-align:center}
#vcw-tool .vcw-request-primary h4{margin:0 0 8px;color:#fff;font-size:26px}
#vcw-tool .vcw-request-primary p{color:rgba(255,255,255,.82);margin:0 auto 18px}
#vcw-tool .vcw-request-primary input{background:#fff!important;color:#111820!important}
#vcw-tool .vcw-request-detail h4{font-size:22px;color:#121820;margin:24px 0 12px}
#vcw-tool .vcw-request-note.vcw-error{color:#ffd2d2}
@media(max-width:720px){
 #vcw-tool .vcw-explanation-grid,#vcw-tool .vcw-result-cta-grid{grid-template-columns:1fr}
 #vcw-tool .vcw-breakdown-heading-row{align-items:flex-start;flex-direction:column}
 #vcw-tool input.vcw-range-number{font-size:30px}
}

/* valuecase widget v1.2.20 - compact iPhone layout */
@media(max-width:480px){
  #vcw-tool .vcw-shell{
    padding:8px;
  }
  #vcw-tool .vcw-card{
    padding:14px 10px 12px;
  }
  #vcw-tool .vcw-card::before{
    margin:-2px 0 16px;
  }
  #vcw-tool .vcw-progress{
    margin-bottom:18px;
  }
  #vcw-tool .vcw-step{
    padding:8px 0 12px;
  }
  #vcw-tool .vcw-step h3{
    font-size:21px;
    line-height:1.17;
    margin:4px auto 9px;
  }
  #vcw-tool .vcw-step p{
    font-size:14px;
    line-height:1.48;
    margin-bottom:16px;
  }
  #vcw-tool .vcw-choice,
  #vcw-tool .vcw-level{
    padding:14px 13px;
    font-size:16px;
  }
  #vcw-tool .vcw-level{
    min-height:104px;
    gap:5px;
  }
  #vcw-tool .vcw-level strong{
    font-size:19px;
  }
  #vcw-tool .vcw-level span{
    font-size:12.5px;
    line-height:1.38;
  }
  #vcw-tool .vcw-nav{
    gap:8px;
    margin-top:14px;
    padding-top:14px;
  }
  #vcw-tool .vcw-nav .vcw-btn{
    min-width:0;
    padding:11px 8px;
    font-size:13px;
    line-height:1.2;
  }
  #vcw-tool .vcw-step-navigation{
    gap:7px;
    font-size:12px;
  }
  #vcw-tool .vcw-step-arrow{
    width:28px;
    height:28px;
    font-size:13px;
  }
}


/* valuecase widget v1.2.20 - iPhone/Safari bottom navigation fix */
@media(max-width:480px){
  #vcw-tool .vcw-card{
    padding-bottom:calc(28px + env(safe-area-inset-bottom, 0px));
  }
  #vcw-tool .vcw-step h3{
    font-size:19px;
    line-height:1.2;
    max-width:310px;
  }
  #vcw-tool .vcw-choice,
  #vcw-tool .vcw-level{
    padding:12px 12px;
  }
  #vcw-tool .vcw-level{
    min-height:94px;
  }
  #vcw-tool .vcw-level strong{
    font-size:18px;
    line-height:1.18;
  }
  #vcw-tool .vcw-nav{
    position:sticky;
    bottom:calc(12px + env(safe-area-inset-bottom, 0px));
    z-index:40;
    margin:12px -4px 0;
    padding:10px 4px 4px;
    background:rgba(255,255,255,.96);
    border-top:1px solid rgba(205,213,202,.9);
    box-shadow:0 -10px 22px rgba(18,24,32,.08);
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
  }
  #vcw-tool .vcw-nav .vcw-btn{
    min-height:46px;
    padding:9px 7px;
    font-size:13px;
  }
}

/* Mobile Safari keeps its expanded toolbar above the visual bottom edge. */
@supports (-webkit-touch-callout:none){
  @media(max-width:480px){
    #vcw-tool .vcw-card{
      padding-bottom:calc(92px + env(safe-area-inset-bottom, 0px));
    }
    #vcw-tool .vcw-nav{
      bottom:calc(72px + env(safe-area-inset-bottom, 0px));
    }
  }
}

/* valuecase widget v1.2.20 - true fixed mobile navigation */
@media(max-width:480px){
  #vcw-tool .vcw-shell{
    overflow:visible;
  }
  #vcw-tool .vcw-card{
    padding-bottom:110px;
  }
  #vcw-tool .vcw-nav{
    position:fixed;
    left:50%;
    right:auto;
    bottom:14px;
    width:min(620px, calc(100vw - 28px));
    transform:translateX(-50%);
    z-index:9999;
    margin:0;
    padding:9px;
    border:1px solid rgba(205,213,202,.95);
    border-radius:14px;
    background:rgba(255,255,255,.97);
    box-shadow:0 10px 30px rgba(18,24,32,.18);
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .18s ease, visibility .18s ease;
  }
  #vcw-tool.vcw-mobile-nav-visible .vcw-nav{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  #vcw-tool .vcw-nav .vcw-btn{
    min-height:46px;
    padding:9px 8px;
    font-size:13px;
  }
}

@supports (-webkit-touch-callout:none){
  @media(max-width:480px){
    #vcw-tool .vcw-card{
      padding-bottom:170px;
    }
    #vcw-tool .vcw-nav{
      bottom:calc(78px + env(safe-area-inset-bottom, 0px));
    }
  }
}

/* valuecase widget v1.2.20 - lower fixed navigation on iPhone */
@media(max-width:480px){
  #vcw-tool .vcw-card{
    padding-bottom:125px;
  }
  #vcw-tool .vcw-nav{
    bottom:calc(8px + env(safe-area-inset-bottom, 0px));
  }
}

/* Safari already positions fixed elements relative to the visible viewport.
   Do not add the browser toolbar height a second time. */
@supports (-webkit-touch-callout:none){
  @media(max-width:480px){
    #vcw-tool .vcw-card{
      padding-bottom:135px;
    }
    #vcw-tool .vcw-nav{
      bottom:calc(8px + env(safe-area-inset-bottom, 0px));
    }
  }
}

/* valuecase widget v1.2.20 - lower mobile bar, footer layering and smaller mobile typography */
@media(max-width:480px){
  /* Keep the controls above fixed/sticky website footers and chat bars. */
  #vcw-tool.vcw-mobile-nav-visible{
    position:relative;
    z-index:2147483000;
    isolation:isolate;
  }
  #vcw-tool .vcw-nav{
    bottom:calc(2px + env(safe-area-inset-bottom, 0px));
    z-index:2147483646;
  }

  /* Slightly smaller typography throughout the mobile tool. */
  #vcw-tool .vcw-step h3{font-size:18px;line-height:1.18}
  #vcw-tool .vcw-step p{font-size:13px;line-height:1.43}
  #vcw-tool .vcw-choice{font-size:14px;line-height:1.3}
  #vcw-tool .vcw-level strong{font-size:17px;line-height:1.16}
  #vcw-tool .vcw-level span{font-size:11.5px;line-height:1.34}
  #vcw-tool .vcw-step-navigation{font-size:11px}
  #vcw-tool .vcw-progress-meta,
  #vcw-tool .vcw-progress-percent{font-size:12px}
  #vcw-tool input,
  #vcw-tool select,
  #vcw-tool textarea{font-size:14px}
  #vcw-tool input.vcw-range-number{font-size:26px}

  #vcw-tool .vcw-cost-hero span,
  #vcw-tool .vcw-hero-result span{font-size:12px}
  #vcw-tool .vcw-cost-hero strong,
  #vcw-tool .vcw-hero-result strong{font-size:34px}
  #vcw-tool .vcw-cost-hero small,
  #vcw-tool .vcw-hero-result p{font-size:13px}
  #vcw-tool .vcw-explanation-card h4,
  #vcw-tool .vcw-result-cta-card h4,
  #vcw-tool .vcw-extra-value h4,
  #vcw-tool .vcw-request-detail h4{font-size:18px}
  #vcw-tool .vcw-explanation-card p,
  #vcw-tool .vcw-result-cta-card p,
  #vcw-tool .vcw-extra-value p,
  #vcw-tool .vcw-extra-value li,
  #vcw-tool .vcw-breakdown,
  #vcw-tool .vcw-assumptions,
  #vcw-tool .vcw-footer-note{font-size:12px}
  #vcw-tool .vcw-request-primary h4{font-size:21px}
  #vcw-tool .vcw-main-cta,
  #vcw-tool .vcw-inline-action,
  #vcw-tool .vcw-nav .vcw-btn{font-size:12.5px}
}

/* valuecase widget v1.2.20 - compact risk level cards on mobile */
@media(max-width:480px){
  /* Applies to the Schade, Verzuim and Personeelsverloop option cards. */
  #vcw-tool .vcw-level{
    min-height:82px;
    padding:10px 11px;
    gap:3px;
  }
  #vcw-tool .vcw-level strong{
    font-size:15px;
    line-height:1.15;
  }
  #vcw-tool .vcw-level span{
    font-size:10.5px;
    line-height:1.3;
  }
}
