/* WindshieldHUB global components — production stylesheet (header + footer + mobile nav).
   Requires design-tokens.css. Approved footer is phone-only (no footer quote button). */

/* WindshieldHUB approved global header — styles. Requires design-tokens/tokens.css.
   Container-query responsive: full header ≥768px (with squeeze steps), logo-only ≤767px
   (the mobile conversion dock owns Call/Quote/Text/Services/Menu). */

whub-header-v2 {
  display: block;
  position: sticky;
  top: 0;
  z-index: 1000;
  container-type: inline-size;
  font-family: var(--whub-font);
}
/* Keep in-page anchor destinations clear of the sticky header */
html { scroll-padding-top: 104px; }

whub-header-v2 :focus-visible { outline: var(--whub-focus-ring); outline-offset: var(--whub-focus-offset); }

.whv2-bar {
  background: var(--whub-bg);
  border-bottom: 1px solid var(--whub-border);
  position: relative;
  transition: box-shadow .18s ease;
}
whub-header-v2.is-scrolled .whv2-bar { box-shadow: 0 3px 12px rgba(5, 59, 89, 0.12); }

.whv2-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: height .18s ease;
}
whub-header-v2.is-scrolled .whv2-inner { height: 78px; }

.whv2-logo { display: flex; align-items: center; flex: 0 0 auto; }
.whv2-logo img { width: 214px; height: auto; max-height: 52px; object-fit: contain; display: block; transition: width .18s ease; }
whub-header-v2.is-scrolled .whv2-logo img { width: 184px; }

.whv2-nav { display: flex; align-items: center; gap: 26px; }
.whv2-nav a, .whv2-services-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--whub-font);
  font-size: 15.5px; font-weight: var(--whub-weight-semibold);
  color: var(--whub-text-strong);
  text-decoration: none;
  background: none; border: none; cursor: pointer;
  padding: 10px 2px; min-height: 44px;
  white-space: nowrap;
}
.whv2-nav a:hover, .whv2-services-btn:hover { color: var(--whub-blue); }
.whv2-services-btn svg { transition: transform .15s; }
.whv2-services-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Services mega menu — full-width, absolute below the bar: no layout shift.
   Three labeled columns + restrained conversion strip. ~300px tall. */
.whv2-mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--whub-bg);
  border-top: 1px solid var(--whub-border);
  border-bottom: 1px solid var(--whub-border);
  box-shadow: var(--whub-shadow-lg);
  z-index: 60;
}
.whv2-mega[hidden] { display: none !important; }
.whv2-mega-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 24px 32px 18px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 8px 48px;
}
.whv2-mega-col { display: flex; flex-direction: column; }
.whv2-mega-heading {
  margin: 0 0 6px;
  font-size: 12px; font-weight: var(--whub-weight-extrabold);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--whub-accent);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--whub-border);
}
.whv2-mega-col a {
  display: flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: var(--whub-weight-semibold);
  color: var(--whub-text-strong); text-decoration: none;
  padding: 10px 0; min-height: 44px;
}
.whv2-mega-col a:hover { color: var(--whub-blue); }
.whv2-mega-col a.whv2-mega-all { color: var(--whub-blue); font-weight: var(--whub-weight-bold); }
.whv2-mega-col a.whv2-mega-all:hover { color: var(--whub-accent); }
/* Restrained conversion strip — supports conversion without competing with the header CTA */
.whv2-mega-strip {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap;
  border-top: 1px solid var(--whub-border);
  margin-top: 10px;
  padding: 14px 0 4px;
}
.whv2-mega-tagline { font-size: 15px; font-weight: var(--whub-weight-extrabold); color: var(--whub-navy); }
.whv2-mega-tagline .b { color: var(--whub-blue); }
.whv2-mega-strip a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: var(--whub-weight-bold);
  color: var(--whub-accent); text-decoration: none;
  min-height: 44px;
}
.whv2-mega-strip a:hover { color: var(--whub-link-hover); }

