/* ═══════════════════════════════════════════════════════════════════
   Vehicle Cover — V2 design system
   Loaded only by layouts/v2.liquid, after the shared v1 CSS files.
   Everything is namespaced: v2h- (header), v2f- (footer), v2- (components,
   shared with the /v2/ homepage patterns).
   ═══════════════════════════════════════════════════════════════════ */

/* ── Self-hosted Inter (was Google Fonts; v2-only) ── */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter/inter-latin-ext-400.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter/inter-latin-400.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter/inter-latin-ext-500.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter/inter-latin-500.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter/inter-latin-ext-600.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter/inter-latin-600.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter/inter-latin-ext-700.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter/inter-latin-700.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ── V2 typography corrections over the v1 base ──
   v1's typography.css justifies every <p>, which produces stretched word-gap
   "rivers" in prose; V2 uses ragged-right. Headings balance their line breaks
   so multi-line titles don't strand a single word on the last line. */
.v2-body p { text-align: left; }
.v2-body h1, .v2-body h2, .v2-body h3 { text-wrap: balance; }

/* ── Buttons: outline-white lives inline in v1's hero.liquid — define here ── */
.btn-outline-white {
  background: transparent;
  color: var(--color-text-light);
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; }

/* ═══════════ Header ═══════════ */
.v2h-topbar { background: var(--color-bg-dark); color: rgba(255, 255, 255, 0.85); font-size: 13px; }
.v2h-topbar-inner { max-width: var(--max-width); margin: 0 auto; padding: 7px var(--section-px); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.v2h-topbar-reg { display: inline-flex; align-items: center; gap: 7px; }
.v2h-topbar-reg svg { color: var(--color-accent); }
.v2h-topbar-contact { display: inline-flex; align-items: center; gap: 16px; }
.v2h-topbar-hours { color: rgba(255, 255, 255, 0.75); display: inline-flex; align-items: center; gap: 6px; }
.v2h-topbar-hours svg { color: var(--color-accent); }

.v2h { position: sticky; top: 0; z-index: 100; background: var(--color-bg); border-bottom: 1px solid var(--color-border); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); }
.v2h-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--section-px); display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 64px; }
.v2h-logo { display: flex; align-items: center; flex-shrink: 0; }
.v2h-logo img { display: block; }

.v2h-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; }
.v2h-item { position: relative; }
.v2h-item > a { display: inline-flex; align-items: center; gap: 5px; padding: 22px 10px; font-size: 15px; font-weight: 600; color: var(--color-text); text-decoration: none; transition: color var(--transition-fast); }
.v2h-item > a:hover { color: var(--color-primary); }
.v2h-item > a svg { color: var(--color-text-muted); transition: transform var(--transition-fast); }
.v2h-item.has-children:hover > a svg { transform: rotate(180deg); }
.v2h-drop { position: absolute; top: 100%; left: 0; min-width: 250px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all var(--transition-fast); }
.v2h-item:hover .v2h-drop, .v2h-item:focus-within .v2h-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.v2h-drop a { display: block; padding: 9px 18px; font-size: 14px; color: var(--color-text); text-decoration: none; }
.v2h-drop a:hover { background: rgba(0, 103, 108, 0.06); color: var(--color-primary); }

