/* Coverage verification widget */
.vhv-coverage{
  background:linear-gradient(135deg,#f1f7ff 0%,#e6f0fa 100%);
  padding:3rem 1.5rem;
  position:relative;
  overflow:hidden;
}
.vhv-coverage::before{
  content:"";
  position:absolute;
  top:-80px;right:-80px;
  width:300px;height:300px;
  background:radial-gradient(circle,rgba(0,97,165,.08) 0%,transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.vhv-cov-inner{
  max-width:900px;margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:2.5rem;
  align-items:center;
  position:relative;
  z-index:1;
}
@media(max-width:768px){.vhv-cov-inner{grid-template-columns:1fr;gap:1.5rem}}

.vhv-cov-text h2{
  color:#03274b;
  font-size:clamp(1.5rem,1.2rem+.9vw,1.9rem);
  margin:0 0 .75rem;
  line-height:1.25;
}
.vhv-cov-text h2 strong{color:#da251d}
.vhv-cov-text p{color:#4a5568;margin:0 0 .5rem;line-height:1.55}
.vhv-cov-benefits{list-style:none;padding:0;margin:1rem 0 0}
.vhv-cov-benefits li{padding:.25rem 0 .25rem 1.6rem;position:relative;color:#2d3748;font-size:.95rem}
.vhv-cov-benefits li:before{
  content:"✓";position:absolute;left:0;top:.25rem;
  color:#0061a5;font-weight:700;font-size:1rem
}

.vhv-cov-form{
  background:#fff;
  border-radius:14px;
  padding:1.75rem;
  box-shadow:0 10px 40px rgba(0,97,165,.12);
  border:1px solid #c4daea;
}
.vhv-cov-form h3{
  color:#03274b;
  font-size:1.15rem;
  margin:0 0 1.1rem;
  display:flex;align-items:center;gap:.5rem;
}
.vhv-cov-form h3 svg{width:22px;height:22px;stroke:#da251d;fill:none;stroke-width:2.2}

.vhv-cov-row{display:grid;grid-template-columns:2fr 1fr;gap:.65rem;margin-bottom:.75rem}
@media(max-width:500px){.vhv-cov-row{grid-template-columns:1fr}}

.vhv-cov-input,.vhv-cov-select{
  width:100%;
  padding:.7em 1em;
  border:1.5px solid #c4daea;
  border-radius:8px;
  background:#f9fcff;
  color:#2d3748;
  font-size:.98rem;
  font-family:inherit;
  box-sizing:border-box;
  transition:border-color .2s,box-shadow .2s;
}
.vhv-cov-input:focus,.vhv-cov-select:focus{
  border-color:#0061a5;
  background:#fff;
  box-shadow:0 0 0 3px rgba(0,97,165,.12);
}
.vhv-cov-input:focus-visible,.vhv-cov-select:focus-visible{
  outline:2px solid #0061a5;
  outline-offset:1px;
}
.vhv-cov-select{appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230061a5' d='M6 8L0 0h12z'/></svg>");background-repeat:no-repeat;background-position:right 1em center;padding-right:2.5em}

.vhv-cov-submit{
  width:100%;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  background:#da251d;
  color:#fff;
  border:none;
  border-radius:50px;
  padding:.85em 1em;
  font-family:"Ubuntu",sans-serif;
  font-weight:700;
  font-size:1.05rem;
  cursor:pointer;
  margin-top:.5rem;
  transition:all .25s;
  box-shadow:0 4px 15px rgba(218,37,29,.25);
}
.vhv-cov-submit:hover{
  background:#b70f07;
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(218,37,29,.4);
}
.vhv-cov-submit svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2.2}

.vhv-cov-hint{
  font-size:.82rem;color:#718096;text-align:center;
  margin:.75rem 0 0;line-height:1.4
}
.vhv-cov-hint a{color:#0061a5;text-decoration:none}

/* Response panel */
.vhv-cov-result{display:none}
.vhv-cov-result.show{display:block;animation:fadeIn .4s ease}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.vhv-cov-result-icon{
  width:56px;height:56px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1rem;
  background:#e8f6ee;color:#15803d;font-size:1.75rem;font-weight:700;
}
.vhv-cov-result.covered .vhv-cov-result-icon{background:#e8f6ee;color:#15803d}
.vhv-cov-result.partial .vhv-cov-result-icon{background:#fef3c7;color:#92400e}
.vhv-cov-result.pending .vhv-cov-result-icon{background:#fff4e0;color:#b45309}
.vhv-cov-result h3{text-align:center;margin:0 0 .5rem;color:#03274b}
.vhv-cov-result p{text-align:center;color:#4a5568;margin:0 0 1rem;font-size:.95rem}
.vhv-cov-contact-row{display:grid;grid-template-columns:1fr 1fr;gap:.65rem;margin-bottom:.75rem}
@media(max-width:500px){.vhv-cov-contact-row{grid-template-columns:1fr}}