/* 24/7 call area */
.whv2-support { display: flex; align-items: center; gap: 12px; margin-left: auto; flex: 0 0 auto; text-decoration: none; }
.whv2-support-text { display: flex; flex-direction: column; line-height: 1.25; }
.whv2-badge { width: 78px; height: auto; display: block; transition: width .18s ease; }
whub-header-v2.is-scrolled .whv2-badge { width: 70px; }
/* Tablet-only controls (hidden by default) */
.whv2-tab-call, .whv2-tab-quote, .whv2-tab-menu { display: none; }
.whv2-support-label {
  font-size: 11.5px; font-weight: var(--whub-weight-extrabold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--whub-text-muted);
}
.whv2-support-text strong { font-size: 17px; font-weight: var(--whub-weight-extrabold); color: var(--whub-text); white-space: nowrap; }
.whv2-support:hover .whv2-support-text strong { color: var(--whub-blue); }

/* Instant Quote pill */
.whv2-quote {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-width: 155px; height: 46px; padding: 0 26px;
  background: var(--whub-action); color: #ffffff;
  font-size: 15px; font-weight: var(--whub-weight-bold);
  border-radius: var(--whub-radius-pill);
  box-shadow: 0 3px 10px rgba(8, 153, 205, 0.28);
  text-decoration: none; text-align: center;
  flex: 0 0 auto;
  transition: background .15s, box-shadow .15s;
}
.whv2-quote:hover { background: var(--whub-action-hover); box-shadow: 0 5px 14px rgba(8, 153, 205, 0.36); }
.whv2-quote:hover .whv2-quote-arrow { transform: translateX(2px); }
.whv2-quote:active { background: var(--whub-action-hover); box-shadow: 0 2px 6px rgba(8, 153, 205, 0.30); }
.whv2-quote:focus-visible { outline: 3px solid var(--whub-navy); outline-offset: 2px; }
.whv2-quote-arrow { display: inline-flex; transition: transform .15s; }
whub-header-v2.is-scrolled .whv2-quote { min-width: 148px; height: 44px; font-size: 14.5px; padding: 0 22px; }

@media (prefers-reduced-motion: reduce) {
  .whv2-inner, .whv2-logo img, .whv2-bar, .whv2-badge, .whv2-services-btn svg, .whv2-quote, .whv2-quote-arrow { transition: none; }
}

/* ---- Responsive ----
   Desktop ≥1100px: full header + mega menu.
   Tablet 768–1099px: compact header — logo, compact Call, Instant Quote, Menu trigger
   (opens the same branded drawer owned by the dock component).
   Mobile ≤767px: logo-only header (scrolls naturally) + fixed conversion dock. */
@container (max-width: 1240px) {
  .whv2-badge { display: none; }
}
@container (max-width: 1099px) {
  .whv2-nav, .whv2-support, .whv2-quote, .whv2-mega { display: none; }
  .whv2-inner { height: 72px; padding: 0 20px; gap: 10px; }
  whub-header-v2.is-scrolled .whv2-inner { height: 72px; }
  .whv2-logo { margin-right: auto; }
  .whv2-logo img { width: 180px; }
  whub-header-v2.is-scrolled .whv2-logo img { width: 180px; }
  .whv2-tab-call {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; color: var(--whub-blue); text-decoration: none;
  }
  .whv2-tab-call:hover { color: var(--whub-accent); }
  .whv2-tab-quote {
    display: inline-flex; align-items: center; justify-content: center;
    height: 44px; padding: 0 20px;
    background: var(--whub-action); color: #ffffff;
    font-size: 13.5px; font-weight: var(--whub-weight-bold);
    border-radius: var(--whub-radius-pill);
    box-shadow: 0 3px 10px rgba(8, 153, 205, 0.28);
    text-decoration: none; white-space: nowrap;
  }
  .whv2-tab-quote:hover { background: var(--whub-action-hover); }
  .whv2-tab-menu {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: none; border: none; cursor: pointer;
    color: var(--whub-text-strong);
  }
  .whv2-tab-menu:hover { color: var(--whub-blue); }
}
/* Mobile: logo only — the bottom dock carries every conversion action */
@container (max-width: 767px) {
  .whv2-inner { height: 62px; padding: 0 16px; }
  whub-header-v2.is-scrolled .whv2-inner { height: 62px; }
  .whv2-logo img { width: 168px; }
  whub-header-v2.is-scrolled .whv2-logo img { width: 168px; }
  .whv2-tab-call, .whv2-tab-quote, .whv2-tab-menu { display: none; }
  whub-header-v2 { position: static; }
}
@container (max-width: 374px) {
  .whv2-logo img { width: 150px; }
}