.v2h-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.v2h-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; color: var(--color-primary); text-decoration: none; white-space: nowrap; }
.v2h-phone:hover { color: var(--color-primary-dark); }
.v2h-cta { background: var(--color-primary); color: #fff; font-size: 14.5px; font-weight: 700; padding: 11px 20px; border-radius: var(--radius-md); text-decoration: none; white-space: nowrap; transition: background var(--transition-fast); }
.v2h-cta:hover { background: var(--color-primary-dark); color: #fff; }

.v2h-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 9px; background: none; border: 1px solid var(--color-border); border-radius: var(--radius-md); cursor: pointer; }
.v2h-burger span { display: block; height: 2px; width: 100%; background: var(--color-text); border-radius: 2px; transition: all var(--transition-fast); }
.v2h-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2h-burger.open span:nth-child(2) { opacity: 0; }
.v2h-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v2h-mobile { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: var(--color-bg); z-index: 200; box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18); flex-direction: column; transform: translateX(100%); transition: transform 0.28s ease; }
.v2h-mobile.open { transform: translateX(0); }
.v2h-mobile-scroll { flex: 1; overflow-y: auto; padding: 76px 22px 20px; }
.v2h-mobile-link, .v2h-mobile-group > button { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 13px 2px; font-size: 16px; font-weight: 600; color: var(--color-text); text-decoration: none; background: none; border: 0; border-bottom: 1px solid var(--color-border); cursor: pointer; text-align: left; font-family: var(--font-primary); }
.v2h-mobile-group > button svg { transition: transform var(--transition-fast); }
.v2h-mobile-group.open > button svg { transform: rotate(180deg); }
.v2h-mobile-children { display: none; padding: 4px 0 8px; }
.v2h-mobile-group.open .v2h-mobile-children { display: block; }
.v2h-mobile-children a { display: block; padding: 9px 14px; font-size: 14.5px; color: var(--color-text-muted); text-decoration: none; }
.v2h-mobile-children a:hover { color: var(--color-primary); }
.v2h-mobile-ctas { padding: 16px 22px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 10px; }

@media (max-width: 1240px) {
  .v2h-phone span { display: none; }
}
@media (max-width: 1080px) {
  .v2h-nav { display: none; }
  .v2h-burger { display: flex; }
  .v2h-mobile { display: flex; }
}
@media (max-width: 640px) {
  .v2h-topbar-reg { display: none; }
  .v2h-topbar-inner { justify-content: center; }
  .v2h-cta { display: none; }
}