/* WindshieldHUB approved global footer — styles. Requires design-tokens/tokens.css.
   White card on light blue-gray shell, blue accent line, logo directly on white.
   Container-query responsive with mobile accordions (one open at a time). */

whub-footer-v2 { display: block; container-type: inline-size; font-family: var(--whub-font); }
whub-footer-v2 :focus-visible { outline: var(--whub-focus-ring); outline-offset: var(--whub-focus-offset); }

.whv2-footer { background: var(--whub-bg-shell); padding: 36px 32px 0; }
.whv2-card {
  max-width: 1216px; margin: 0 auto;
  background: var(--whub-bg);
  border-radius: var(--whub-radius-2xl);
  overflow: hidden;
  box-shadow: var(--whub-shadow-card);
}
.whv2-accent { height: 4px; background: var(--whub-blue); }
.whv2-main { padding: 30px 40px 24px; }

.whv2-brandrow {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px 40px; flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--whub-border);
}
.whv2-brand { display: flex; flex-direction: column; gap: 12px; }
.whv2-brand > a { align-self: flex-start; }
.whv2-brand img { height: 40px; width: auto; display: block; }
/* Tagline: one line when space allows; only permitted wrap point is after the "?" */
.whv2-tagline { margin: 0; font-size: 27px; font-weight: var(--whub-weight-extrabold); line-height: 1.15; color: var(--whub-navy); }
.whv2-tagline span { white-space: nowrap; }
.whv2-tagline .b { color: var(--whub-blue); }
.whv2-sub { margin: 0; font-size: 14px; color: var(--whub-text-muted); }

.whv2-call { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.whv2-call img { width: 110px; height: auto; display: block; }
.whv2-call-text { display: flex; flex-direction: column; }
.whv2-call-text span { font-size: 13px; color: var(--whub-text-muted); }
.whv2-call-text strong { font-size: 22px; font-weight: var(--whub-weight-extrabold); color: var(--whub-navy); }
.whv2-call:hover .whv2-call-text strong { color: var(--whub-blue); }
/* Brand-row conversion area: badge + phone ONLY — the approved footer has no quote button */
.whv2-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.whv2-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--whub-border);
}
.whv2-col { display: flex; flex-direction: column; }
.whv2-col-title {
  margin: 0 0 10px;
  font-size: 13px; font-weight: var(--whub-weight-extrabold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--whub-heading);
}
.whv2-acc-btn { display: none; }
.whv2-acc-panel { display: flex; flex-direction: column; gap: 9px; }
.whv2-acc-panel a { font-size: 13.5px; color: var(--whub-text-muted); text-decoration: none; }
.whv2-acc-panel a:hover { color: var(--whub-accent); }
/* Compact phone contact: mobile-only, once, inside Locations & Help */
.whv2-phone-mobile { display: none !important; font-weight: var(--whub-weight-bold); color: var(--whub-navy) !important; }

/* Utility row: social icons left, legal/help links right, divider above (from .whv2-cols) */
.whv2-legal {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px 24px; flex-wrap: wrap;
  padding-top: 18px;
}
/* Social icons — circular navy containers, action-blue fill on hover/focus, official marks.
   Hit area expands to ≅45px via ::before without growing the 33px visual circle. */