/* ═══════════ Areas strip (light band just before the footer) ═══════════ */
.v2-areas { background: var(--color-bg-alt); border-top: 1px solid var(--color-border); padding: 44px 0; }
.v2-areas-head { max-width: 720px; margin-bottom: var(--spacing-lg); }
.v2-areas-head h2 { font-size: 22px; margin: 0 0 6px; }
.v2-areas-head p { color: var(--color-text-muted); font-size: 14.5px; margin: 0; }
.v2-areas-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-areas-chips .v2-chip { background: var(--color-bg); }
.v2-areas-chips .v2-chip:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.v2-chip-solid { background: var(--color-primary) !important; color: #fff !important; border-color: var(--color-primary) !important; font-weight: 600; }
.v2-chip-solid:hover { background: var(--color-primary-dark) !important; }

/* ═══════════ Footer ═══════════ */
.v2f { background: var(--color-bg-dark); color: rgba(255, 255, 255, 0.8); }
.v2f-main { max-width: var(--max-width); margin: 0 auto; padding: 56px var(--section-px) 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.v2f-logo { filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 14px; }
.v2f-brand p { font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; }
.v2f-contact { display: flex; flex-direction: column; gap: 9px; }
.v2f-contact a, .v2f-contact span { display: inline-flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, 0.85); font-size: 14.5px; text-decoration: none; }
.v2f-contact a:hover { color: var(--color-accent); }
.v2f-contact svg { color: var(--color-accent); flex-shrink: 0; }
.v2f-col .v2f-heading { color: #fff; font-size: 15px; margin: 0 0 14px; letter-spacing: 0.3px; }
.v2f-col ul { list-style: none; margin: 0; padding: 0; }
.v2f-col li { margin-bottom: 9px; }
.v2f-col li a { color: rgba(255, 255, 255, 0.72); font-size: 14px; text-decoration: none; transition: color var(--transition-fast); }
.v2f-col li a:hover { color: var(--color-accent); }

.v2f-legal { max-width: var(--max-width); margin: 0 auto; padding: 20px var(--section-px) 28px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.v2f-legal p { font-size: 12.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.5); margin: 0 0 8px; }

@media (max-width: 1024px) { .v2f-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .v2f-main { grid-template-columns: 1fr; gap: 28px; } }

/* ═══════════ Cookie banner (floating box, bottom-left — took over the spot
   the V1 compare pill used to occupy) ═══════════ */
.v2-cookies { position: fixed; left: 16px; bottom: 16px; z-index: 180; max-width: 400px; background: var(--color-bg); border: 1px solid rgba(0, 103, 108, 0.2); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 18px 20px; }
.v2-cookies[hidden] { display: none; }
.v2-cookies-text strong { display: block; font-size: 15px; margin-bottom: 6px; }
.v2-cookies-text p { font-size: 13.5px; line-height: 1.55; color: var(--color-text-muted); margin: 0 0 14px; }
.v2-cookies-text a { color: var(--color-primary); font-weight: 600; }
.v2-cookies-actions { display: flex; gap: 10px; }
.v2-cookies-btn { flex: 1; padding: 10px 14px; border-radius: var(--radius-md); font-family: var(--font-primary); font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition-fast); }
.v2-cookies-btn.is-primary { background: var(--color-primary); border: 1px solid var(--color-primary); color: #fff; }
.v2-cookies-btn.is-primary:hover { background: var(--color-primary-dark); }
.v2-cookies-btn.is-ghost { background: transparent; border: 1px solid var(--color-border); color: var(--color-text); }
.v2-cookies-btn.is-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
@media (max-width: 640px) {
  .v2-cookies { left: 10px; right: 10px; bottom: 62px; max-width: none; }
}

/* ═══════════ Shared section patterns ═══════════ */
.v2-label { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: var(--color-primary); margin-bottom: var(--spacing-md); text-transform: uppercase; }
.v2-label-light { color: var(--color-accent); }
.v2-section-head { max-width: 720px; margin-bottom: var(--spacing-2xl); }
.v2-section-head h2 { font-size: 36px; line-height: 1.2; margin-bottom: var(--spacing-md); }
.v2-section-head p { color: var(--color-text-muted); font-size: 17px; }
/* Compact form card — the hero + form must fit a laptop fold at one glance.
   NB: forms.css loads AFTER v2.css, so the wrapper override needs the double
   class to win the cascade. */
.v2-form-card { box-shadow: var(--shadow-lg); }
.quote-form-wrapper.v2-form-card { padding: 24px 28px; }
.v2-form-card .form-step-title { font-size: 21px; margin-bottom: 4px; }
.v2-form-card .form-step-subtitle { font-size: 14px; margin-bottom: 14px; }
.v2-form-card .form-group { margin-bottom: 10px; gap: 4px; }
.v2-form-card .form-group label { font-size: 13.5px; }
.v2-form-card .form-group input:not([type="radio"]):not([type="checkbox"]),
.v2-form-card .form-group select,
.v2-form-card .form-group textarea { padding: 10px 14px; font-size: 15px; }
.v2-form-card .form-checkbox-option { font-size: 13px; }
.v2-form-card .form-nav { margin-top: 6px; }
/* Single-step lead form: no back button, so the empty left slot of the
   space-between nav pushed the submit off-centre. Full-width centred CTA. */
.v2-form-card .form-nav-left { display: none; }
.v2-form-card .form-nav-right { width: 100%; }
.v2-form-card .form-nav-right .form-nav-submit { width: 100%; justify-content: center; text-align: center; }
/* When form-rows stack on mobile (forms.css, 768px), the 16px grid gap sat
   on top of each group's own 10px margin, making pair fields (phone/email,
   date/time) further apart than everything else. Zero the gap so the group
   margins alone set one even rhythm. */
@media (max-width: 768px) {
  .v2-form-card .form-row { gap: 0; }
}
.v2-form-reassure { margin: 10px 0 0; font-size: 12.5px; color: var(--color-text-muted); text-align: center; }

/* Ticks (light, on dark backgrounds) */
.v2-hero-ticks { list-style: none; padding: 0; margin: 0 0 var(--spacing-lg); }
.v2-hero-ticks li { position: relative; padding-left: 30px; color: rgba(255, 255, 255, 0.92); font-size: 15.5px; margin-bottom: 8px; }
.v2-hero-ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--color-accent); }
.v2-hero-ticks li::after { content: ""; position: absolute; left: 5px; top: 8px; width: 8px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* Chips */
.v2-chip { font-size: 13.5px; font-weight: 500; color: var(--color-primary); background: rgba(0, 103, 108, 0.07); border: 1px solid rgba(0, 103, 108, 0.18); padding: 6px 14px; border-radius: var(--radius-full); text-decoration: none; transition: background var(--transition-fast); }
.v2-chip:hover { background: rgba(0, 103, 108, 0.14); }

/* Trust band */
.v2-trustband { background: var(--color-bg-dark); padding: 28px 0; }
.v2-trustband-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-lg); }
.v2-trust-item { display: flex; align-items: center; gap: 14px; color: var(--color-text-light); }
.v2-trust-item svg { color: var(--color-accent); flex-shrink: 0; }
.v2-trust-item strong { display: block; font-size: 15px; }
.v2-trust-item span { display: block; font-size: 13px; color: rgba(255, 255, 255, 0.65); }

/* Card grids (services, why-cards) */
.v2-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-lg); }
.v2-service-card { position: relative; display: flex; flex-direction: column; background: var(--color-bg); border: 1px solid rgba(0, 103, 108, 0.16); border-radius: var(--radius-lg); padding: var(--spacing-xl) var(--spacing-lg); text-decoration: none; color: var(--color-text); box-shadow: 0 3px 14px rgba(6, 43, 45, 0.08); transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal); }
.v2-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.v2-service-flag { position: absolute; top: 14px; right: 14px; background: var(--color-accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-full); }
.v2-service-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(0, 103, 108, 0.13); color: var(--color-primary); display: flex; align-items: center; justify-content: center; margin-bottom: var(--spacing-md); }
.v2-service-card h3 { font-size: 18px; margin-bottom: var(--spacing-sm); }
.v2-service-card p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.55; flex-grow: 1; margin-bottom: var(--spacing-md); }
.v2-service-more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--color-primary); }

.v2-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-lg); }
.v2-why-card { background: var(--color-bg); border-radius: var(--radius-lg); padding: var(--spacing-xl) var(--spacing-lg); border: 1px solid rgba(0, 103, 108, 0.14); box-shadow: 0 3px 14px rgba(6, 43, 45, 0.07); }
.v2-why-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: var(--spacing-md); }
.v2-why-card h3 { font-size: 18px; margin-bottom: var(--spacing-sm); }
.v2-why-card p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.6; }

/* Steps */
.v2-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-xl); }
.v2-step { position: relative; padding-top: var(--spacing-sm); }
.v2-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary); color: #fff; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--spacing-md); }
.v2-step h3 { font-size: 19px; margin-bottom: var(--spacing-sm); }
.v2-step p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }

/* FAQ */
.v2-faq-item { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: var(--spacing-sm); overflow: hidden; }
.v2-faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: var(--spacing-md); cursor: pointer; padding: 18px 20px; font-weight: 600; font-size: 16px; list-style: none; }
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary svg { flex-shrink: 0; color: var(--color-primary); transition: transform var(--transition-fast); }
.v2-faq-item[open] summary svg { transform: rotate(180deg); }
.v2-faq-item p { padding: 0 20px 18px; color: var(--color-text-muted); font-size: 15px; line-height: 1.65; }

/* Reviews — sliding carousel, one quote per view */
.v2-reviews { padding: var(--section-py) 0; }
.v2-reviews .v2-section-head { max-width: 860px; margin-inline: auto; }
.v2-slider { position: relative; max-width: 860px; margin-inline: auto; }
.v2-slider-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.v2-slider-track::-webkit-scrollbar { display: none; }
.v2-review { flex: 0 0 100%; scroll-snap-align: center; box-sizing: border-box; background: var(--color-bg); border: 1px solid rgba(0, 103, 108, 0.14); border-radius: var(--radius-lg); padding: var(--spacing-2xl) var(--spacing-2xl); margin: 0; box-shadow: 0 3px 14px rgba(6, 43, 45, 0.07); }
.v2-review-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; margin-bottom: var(--spacing-md); }
.v2-review blockquote { margin: 0 0 var(--spacing-md); font-size: 18px; line-height: 1.7; color: var(--color-text); }
.v2-review figcaption { font-size: 14.5px; font-weight: 600; color: var(--color-text-muted); }
.v2-slider-nav { display: flex; align-items: center; gap: 14px; margin-top: var(--spacing-md); }
.v2-slider-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0, 103, 108, 0.25); background: var(--color-bg); color: var(--color-primary); font-size: 18px; line-height: 1; cursor: pointer; transition: all var(--transition-fast); display: inline-flex; align-items: center; justify-content: center; }
.v2-slider-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.v2-slider-dots { display: flex; gap: 8px; }
.v2-slider-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: rgba(0, 103, 108, 0.22); cursor: pointer; transition: all var(--transition-fast); }
.v2-slider-dot.is-active { background: var(--color-primary); transform: scale(1.25); }
@media (max-width: 640px) { .v2-review { padding: var(--spacing-lg); } .v2-review blockquote { font-size: 16px; } }