.whv2-social { display: flex; align-items: center; gap: 12px; }
.whv2-social a {
  position: relative;
  width: 33px; height: 33px; border-radius: 50%;
  border: 1.5px solid var(--whub-navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--whub-navy);
  transition: background .15s, border-color .15s, color .15s;
}
.whv2-social a svg { display: block; }
.whv2-social a::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; }
.whv2-social a:hover, .whv2-social a:active, .whv2-social a:focus-visible {
  background: var(--whub-action);
  border-color: var(--whub-action);
  color: #ffffff;
}
/* Legal/help links — right-aligned on desktop, one line when width permits */
.whv2-legal-links { display: flex; align-items: center; justify-content: flex-end; gap: 6px 18px; flex-wrap: wrap; margin-left: auto; }
.whv2-legal-links a { font-size: 12.5px; color: var(--whub-text-muted); text-decoration: none; padding: 12px 0; min-height: 44px; display: flex; align-items: center; }
.whv2-legal-links a:hover { color: var(--whub-accent); }
.whv2-copy { max-width: 1216px; margin: 0 auto; text-align: center; padding: 16px 0 20px; font-size: 12.5px; color: var(--whub-text-muted) /* WCAG AA */; }

/* ---- Responsive ---- */
@container (max-width: 1023px) {
  .whv2-main { padding: 26px 30px 22px; }
  .whv2-cols { grid-template-columns: repeat(2, 1fr); }
}

@container (max-width: 767px) {
  .whv2-footer { padding: 24px 16px 0; }
  .whv2-main { padding: 24px 22px 20px; }
  .whv2-brandrow { flex-direction: column; align-items: flex-start; gap: 18px; }
  .whv2-tagline { font-size: 23px; }
  /* Mobile: the fixed conversion dock is primary */
  .whv2-call { display: none; }
  .whv2-phone-mobile { display: flex !important; }
  .whv2-cols { grid-template-columns: 1fr; gap: 0; padding: 4px 0; }
  .whv2-col { border-bottom: 1px solid var(--whub-border); }
  .whv2-col:last-child { border-bottom: none; }
  .whv2-col-title { display: none; }
  .whv2-acc-btn {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; min-height: 52px;
    background: none; border: none; cursor: pointer;
    font-family: var(--whub-font);
    font-size: 13.5px; font-weight: var(--whub-weight-extrabold);
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--whub-heading);
    padding: 0; text-align: left;
  }
  .whv2-acc-btn svg { transition: transform .15s; }
  .whv2-acc-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
  .whv2-acc-panel { display: none; padding: 2px 0 16px; gap: 0; }
  .whv2-col.open .whv2-acc-panel { display: flex; animation: whv2AccIn .18s ease; }
  .whv2-acc-panel a { padding: 11px 0; min-height: 44px; display: flex; align-items: center; }
  /* Social row first; legal/help links wrap naturally beneath, touch-friendly */
  .whv2-legal { flex-direction: column; align-items: flex-start; gap: 14px; }
  .whv2-legal-links { justify-content: flex-start; margin-left: 0; }
  .whv2-legal-links a { padding: 10px 0; min-height: 44px; display: flex; align-items: center; }
  .whv2-social { gap: 10px; }
  .whv2-social a { width: 44px; height: 44px; }
}

@container (max-width: 389px) {
  .whv2-tagline { font-size: 21px; }
}

@keyframes whv2AccIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .whv2-acc-btn svg { transition: none; }
  .whv2-col.open .whv2-acc-panel { animation: none; }
  .whv2-social a { transition: none; }
}


/* WindshieldHUB approved mobile conversion dock — styles.
   Dock + branded Services bottom sheet + branded full Menu drawer.
   Requires design-tokens/tokens.css. Mobile only: hidden ≥768px
   (preview frames use the [contained] attribute, which always shows it). */

whub-mobile-dock-v2 { display: block; font-family: var(--whub-font); }
whub-mobile-dock-v2 :focus-visible { outline: 3px solid var(--whub-navy); outline-offset: 2px; }