/* No fixed bottom CTA bar on mobile: the client explicitly rejected the
   "persistent CTA button at the bottom of every page" (email, 2026-06-08).
   Do not reintroduce .v2-sticky. */

/* ═══════════ Page hero (inner pages) ═══════════ */
/* Default background keeps image-less heroes (locations, contact, FAQ, legal…)
   from reading as a flat empty block; service pages override it inline. */
.v2-pagehero { position: relative; background: var(--color-bg-dark) url('/assets/media/hero/imgi_2_11062b_1a9a78b893e54c86a6afc499060bd4c7~mv2.jpg'); background-size: cover; background-position: center; }
.v2-pagehero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 50, 53, 0.93) 0%, rgba(0, 103, 108, 0.84) 55%, rgba(0, 50, 53, 0.9) 100%); z-index: 1; }
.v2-pagehero-inner { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: 56px var(--section-px); }
.v2-crumbs { font-size: 13px; color: rgba(255, 255, 255, 0.65); margin-bottom: var(--spacing-md); }
.v2-crumbs a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.v2-crumbs a:hover { color: #fff; text-decoration: underline; }
.v2-pagehero h1 { font-size: 40px; line-height: 1.18; color: var(--color-text-light); margin-bottom: var(--spacing-md); overflow-wrap: anywhere; }
.v2-pagehero-sub { color: rgba(255, 255, 255, 0.88); font-size: 17.5px; line-height: 1.6; max-width: 640px; margin-bottom: var(--spacing-lg); }
.v2-pagehero-ctas { display: flex; align-items: center; gap: var(--spacing-md); flex-wrap: wrap; }
.v2-pagehero-hours { color: rgba(255, 255, 255, 0.7); font-size: 14px; }

/* Split hero (service pages: content + form card) */
.v2-pagehero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--spacing-3xl); align-items: start; }
@media (max-width: 1024px) { .v2-pagehero-grid { grid-template-columns: 1fr; gap: var(--spacing-xl); } }