.whv2-dock {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 1050;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  background: var(--whub-bg);
  border-top: 1px solid var(--whub-border);
  box-shadow: 0 -2px 10px rgba(5, 59, 89, 0.08);
  padding: 7px 4px calc(7px + env(safe-area-inset-bottom));
}
whub-mobile-dock-v2[contained] .whv2-dock { position: absolute; }
/* Tablet 768–1099px: hide the dock BAR but keep the host mounted — the tablet header's
   Menu trigger opens this component's drawer. ≥1100px the whole component hides. */
@media (min-width: 768px) { whub-mobile-dock-v2:not([contained]) .whv2-dock { display: none; } }
@media (min-width: 1100px) { whub-mobile-dock-v2:not([contained]) { display: none; } }
/* Dock hides while the full Menu drawer is open (drawer carries the one Instant Quote CTA) */
whub-mobile-dock-v2.drawer-open .whv2-dock { display: none; }

.whv2-dock-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 48px; min-width: 48px; padding: 4px 2px;
  color: var(--whub-navy); text-decoration: none;
  font-size: 11px; font-weight: var(--whub-weight-bold);
}
button.whv2-dock-item { background: none; border: none; cursor: pointer; font-family: var(--whub-font); width: 100%; }
.whv2-dock-item:hover { color: var(--whub-blue); }

.whv2-dock-center { display: flex; justify-content: center; }
.whv2-dock-quote {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  width: 64px; height: 64px; margin-top: -24px;
  background: var(--whub-action); color: #ffffff;
  border-radius: 50%;
  border: 3px solid var(--whub-bg);
  box-shadow: 0 4px 12px rgba(8, 153, 205, 0.35);
  text-decoration: none;
  font-size: 9.5px; font-weight: var(--whub-weight-extrabold);
  line-height: 1.15; text-align: center;
}
.whv2-dock-quote:hover { background: var(--whub-action-hover); }
.whv2-dock-quote-label { max-width: 52px; }

/* Shared overlay for sheet + drawer */
.whv2-dock-overlay { position: fixed; inset: 0; background: rgba(10, 30, 42, 0.55); z-index: 1080; }
.whv2-dock-overlay[hidden] { display: none !important; }
whub-mobile-dock-v2[contained] .whv2-dock-overlay { position: absolute; }

/* ---- Branded Services bottom sheet ---- */
.whv2-sheet {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 1090;
  background: var(--whub-bg);
  border-radius: var(--whub-radius-2xl) var(--whub-radius-2xl) 0 0;
  border-top: 3px solid var(--whub-blue);
  box-shadow: 0 -10px 40px rgba(5, 59, 89, 0.25);
  max-height: 82%;
  overflow-y: auto;
  padding: 10px 22px calc(18px + env(safe-area-inset-bottom));
}
.whv2-sheet[hidden] { display: none !important; }
whub-mobile-dock-v2[contained] .whv2-sheet { position: absolute; }
/* Entry animations removed on purpose: in some environments a running keyframe never
   advances past its from-frame, permanently freezing whatever it sets. The overlay
   provides the open/close affordance instead. */

.whv2-sheet-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding: 12px 0 6px; }
.whv2-sheet-brand { display: flex; flex-direction: column; gap: 8px; }
.whv2-sheet-brand img { width: 120px; height: auto; display: block; }
.whv2-sheet-brand h2 {
  margin: 0;
  font-size: 17px; font-weight: var(--whub-weight-extrabold);
  color: var(--whub-navy);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--whub-blue);
  align-self: flex-start;
}
.whv2-sheet-close, .whv2-drawer-close {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--whub-text);
}
.whv2-sheet-close:hover, .whv2-drawer-close:hover { color: var(--whub-blue); }
.whv2-sheet nav { display: flex; flex-direction: column; padding-top: 4px; }
.whv2-sheet nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 15px; font-weight: var(--whub-weight-semibold);
  color: var(--whub-navy); text-decoration: none;
  padding: 13px 2px; min-height: 50px;
  border-bottom: 1px solid var(--whub-border);
}
.whv2-sheet nav a:hover { color: var(--whub-blue); }
.whv2-sheet nav a svg { color: var(--whub-blue); flex: 0 0 auto; }
.whv2-sheet nav a.whv2-sheet-all { color: var(--whub-blue); font-weight: var(--whub-weight-bold); border-bottom: none; }
.whv2-sheet nav a.whv2-sheet-all:hover { color: var(--whub-accent); }