/* ═══════════ Service page sections ═══════════ */
.v2-glance { padding: var(--section-py) 0; }
.v2-glance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); align-items: start; }
.v2-glance-card { background: var(--color-bg); border: 1px solid rgba(0, 103, 108, 0.14); border-radius: var(--radius-lg); padding: var(--spacing-xl) var(--spacing-lg); box-shadow: 0 3px 14px rgba(6, 43, 45, 0.07); }
.v2-glance-card h3 { display: flex; align-items: center; gap: 10px; font-size: 19px; margin-bottom: var(--spacing-md); }
.v2-glance-card h3 svg { flex-shrink: 0; }
.v2-glance-card.is-yes h3 svg { color: var(--color-primary); }
.v2-glance-card.is-no h3 svg { color: #c0554e; }
.v2-glance-card ul { list-style: none; margin: 0; padding: 0; }
.v2-glance-card li { position: relative; padding: 8px 0 8px 30px; font-size: 15px; line-height: 1.55; color: var(--color-text); border-bottom: 1px solid var(--color-border); }
.v2-glance-card li:last-child { border-bottom: 0; }
.v2-glance-card.is-yes li::before { content: "✓"; position: absolute; left: 4px; color: var(--color-primary); font-weight: 700; }
.v2-glance-card.is-no li::before { content: "✕"; position: absolute; left: 4px; color: #c0554e; font-weight: 700; }
.v2-glance-note { margin-top: var(--spacing-md); font-size: 13.5px; color: var(--color-text-muted); }
@media (max-width: 860px) { .v2-glance-grid { grid-template-columns: 1fr; } }

/* Prose sections (rebuilt intro copy) */
.v2-prose { padding: var(--section-py) 0; background: var(--color-bg-alt); }
.v2-prose-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--spacing-3xl); align-items: start; }
.v2-prose-main > div + div { margin-top: 56px; }
.v2-prose-main h2 { font-size: 26px; margin: 0 0 16px; }
.v2-prose-main h2::before { content: ""; display: block; width: 44px; height: 3px; border-radius: 2px; background: var(--color-accent); margin-bottom: 14px; }
.v2-prose-main h3 { font-size: 19px; margin: var(--spacing-xl) 0 10px; }
.v2-prose-main p { font-size: 16px; line-height: 1.8; color: var(--color-text); margin-bottom: 18px; }
.v2-prose-main h2 + p { font-size: 17px; color: var(--color-text); }
.v2-prose-main ul { margin: 4px 0 18px; padding: 0; list-style: none; }
.v2-prose-main li { position: relative; font-size: 15.5px; line-height: 1.7; margin-bottom: 10px; padding-left: 28px; }
.v2-prose-main li::before { content: "✓"; position: absolute; left: 2px; top: 0; color: var(--color-primary); font-weight: 700; }
.v2-prose-aside { position: sticky; top: 90px; display: flex; flex-direction: column; gap: var(--spacing-lg); }
.v2-aside-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--spacing-lg); }
.v2-aside-card h3 { font-size: 16.5px; margin-bottom: var(--spacing-sm); }
.v2-aside-card p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--spacing-md); }
.v2-aside-card .v2-aside-phone { display: block; font-size: 22px; font-weight: 700; color: var(--color-primary); text-decoration: none; margin-bottom: 4px; }
.v2-aside-card .v2-aside-hours { font-size: 13px; color: var(--color-text-muted); }
.v2-aside-dark { background: var(--color-bg-dark); border: 0; }
.v2-aside-dark h3 { color: #fff; }
.v2-aside-dark p { color: rgba(255, 255, 255, 0.8); }
.v2-aside-list { list-style: none; margin: 0; padding: 0; }
.v2-aside-list li { position: relative; padding: 7px 0 7px 26px; font-size: 14.5px; color: var(--color-text); }
.v2-aside-dark .v2-aside-list li { color: rgba(255, 255, 255, 0.88); }
.v2-aside-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--color-accent); font-weight: 700; }
@media (max-width: 1024px) { .v2-prose-grid { grid-template-columns: 1fr; } .v2-prose-aside { position: static; } }