/* ---- Branded full Menu drawer (right slide-in) ---- */
.whv2-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 92vw;
  z-index: 1090;
  background: var(--whub-bg);
  box-shadow: -18px 0 50px rgba(5, 59, 89, 0.28);
  overflow-y: auto;
  display: flex; flex-direction: column;
  padding: 0 22px calc(22px + env(safe-area-inset-bottom));
}
.whv2-drawer[hidden] { display: none !important; }
whub-mobile-dock-v2[contained] .whv2-drawer { position: absolute; }

.whv2-drawer-accent { height: 3px; background: var(--whub-blue); margin: 0 -22px; }
.whv2-drawer-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 0 10px; }
.whv2-drawer-top img { height: 38px; width: auto; display: block; }

.whv2-drawer-nav { display: flex; flex-direction: column; padding-bottom: 18px; }
.whv2-drawer-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%;
  font-family: var(--whub-font);
  font-size: 15px; font-weight: var(--whub-weight-bold);
  color: var(--whub-navy); text-decoration: none;
  background: none; border: none; cursor: pointer;
  padding: 15px 2px; min-height: 54px;
  border-bottom: 1px solid var(--whub-border);
  text-align: left;
}
.whv2-drawer-row:hover { color: var(--whub-blue); }
.whv2-drawer-row svg { color: var(--whub-blue); flex: 0 0 auto; transition: transform .15s; }
.whv2-drawer-acc-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.whv2-drawer-acc { display: flex; flex-direction: column; padding: 4px 0 8px; border-bottom: 1px solid var(--whub-border); }
.whv2-drawer-acc[hidden] { display: none !important; }
.whv2-drawer-acc a {
  display: flex; align-items: center;
  font-size: 14.5px; font-weight: var(--whub-weight-semibold);
  color: var(--whub-text-strong); text-decoration: none;
  padding: 10px 14px; min-height: 44px;
}
.whv2-drawer-acc a:hover { color: var(--whub-blue); }
.whv2-drawer-acc a.whv2-drawer-all { color: var(--whub-blue); font-weight: var(--whub-weight-bold); }

/* Compact 24/7 support card — trust without consuming the drawer */
.whv2-drawer-support {
  margin-top: auto;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
  background: var(--whub-bg-tint);
  border: 1px solid var(--whub-border-card-soft);
  border-radius: var(--whub-radius-lg);
  padding: 14px 16px 16px;
}
.whv2-drawer-support-label {
  font-size: 12px; font-weight: var(--whub-weight-extrabold);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--whub-text-muted);
}
.whv2-drawer-support img { width: 118px; height: auto; }
.whv2-drawer-phone { font-size: 20px; font-weight: var(--whub-weight-extrabold); color: var(--whub-navy); text-decoration: none; }
.whv2-drawer-phone:hover { color: var(--whub-blue); }
.whv2-drawer-quote {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; height: 44px; margin-top: 4px;
  background: var(--whub-action); color: #ffffff;
  font-size: 14.5px; font-weight: var(--whub-weight-bold);
  border-radius: var(--whub-radius-pill);
  box-shadow: 0 3px 10px rgba(8, 153, 205, 0.28);
  text-decoration: none;
}
.whv2-drawer-quote:hover { background: var(--whub-action-hover); }
.whv2-drawer-quote:hover .whv2-quote-arrow { transform: translateX(2px); }
.whv2-drawer-quote .whv2-quote-arrow { display: inline-flex; transition: transform .15s; }


@media (prefers-reduced-motion: reduce) {
  .whv2-drawer-row svg, .whv2-drawer-quote .whv2-quote-arrow { transition: none; }
}