/* Highlight stat/urgency band (reusable dark band) */
.v2-band { background: var(--color-bg-dark); padding: var(--section-py) 0; }
.v2-band-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--spacing-3xl); align-items: center; }
.v2-band h2 { color: var(--color-text-light); font-size: 32px; margin-bottom: var(--spacing-md); }
.v2-band h2 strong { color: var(--color-accent); }
.v2-band p { color: rgba(255, 255, 255, 0.85); font-size: 16px; line-height: 1.65; margin-bottom: var(--spacing-lg); }
.v2-band-ticks { list-style: none; padding: 0; margin: 0 0 var(--spacing-xl); }
.v2-band-ticks li { position: relative; padding-left: 28px; color: rgba(255, 255, 255, 0.9); font-size: 15.5px; margin-bottom: 10px; }
.v2-band-ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.v2-band-panel { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius-lg); padding: var(--spacing-xl); }
.v2-band-panel-title { color: var(--color-text-light); font-weight: 700; font-size: 15px; margin-bottom: var(--spacing-md); }
.v2-band-row { display: flex; justify-content: space-between; color: rgba(255, 255, 255, 0.85); font-size: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.v2-band-row span:last-child { font-weight: 700; }
.v2-band-row.is-danger { color: #ffb4a2; }
.v2-band-note { margin-top: var(--spacing-md); font-size: 13px; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 1024px) { .v2-band-grid { grid-template-columns: 1fr; gap: var(--spacing-xl); } }

/* Related covers */
.v2-related { padding: var(--section-py) 0; }
.v2-related-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.v2-related-label { font-size: 14px; font-weight: 600; color: var(--color-text-muted); margin-right: 4px; }

/* FAQ section wrapper — intro stacked above the items (a side-by-side intro
   column leaves a large dead zone next to the taller list) */
.v2-faq { padding: var(--section-py) 0; background: var(--color-bg-alt); }
.v2-faq-grid { display: grid; grid-template-columns: 1fr; gap: var(--spacing-xl); align-items: start; }
/* Both blocks cap below the container width; centre them (and share one left
   edge) so wide screens don't show all the slack on the right */
.v2-faq-intro { max-width: 900px; margin-inline: auto; width: 100%; }
.v2-faq-intro h2 { font-size: 34px; margin-bottom: var(--spacing-sm); }
.v2-faq-intro p { color: var(--color-text-muted); margin-bottom: var(--spacing-md); }
.v2-faq-list { max-width: 900px; margin-inline: auto; width: 100%; }
.v2-faq-all { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--color-primary); text-decoration: none; }

/* Final CTA */
.v2-final { padding: var(--section-py) 0; background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)); }
.v2-final-inner { text-align: center; }
.v2-final h2 { color: var(--color-text-light); font-size: 34px; margin-bottom: var(--spacing-sm); }
/* text-align explicit: .v2-body p sets left (to kill v1's justify) and would
   otherwise beat the centering inherited from .v2-final-inner */
.v2-final p { color: rgba(255, 255, 255, 0.85); font-size: 17px; margin-bottom: var(--spacing-xl); text-align: center; }
.v2-final-ctas { display: flex; justify-content: center; gap: var(--spacing-md); flex-wrap: wrap; }
.v2-final .btn-primary { background: #fff; color: var(--color-primary); }
.v2-final .btn-primary:hover { background: var(--color-bg-alt); }

/* ═══════════ Quote pages ═══════════ */
.v2-quotepage { padding: var(--section-py) 0; background: var(--color-bg-alt); }
.v2-quotepage-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--spacing-3xl); align-items: start; max-width: 1080px; margin: 0 auto; }
.v2-quotepage-side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: var(--spacing-lg); }
@media (max-width: 1024px) { .v2-quotepage-grid { grid-template-columns: 1fr; } .v2-quotepage-side { position: static; } }

/* ═══════════ Content / legal pages ═══════════ */
.v2-content { padding: var(--section-py) 0; }
.v2-content-inner { max-width: 820px; margin: 0 auto; }
.v2-content-inner h2 { font-size: 25px; margin: 48px 0 14px; }
.v2-content-inner h2::before { content: ""; display: block; width: 44px; height: 3px; border-radius: 2px; background: var(--color-accent); margin-bottom: 14px; }
.v2-content-inner h2:first-child { margin-top: 0; }
.v2-content-inner h3 { font-size: 20px; margin: var(--spacing-xl) 0 var(--spacing-sm); }
.v2-content-inner p { font-size: 15.5px; line-height: 1.8; margin-bottom: 18px; }
.v2-content-inner ul, .v2-content-inner ol { margin: 0 0 var(--spacing-md); padding-left: 24px; }
.v2-content-inner li { font-size: 15.5px; line-height: 1.7; margin-bottom: 6px; }
.v2-content-inner table { width: 100%; border-collapse: collapse; margin: 0 0 var(--spacing-lg); font-size: 14.5px; }
.v2-content-inner th, .v2-content-inner td { border: 1px solid var(--color-border); padding: 10px 12px; text-align: left; vertical-align: top; }
.v2-content-inner th { background: var(--color-bg-alt); }

/* ═══════════ Blog ═══════════ */
.v2-blog { padding: var(--section-py) 0; }
.v2-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-lg); }
.v2-post-card { display: flex; flex-direction: column; background: var(--color-bg); border: 1px solid rgba(0, 103, 108, 0.12); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--color-text); box-shadow: 0 3px 14px rgba(6, 43, 45, 0.07); transition: transform var(--transition-normal), box-shadow var(--transition-normal); }
.v2-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.v2-post-card-img { aspect-ratio: 16/9; background: var(--color-bg-alt); overflow: hidden; }
.v2-post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-post-card-body { padding: var(--spacing-lg); display: flex; flex-direction: column; flex: 1; }
.v2-post-card-date { font-size: 12.5px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.v2-post-card h3 { font-size: 17px; line-height: 1.4; margin-bottom: 10px; }
.v2-post-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; flex: 1; }
.v2-pagination { display: flex; justify-content: center; gap: 8px; margin-top: var(--spacing-2xl); }
.v2-pagination a, .v2-pagination span { min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: 14px; font-weight: 600; color: var(--color-text); text-decoration: none; }
.v2-pagination a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.v2-pagination .is-current { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.v2-post { padding: var(--section-py) 0; }
.v2-post-inner { max-width: 760px; margin: 0 auto; }
.v2-post-meta { font-size: 14px; color: var(--color-text-muted); margin-bottom: var(--spacing-lg); }
.v2-post-hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--spacing-xl); }
.v2-post-hero img { width: 100%; display: block; }
.v2-post-body h2 { font-size: 25px; margin: 48px 0 14px; }
.v2-post-body h2::before { content: ""; display: block; width: 44px; height: 3px; border-radius: 2px; background: var(--color-accent); margin-bottom: 14px; }
.v2-post-body h3 { font-size: 20px; margin: var(--spacing-xl) 0 var(--spacing-sm); }
.v2-post-body p { font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.v2-post-body ul, .v2-post-body ol { margin: 0 0 var(--spacing-md); padding-left: 24px; }
.v2-post-body li { font-size: 15.5px; line-height: 1.7; margin-bottom: 6px; }
.v2-post-body img { max-width: 100%; height: auto; border-radius: var(--radius-md); }
.v2-post-body a { color: var(--color-primary); }
.v2-post-body table { width: 100%; border-collapse: collapse; margin: 0 0 var(--spacing-lg); font-size: 14.5px; display: block; overflow-x: auto; }
.v2-post-body th, .v2-post-body td { border: 1px solid var(--color-border); padding: 10px 12px; text-align: left; }
@media (max-width: 1024px) { .v2-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .v2-blog-grid { grid-template-columns: 1fr; } }

/* ═══════════ Locations ═══════════ */
.v2-loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-lg); }
.v2-loc-card { background: var(--color-bg); border: 1px solid rgba(0, 103, 108, 0.14); border-radius: var(--radius-lg); padding: var(--spacing-lg); text-decoration: none; color: var(--color-text); box-shadow: 0 3px 14px rgba(6, 43, 45, 0.07); transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal); }
.v2-loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.v2-loc-card h3 { font-size: 17px; margin-bottom: 6px; }
.v2-loc-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }
@media (max-width: 1024px) { .v2-loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .v2-loc-grid { grid-template-columns: 1fr; } }

/* ═══════════ Responsive shared ═══════════ */
@media (max-width: 1024px) {
  .v2-services-grid, .v2-why-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-trustband-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .v2-section-head h2, .v2-band h2, .v2-final h2, .v2-faq-intro h2 { font-size: 27px; }
  .v2-pagehero h1 { font-size: 30px; }
  .v2-services-grid, .v2-why-grid, .v2-steps { grid-template-columns: 1fr; }
  .v2-trustband-grid { grid-template-columns: 1fr; gap: var(--spacing-md); }
}

/* ── iOS focus-zoom guard ──
   iOS Safari auto-zooms the page when a focused field's font-size is under
   16px. Keep the compact desktop fields; bump to 16px on touch widths only.
   Selector must out-rank forms.css (.form-group input...) since forms.css
   loads AFTER v2.css. */
@media (max-width: 820px) {
  .v2-form-card .form-group input:not([type="radio"]):not([type="checkbox"]),
  .v2-form-card .form-group select,
  .v2-form-card .form-group textarea {
    font-size: 16px;
  }
}
