/* ==========================================================================
   Victory Pro Deck Builders — Stylesheet
   ========================================================================== */

:root {
  --vp-ink: #0B0E12;
  --vp-ink-2: #14181F;
  --vp-ink-3: #1B2029;
  /* Brand accent — warm gold (formerly blue, var names kept for compat) */
  --vp-blue: #c9a96e;
  --vp-blue-2: #b8964f;
  --vp-blue-deep: #8c6f37;
  --vp-blue-glow: rgba(201, 169, 110, 0.35);
  --vp-gold: #c9a96e;
  --vp-cream: #F4EFE6;
  --vp-paper: #FBF8F2;
  --vp-line: rgba(255, 255, 255, 0.08);
  --vp-line-light: rgba(11, 14, 18, 0.10);
  --vp-text-dim: rgba(255, 255, 255, 0.65);
  --vp-text-dimmer: rgba(255, 255, 255, 0.45);
  --font-display: "Plus Jakarta Sans", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
#quote { scroll-margin-top: 80px; }
@media (max-width: 760px) {
  #quote { scroll-margin-top: 70px; }
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--vp-cream);
  color: var(--vp-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

.vp-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============== TOP BAR ============== */
.vp-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 18px 40px 0;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: var(--vp-text-dim);
}
.vp-topbar a { display: flex; align-items: center; gap: 8px; }
.vp-topbar a:hover { color: white; }
.vp-topbar .icon-circ {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--vp-blue);
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}

/* ============== TOP RIGHT GOLD RAIL (Desert Pointe style) ============== */
/* One self-contained gold ribbon clipped on the left edge.
   Email sits inside it, anchored right. */
.vp-top-rail {
  position: absolute;
  top: 0;
  right: 0;
  height: 42px;
  width: clamp(360px, 38vw, 460px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 32px 0 0;
  background: var(--vp-gold);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 32% 100%);
  filter: drop-shadow(0 6px 18px rgba(201,169,110,0.35));
  pointer-events: auto;
}
.vp-top-rail-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vp-ink);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: opacity .18s ease;
}
.vp-top-rail-email:hover { opacity: 0.78; }

/* ============== NAV ============== */
.vp-nav {
  position: absolute;
  top: 64px; left: 0; right: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.vp-logo-link { display: inline-flex; }
.vp-logo { height: 64px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.vp-nav-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(20, 24, 31, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--vp-line);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vp-nav-pill a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .18s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vp-nav-pill a:hover { background: rgba(255,255,255,.06); color: white; }
.vp-nav-pill a.active { background: rgba(201,169,110,.18); color: var(--vp-blue); }

/* ============== SERVICES DROPDOWN (CSS-only, hover + focus-within) ============== */
.vp-nav-services {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.vp-nav-services-trigger {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .18s ease, color .18s ease;
}
.vp-nav-services-trigger:hover,
.vp-nav-services:hover .vp-nav-services-trigger,
.vp-nav-services:focus-within .vp-nav-services-trigger {
  background: rgba(255,255,255,.06);
  color: white;
}
.vp-nav-caret {
  transition: transform .2s ease;
  opacity: 0.85;
}
.vp-nav-services:hover .vp-nav-caret,
.vp-nav-services:focus-within .vp-nav-caret {
  transform: rotate(180deg);
}

.vp-nav-services-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  margin-top: 14px;
  width: 280px;
  background: #14181F;
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 14px;
  padding: 8px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    0 8px 20px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 40;
}
/* Hover/focus reveal */
.vp-nav-services:hover .vp-nav-services-panel,
.vp-nav-services:focus-within .vp-nav-services-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Tiny pointer triangle centered under trigger */
.vp-nav-services-panel::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #14181F;
  border-left: 1px solid rgba(201,169,110,0.22);
  border-top: 1px solid rgba(201,169,110,0.22);
}
/* Invisible hover bridge so cursor can cross the 14px gap without losing hover */
.vp-nav-services-panel::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.vp-nav-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.vp-nav-services-list li { display: block; }

.vp-nav-services-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s ease, color .15s ease;
}
.vp-nav-services-item:hover {
  background: rgba(201,169,110,0.10);
  color: white;
}
.vp-nav-services-item:hover .vp-nav-services-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.vp-nav-services-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.28);
  display: grid;
  place-items: center;
  color: var(--vp-blue);
}
.vp-nav-services-icon svg { width: 15px; height: 15px; }

.vp-nav-services-title {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: inherit;
}

.vp-nav-services-arrow {
  color: var(--vp-blue);
  opacity: 0;
  transform: translateX(0);
  transition: opacity .15s ease, transform .15s ease;
  flex-shrink: 0;
}

/* Hide dropdown entirely on mobile (nav pill is already hidden under 1100px) */
@media (max-width: 1100px) {
  .vp-nav-services-panel { display: none; }
}

/* ============== MOBILE MENU (hamburger drawer) ============== */
.vp-mb-burger {
  display: none;
  appearance: none;
  background: rgba(20, 24, 31, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--vp-line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 28;
  position: relative;
}
.vp-mb-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: background .2s ease;
}
.vp-mb-burger:hover span { background: var(--vp-blue); }

.vp-mb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 12, 0.6);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  animation: vp-mb-fade .2s ease;
}
.vp-mb-overlay[hidden] { display: none; }
@keyframes vp-mb-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.vp-mb-panel {
  width: 100%;
  max-width: 380px;
  height: 100%;
  background: #0F1319;
  color: white;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(201,169,110,0.18);
  animation: vp-mb-slide .26s cubic-bezier(.2,.7,.3,1);
  padding: env(safe-area-inset-top, 0) 0 env(safe-area-inset-bottom, 0);
  overflow-y: auto;
}
@keyframes vp-mb-slide {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.vp-mb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.vp-mb-logo {
  height: 44px;
  width: auto;
  display: block;
}
.vp-mb-close {
  appearance: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: white;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.vp-mb-close:hover {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.4);
  color: var(--vp-blue);
}
.vp-mb-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.vp-mb-links > a,
.vp-mb-group-head {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  border-left: 3px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.vp-mb-links > a:hover,
.vp-mb-group-head:hover {
  background: rgba(255,255,255,0.04);
  color: var(--vp-blue);
}
.vp-mb-links > a.is-active,
.vp-mb-group-head.is-active {
  border-left-color: var(--vp-blue);
  color: var(--vp-blue);
  background: rgba(201,169,110,0.06);
}
.vp-mb-group { display: flex; flex-direction: column; }
.vp-mb-sublinks {
  display: flex;
  flex-direction: column;
  padding: 2px 0 6px;
}
.vp-mb-sublinks a {
  padding: 10px 24px 10px 38px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  position: relative;
  transition: background .15s ease, color .15s ease;
}
.vp-mb-sublinks a::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: rgba(201,169,110,0.45);
}
.vp-mb-sublinks a:hover {
  background: rgba(255,255,255,0.04);
  color: white;
}
.vp-mb-foot {
  padding: 18px 22px env(safe-area-inset-bottom, 22px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0,0,0,0.2);
}
.vp-mb-phone-link,
.vp-mb-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: border-color .15s ease, background .15s ease;
}
.vp-mb-phone-link svg,
.vp-mb-email-link svg {
  color: var(--vp-blue);
  flex-shrink: 0;
}
.vp-mb-phone-link:hover,
.vp-mb-email-link:hover {
  border-color: rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.08);
}
.vp-mb-cta {
  margin-top: 6px;
  padding: 16px 18px;
  background: var(--vp-blue);
  color: white;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px var(--vp-blue-glow);
}
.vp-mb-cta:hover { filter: brightness(1.05); }

/* Show the burger and hide the desktop pill below 1100px.
   The existing rule already does .vp-nav-pill { display: none } at this breakpoint;
   this adds the visible burger so users get a working menu. */
@media (max-width: 1100px) {
  .vp-mb-burger { display: flex; }
}
@media (min-width: 1101px) {
  .vp-mb-burger, .vp-mb-overlay { display: none !important; }
}

.vp-nav-cta {
  display: flex; align-items: center; gap: 14px;
}
.vp-phone-pill {
  background: white;
  color: var(--vp-ink);
  padding: 10px 20px 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.vp-phone-pill .ic {
  width: 24px; height: 24px;
  background: var(--vp-blue);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
}
.vp-quote-btn {
  background: var(--vp-blue);
  color: white;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 22px;
  border-radius: 999px;
  letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: 0 10px 30px var(--vp-blue-glow);
  transition: transform .15s ease, box-shadow .2s ease;
}
.vp-quote-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 36px var(--vp-blue-glow); }

/* ============== HERO ============== */
.vp-hero {
  position: relative;
  min-height: 680px;
  background: var(--vp-ink);
  color: white;
  overflow: hidden;
  isolation: isolate;
}

/* Diagonal blue slash — the signature element */
.vp-slash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.vp-slash {
  filter: drop-shadow(0 0 22px rgba(201,169,110,0.35));
}
.vp-slash::before {
  /* gold diagonal stripe — clip-path matches the deck region's left edge exactly */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vp-gold);
  clip-path: polygon(54% 0, 58% 0, 50% 100%, 46% 100%);
  z-index: 3;
}
.vp-slash::after {
  /* deck imagery fills everything to the right of the gold stripe */
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, linear-gradient(135deg, #2a3340, #1a2028));
  background-size: cover;
  background-position: center right;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 50% 100%);
  z-index: 2;
}

/* Dark scrim over the photo for legibility — same clip as the deck */
.vp-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, rgba(11,14,18,.55) 0%, rgba(11,14,18,.18) 55%, rgba(11,14,18,.45) 100%);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 50% 100%);
  pointer-events: none;
}

/* Sunburst behind owner */
.vp-sunburst {
  position: absolute;
  bottom: -8%;
  left: -4%;
  width: 560px;
  height: 560px;
  z-index: 1;
  pointer-events: none;
  opacity: .55;
}

.vp-hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: 124px 40px 56px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-areas:
    "text  quote"
    "trust quote";
  column-gap: 64px;
  row-gap: 24px;
  align-items: start;
  min-height: 680px;
}
.vp-hero-text {
  grid-area: text;
  align-self: end;
  padding-bottom: 0;
  padding-right: 32px;
  max-width: 540px;
}
.vp-hero-quote { grid-area: quote; align-self: stretch; justify-self: end; width: 100%; max-width: 440px; margin-right: 8px; }
.vp-hero-inner > .vp-trust-card {
  grid-area: trust;
  align-self: start;
  justify-self: start;
  max-width: 440px;
  margin-right: 32px;
}

.vp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vp-blue);
  margin-bottom: 20px;
}

.vp-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: white;
  text-wrap: balance;
}
.vp-underlined {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.vp-underlined::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 6px;
  background: var(--vp-blue);
  border-radius: 2px;
  box-shadow: 0 0 20px var(--vp-blue-glow);
}

.vp-subhead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--vp-text-dim);
  max-width: 520px;
  margin: 0;
}

/* Trust card in hero — avatars and text on one row */
.vp-trust-card {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--vp-line);
  border-radius: 14px;
  padding: 10px 18px 10px 14px;
  max-width: 480px;
}
.vp-trust-icons {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.vp-trust-icons .badge {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 10px;
  color: white;
  border: 2px solid var(--vp-ink);
  margin-right: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.vp-trust-icons .badge:last-child { margin-right: 0; }
.vp-trust-text {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--vp-text-dim);
  min-width: 0;
}
.vp-trust-text .row1 {
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 3px;
  font-size: 11.5px;
}
.vp-trust-text .row2 { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 11px; }
.vp-trust-text .stars {
  color: #FFB547;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.vp-trust-text .pipe { opacity: .35; }

/* Mobile-only review boxes + CTA */
.vp-mobile-precta { display: none; }

.vp-hero-quote {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin: 72px 0 56px;
  align-self: start;
  display: flex;
  align-items: stretch;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  border: 1px solid rgba(201,169,110,0.22);
  backdrop-filter: blur(2px);
}
.vp-hero-quote-bg { display: none; }
.vp-hero-quote-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,14,18,0.86) 0%, rgba(14,18,24,0.92) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

/* Hero right column — photo placeholder (legacy) */
.vp-hero-right {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.vp-yard-photo {
  position: absolute;
  inset: 0;
}
.vp-yard-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(201,169,110,0.3);
}
.vp-yard-pill {
  background: rgba(11,14,18,0.85);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--vp-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Inline form bar — now lives inside hero-quote */
.vp-quote-bar {
  position: relative;
  z-index: 6;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 36px 36px 30px;
  margin: 0;
  width: 100%;
  box-shadow: none;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vp-quote-bar::before {
  /* gold accent strip across top */
  content: "";
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--vp-gold) 20%, var(--vp-gold) 80%, transparent);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 0 24px var(--vp-blue-glow);
}
.vp-quote-header {
  text-align: center;
  margin-bottom: 22px;
}
.vp-quote-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vp-blue);
  margin-bottom: 10px;
}
.vp-quote-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vp-blue);
  box-shadow: 0 0 10px var(--vp-blue);
  animation: vp-pulse 2s ease-in-out infinite;
}
.vp-quote-bar h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin: 0 0 6px;
  color: white;
  letter-spacing: -0.01em;
}
.vp-quote-bar h2 .accent { color: var(--vp-blue); }
.vp-quote-sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--vp-text-dim);
  margin: 0;
}
.vp-quote-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--vp-text-dimmer);
}
.vp-quote-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vp-quote-trust .dot-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  padding: 0;
  flex-shrink: 0;
}

.vp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vp-form-grid .full { grid-column: 1 / -1; }
.vp-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--vp-line);
  border-radius: 999px;
  padding: 0 22px;
  height: 52px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.vp-input:focus-within {
  border-color: var(--vp-blue);
  background: rgba(201,169,110,.06);
  box-shadow: 0 0 0 4px rgba(201,169,110,.08);
}
.vp-input .ic {
  width: 28px; height: 28px;
  background: rgba(201,169,110,.18);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--vp-blue);
  flex-shrink: 0;
}
.vp-input input, .vp-input textarea {
  flex: 1;
  min-width: 0;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  resize: none;
}
.vp-form-grid { min-width: 0; }
.vp-form-grid > * { min-width: 0; }
.vp-input--no-ic { padding-left: 22px; }
.vp-input--error {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12) !important;
}
.vp-field-error {
  font-size: 12.5px;
  color: #ff8a8a;
  margin-top: -6px;
  padding-left: 22px;
  letter-spacing: 0.01em;
}
.vp-consent {
  font-size: 9px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
  margin: 10px 4px 0;
  letter-spacing: 0.01em;
}
.vp-consent a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vp-consent a:hover { color: var(--vp-blue); }
.vp-sms-consent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.vp-sms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.vp-sms-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.vp-sms-box {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.vp-sms-check input:checked + .vp-sms-box {
  background: var(--vp-blue);
  border-color: var(--vp-blue);
}
.vp-sms-check input:checked + .vp-sms-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #0B0E12;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.vp-sms-check input:focus-visible + .vp-sms-box {
  outline: 2px solid var(--vp-blue);
  outline-offset: 2px;
}
.vp-sms-text {
  flex: 1;
  font-size: 10.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.005em;
}
@media (max-width: 640px) {
  .vp-sms-text { font-size: 10px; }
  .vp-sms-consent { padding: 10px; }
}
.vp-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.vp-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 12px 10px;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.10) 0%, rgba(201, 169, 110, 0.04) 100%);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 12px;
  min-width: 0;
}
.vp-trust-badge-ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(201, 169, 110, 0.18);
  color: var(--vp-blue);
  flex-shrink: 0;
}
.vp-trust-badge-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #FFB547;
  flex-shrink: 0;
  height: 30px;
}
.vp-trust-badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  min-width: 0;
  width: 100%;
}
.vp-trust-badge-text strong {
  font-size: 12.5px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.005em;
  white-space: normal;
  overflow-wrap: anywhere;
}
.vp-trust-badge-text small {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  white-space: normal;
  overflow-wrap: anywhere;
}
@media (max-width: 420px) {
  .vp-trust-badge { padding: 11px 8px; gap: 5px; }
  .vp-trust-badge-ic { width: 28px; height: 28px; }
  .vp-trust-badge-stars { height: 28px; }
  .vp-trust-badge-text strong { font-size: 11.5px; }
  .vp-trust-badge-text small { font-size: 10px; }
}
.vp-input input::placeholder, .vp-input textarea::placeholder {
  color: var(--vp-text-dimmer);
}
.vp-input.textarea { height: auto; padding: 14px 22px; align-items: flex-start; border-radius: 18px; }
.vp-input.textarea .ic { margin-top: 2px; }

.vp-submit-pill {
  height: 56px;
  background: linear-gradient(180deg, #4DB3FF 0%, var(--vp-blue) 50%, var(--vp-blue-2) 100%);
  color: white;
  font-weight: 700;
  font-size: 15.5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px var(--vp-blue-glow), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: transform .15s, box-shadow .15s;
}
.vp-submit-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px var(--vp-blue-glow), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.15);
}
.vp-submit-pill:active {
  transform: translateY(0);
}
.vp-submit-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.vp-submit-shine {
  position: absolute;
  top: 0; left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  animation: vp-shine 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes vp-shine {
  0%, 100% { left: -50%; }
  50% { left: 150%; }
}
.vp-submit-pill.is-submitted {
  background: linear-gradient(180deg, #34d39990 0%, #16a34a 100%);
}

/* Post-submit success state — replaces the entire form */
.vp-quote-bar--success {
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.vp-success-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 440px;
  margin: 0 auto;
  padding: 8px 4px;
  animation: vp-success-in .55s cubic-bezier(.2, .8, .2, 1) both;
}
.vp-success-check {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(180deg, var(--vp-blue) 0%, var(--vp-blue-2) 100%);
  box-shadow: 0 14px 36px var(--vp-blue-glow), inset 0 1px 0 rgba(255,255,255,0.35);
  position: relative;
}
.vp-success-check::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(74, 144, 226, 0.35);
  animation: vp-success-ring 1.6s ease-out infinite;
}
.vp-success-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: white;
  margin: 0;
}
.vp-success-title .accent { color: var(--vp-blue); display: inline-block; }
.vp-success-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vp-text-dim);
  margin: 0;
  max-width: 380px;
}
.vp-success-body strong { color: white; font-weight: 700; }
.vp-success-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--vp-text-dimmer);
}
.vp-success-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vp-success-meta .dot-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  padding: 0;
  flex-shrink: 0;
}
@keyframes vp-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vp-success-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============== TRUST MARQUEE ============== */
.vp-marquee {
  background: var(--vp-blue);
  color: white;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 40px rgba(201,169,110,.25);
}
.vp-marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: vp-marquee 32s linear infinite;
  width: max-content;
}
.vp-marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.vp-marquee .sparkle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
@keyframes vp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== SECTION SHELLS ============== */
.vp-section {
  padding: 110px 0;
  position: relative;
}
.vp-section.cream { background: var(--vp-cream); }
.vp-section.paper { background: var(--vp-paper); }
.vp-section.dark { background: var(--vp-ink); color: white; }

.vp-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  gap: 12px;
}
.vp-section-head .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vp-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.vp-section-head .eyebrow::before,
.vp-section-head .eyebrow::after {
  content: "";
  width: 28px; height: 2px;
  background: var(--vp-blue);
  opacity: .6;
}
.vp-section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.vp-section-head .sub {
  font-size: 17px;
  color: rgba(11,14,18,.62);
  max-width: 620px;
  margin: 0;
  line-height: 1.55;
}
.vp-section.dark .vp-section-head .sub { color: var(--vp-text-dim); }

/* ============== PORTFOLIO ============== */
.vp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.vp-portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--vp-ink-3);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.vp-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(11,14,18,0.15);
}
.vp-portfolio-card .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
  display: grid;
  place-items: center;
  position: relative;
}
.vp-portfolio-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,14,18,.92));
  pointer-events: none;
  z-index: 1;
}
.vp-portfolio-card:hover .img { transform: scale(1.04); }
.vp-portfolio-card .img .vp-img-pill {
  background: rgba(11,14,18,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.vp-portfolio-card .meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 22px 24px;
  color: white;
}
.vp-portfolio-card .meta .tag {
  display: inline-block;
  background: var(--vp-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.vp-portfolio-card .meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.vp-portfolio-card .meta p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* sizes for the legacy asymmetric grid (still here for back-compat) */
.vp-portfolio-card.large { grid-column: span 6; height: 460px; }
.vp-portfolio-card.medium { grid-column: span 3; height: 460px; }
.vp-portfolio-card.tall { grid-column: span 3; height: 460px; }
.vp-portfolio-card.wide { grid-column: span 8; height: 320px; }
.vp-portfolio-card.square { grid-column: span 4; height: 320px; }

/* New uniform 2x2 grid — clean, predictable, no aspect-ratio mismatches */
.vp-portfolio-grid.four {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.vp-portfolio-card.uniform {
  grid-column: auto;
  height: 420px;
  display: block;
  text-decoration: none;
  color: inherit;
}
.vp-portfolio-card.uniform:focus-visible {
  outline: 2px solid var(--vp-gold);
  outline-offset: 4px;
}
.vp-portfolio-card.uniform .meta h3 { font-size: 22px; }
.vp-portfolio-card.uniform .meta p { font-size: 13.5px; }
@media (max-width: 900px) {
  .vp-portfolio-grid.four { grid-template-columns: 1fr; gap: 16px; }
  .vp-portfolio-card.uniform { height: 320px; }
}

/* ============== SERVICES ============== */
.vp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.vp-services-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.vp-service-card {
  background: white;
  border: 1px solid var(--vp-line-light);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.vp-service-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.vp-service-card-link:focus-visible {
  outline: 2px solid var(--vp-gold);
  outline-offset: 4px;
}
.vp-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--vp-blue);
  box-shadow: 0 24px 48px rgba(11,14,18,.10);
}
.vp-service-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2a3340 0%, #4a6075 50%, #6b8095 100%);
  display: grid;
  place-items: center;
  position: relative;
}
.vp-img-pill {
  background: rgba(11,14,18,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.vp-service-body {
  padding: 28px 26px 28px;
  position: relative;
}
.vp-service-card .num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: rgba(11,14,18,.06);
  letter-spacing: -0.04em;
}
.vp-service-card .icon-box {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vp-blue), var(--vp-blue-deep));
  display: grid; place-items: center;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px var(--vp-blue-glow);
}
.vp-service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.vp-service-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(11,14,18,.62);
  margin: 0 0 18px;
}
.vp-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--vp-blue);
  letter-spacing: .01em;
}
.vp-service-link svg { transition: transform .2s ease; }
.vp-service-card:hover .vp-service-link svg { transform: translateX(4px); }

/* ============== PROCESS — TRANSFORMATION TRACK ============== */
.vp-process-track {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  position: relative;
}
.vp-process-card {
  flex: 1;
  position: relative;
  padding: 36px 28px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.vp-process-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vp-blue) 0%, rgba(201,169,110,0) 100%);
  opacity: 0.85;
}
.vp-process-card::after {
  content: "";
  position: absolute;
  top: -60%; right: -40%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,169,110,0.10), rgba(201,169,110,0) 70%);
  pointer-events: none;
}
.vp-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.32);
  background: linear-gradient(180deg, rgba(201,169,110,0.05) 0%, rgba(255,255,255,0.015) 100%);
}
.vp-process-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
}
.vp-process-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201,169,110,0.10);
  border: 1px solid rgba(201,169,110,0.35);
  display: grid;
  place-items: center;
  color: var(--vp-blue);
  box-shadow: 0 8px 22px rgba(201,169,110,0.18);
}
.vp-process-icon svg { width: 24px; height: 24px; }
.vp-process-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px dashed rgba(201,169,110,0.25);
  z-index: 1;
}
.vp-process-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vp-blue);
  margin-bottom: 10px;
}
.vp-process-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.vp-process-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--vp-text-dim);
  margin: 0;
}
.vp-process-arrow {
  flex-shrink: 0;
  align-self: center;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--vp-blue);
  opacity: 0.7;
  transition: opacity .25s ease, transform .25s ease;
}
.vp-process-arrow svg { width: 100%; height: 100%; }
.vp-process-track:hover .vp-process-arrow { opacity: 1; }

/* ============== REVIEWS ============== */
.vp-reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--vp-line-light);
  border-radius: 999px;
  padding: 12px 24px;
  margin-top: 20px;
  box-shadow: 0 8px 24px rgba(11,14,18,0.04);
}
.vp-reviews-summary .rs-stars {
  color: #FFB547;
  display: inline-flex;
  gap: 2px;
}
.vp-reviews-summary .rs-text {
  font-size: 14px;
  color: var(--vp-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vp-reviews-summary .rs-text strong { font-weight: 700; }
.vp-reviews-summary .rs-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vp-blue);
  font-weight: 600;
  margin-left: 4px;
}

.vp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.vp-review-card {
  background: white;
  border-radius: 20px;
  padding: 28px 28px;
  border: 1px solid var(--vp-line-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.vp-review-card:hover {
  transform: translateY(-4px);
  border-color: var(--vp-blue);
  box-shadow: 0 24px 48px rgba(11,14,18,.08);
}
.vp-review-card .rc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.vp-review-card .stars {
  color: #FFB547;
  display: inline-flex;
  gap: 2px;
}
.vp-review-card .platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(201,169,110,0.08);
  color: var(--vp-blue);
}
.vp-review-card blockquote {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  color: var(--vp-ink);
  flex: 1;
  text-wrap: pretty;
}
.vp-review-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--vp-line-light);
}
.vp-review-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vp-blue), var(--vp-blue-deep));
  display: grid; place-items: center;
  color: white;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.vp-review-card .who .name { font-weight: 600; font-size: 14.5px; color: var(--vp-ink); }
.vp-review-card .who .where { font-size: 12.5px; color: rgba(11,14,18,.55); margin-top: 2px; }

/* ============== CTA BAND ============== */
.vp-cta-band {
  position: relative;
  background: var(--vp-ink);
  color: white;
  padding: 110px 0;
  overflow: hidden;
}
.vp-cta-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.vp-cta-bg-decor .cta-slash {
  position: absolute;
  top: -10%;
  bottom: -10%;
  background: var(--vp-blue);
  transform: skewX(-12deg);
}
.vp-cta-bg-decor .cta-slash-1 {
  left: -8%;
  width: 12%;
  opacity: 0.9;
  box-shadow: 0 0 80px var(--vp-blue-glow);
}
.vp-cta-bg-decor .cta-slash-2 {
  left: 8%;
  width: 24px;
  opacity: 0.5;
}
.vp-cta-bg-decor .cta-slash-3 {
  left: 12%;
  width: 6px;
  opacity: 0.3;
}
.vp-cta-band::before, .vp-cta-band::after { display: none; }
.vp-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px 0 18%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.vp-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vp-blue);
  margin-bottom: 16px;
}
.vp-cta-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vp-blue);
  box-shadow: 0 0 12px var(--vp-blue);
  animation: vp-pulse 2s ease-in-out infinite;
}
@keyframes vp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.vp-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-wrap: balance;
  color: white;
}
.vp-cta-band p {
  font-size: 16.5px;
  color: var(--vp-text-dim);
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}
.vp-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.vp-big-btn {
  background: var(--vp-blue);
  color: white;
  font-weight: 700;
  font-size: 15.5px;
  padding: 18px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 40px var(--vp-blue-glow);
  transition: transform .15s, box-shadow .2s;
}
.vp-big-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 50px var(--vp-blue-glow); }
.vp-cta-phone {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.01em;
}
.vp-cta-phone .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,.18);
  border: 1px solid rgba(201,169,110,.4);
  display: grid; place-items: center;
  color: var(--vp-blue);
  flex-shrink: 0;
}

/* ============== FOOTER ============== */
.vp-footer {
  background: #07090C;
  color: var(--vp-text-dim);
  padding: 80px 0 32px;
}
.vp-footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}
.vp-footer-grid h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 22px;
}
.vp-footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vp-footer-grid li a { font-size: 14px; transition: color .15s; }
.vp-footer-grid li a:hover { color: var(--vp-blue); }
.vp-footer-grid li.footer-addr {
  font-size: 13px;
  line-height: 1.55;
  color: var(--vp-text-dim, rgba(255,255,255,0.6));
  margin-top: 6px;
}
.vp-footer .blurb { font-size: 14px; line-height: 1.6; max-width: 320px; margin: 18px 0 22px; }
.vp-footer .socials { display: flex; gap: 10px; }
.vp-footer .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--vp-line);
  display: grid; place-items: center;
  color: white;
  transition: all .15s;
}
.vp-footer .socials a:hover { background: var(--vp-blue); border-color: var(--vp-blue); }
.vp-footer .footer-logo { height: 56px; width: auto; }
.vp-footer-bottom {
  max-width: 1320px;
  margin: 60px auto 0;
  padding: 28px 32px 0;
  border-top: 1px solid var(--vp-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.vp-footer-bottom .legal a { margin-left: 24px; }

/* ============== SERVICE AREAS (home) ============== */
.vp-areas-home { padding-top: 90px; padding-bottom: 90px; }
.vp-areas-grid {
  max-width: 980px;
  margin: 56px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
}
.vp-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: white;
  border: 1px solid var(--vp-line-light, rgba(11,14,18,0.08));
  border-radius: 999px;
  color: var(--vp-ink);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(11,14,18,0.04);
}
.vp-area-chip:hover {
  border-color: var(--vp-blue);
  background: var(--vp-blue);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--vp-blue-glow);
}
.vp-area-marker {
  display: inline-flex;
  color: var(--vp-blue);
  transition: color 0.2s ease;
}
.vp-area-chip:hover .vp-area-marker { color: white; }

/* ============== HERO LOAD ANIMATIONS ============== */
@keyframes vp-fade-up {
  0%   { opacity: 0; transform: translate3d(0, 18px, 0); filter: blur(2px); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}
@keyframes vp-fade-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.vp-anim {
  opacity: 0;
  animation: vp-fade-up .9s cubic-bezier(.2,.7,.2,1) both;
  will-change: transform, opacity;
}
.vp-anim-1 { animation-delay: .05s; }
.vp-anim-2 { animation-delay: .18s; }
.vp-anim-3 { animation-delay: .32s; }
.vp-anim-4 { animation-delay: .46s; }
.vp-anim-5 { animation-delay: .58s; }
.vp-hero .vp-slash,
.vp-hero .vp-hero-scrim,
.vp-hero .vp-sunburst {
  animation: vp-fade-in 1.2s ease-out .15s both;
}
@media (prefers-reduced-motion: reduce) {
  .vp-anim,
  .vp-hero .vp-slash,
  .vp-hero .vp-hero-scrim,
  .vp-hero .vp-sunburst { animation: none; opacity: 1; transform: none; filter: none; }
}

/* ============== RESPONSIVE ============== */
/* Intermediate breakpoint — keep the pill nav, prevent it from crashing into the
   logo + phone CTA on mid-width laptops */
@media (max-width: 1280px) {
  .vp-nav { padding: 0 28px; }
  .vp-nav-pill { padding: 8px 8px; gap: 0; }
  .vp-nav-pill a { padding: 7px 12px; font-size: 13px; }
  .vp-phone-pill { padding: 9px 16px 9px 12px; font-size: 13px; }
  .vp-quote-btn { padding: 11px 18px; font-size: 13px; }
  .vp-top-rail-slash { width: 320px; }
}

@media (max-width: 1100px) {
  .vp-nav { padding: 0 24px; gap: 12px; }
  .vp-nav-pill { display: none; }
  .vp-phone-pill { white-space: nowrap; padding: 9px 16px 9px 12px; font-size: 13px; }
  .vp-quote-btn { white-space: nowrap; padding: 10px 18px; font-size: 12.5px; }
  .vp-top-rail-slash { width: 280px; }
  .vp-top-rail-email { font-size: 12px; }
  .vp-portfolio-card.large,
  .vp-portfolio-card.medium,
  .vp-portfolio-card.tall { grid-column: span 6; height: 360px; }
  .vp-portfolio-card.wide { grid-column: span 12; height: 320px; }
  .vp-portfolio-card.square { grid-column: span 6; height: 320px; }
  .vp-services-grid, .vp-services-grid.four, .vp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  /* Process track collapses to 2x2 with arrows pointing right between cols and down between rows */
  .vp-process-track {
    flex-wrap: wrap;
    gap: 16px;
  }
  .vp-process-card { flex: 0 0 calc(50% - 26px); }
  .vp-process-arrow { display: none; }
}

@media (max-width: 760px) {
  .vp-topbar { display: none; }
  .vp-top-rail { display: none; }
  .vp-nav {
    top: calc(16px + env(safe-area-inset-top, 0px));
    padding: 0 16px;
    padding-left: calc(16px + env(safe-area-inset-left, 0px));
    padding-right: calc(16px + env(safe-area-inset-right, 0px));
  }
  .vp-nav-pill { display: none; }
  .vp-logo { height: 44px; }
  .vp-quote-btn { display: none; }
  .vp-phone-pill { display: none; }
  /* On mobile the burger replaces all desktop CTAs — they're surfaced inside the drawer menu */
  .vp-hero { min-height: auto; }
  .vp-hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "quote"
      "trust";
    padding: calc(96px + env(safe-area-inset-top, 0px)) 14px 28px;
    min-height: auto;
    column-gap: 0;
    row-gap: 10px;
    text-align: center;
  }
  .vp-hero-text {
    align-self: auto;
    padding: 0;          /* reset desktop padding-right so block isn't shifted */
    max-width: 100%;     /* let it span full mobile width then center its text */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .vp-hero-quote { min-height: 0; border-radius: 18px; }
  .vp-quote-bar { padding: 24px 18px 14px; }
  .vp-quote-trust { margin-top: 12px; }
  .vp-quote-bar--success { min-height: 320px; padding: 32px 18px; }
  .vp-success-title { font-size: 24px; }
  .vp-success-body { font-size: 14px; }
  .vp-success-check { width: 68px; height: 68px; }
  .vp-eyebrow {
    font-size: 11px;
    letter-spacing: .16em;
    margin: 0 auto 14px;
    justify-content: center;
    text-align: center;
  }
  .vp-headline {
    font-size: 38px;
    width: 100%;
    text-align: center;
    margin: 0 auto 24px;
  }
  .vp-subhead {
    font-size: 15px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 12px;
  }
  .vp-slash, .vp-slash::before, .vp-slash::after { display: none; }
  .vp-hero-scrim { display: none; }
  .vp-sunburst { display: none; }
  /* Subtle deck-hero background behind the hero copy on mobile */
  .vp-hero {
    position: relative;
  }
  .vp-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 720px;
    background-image: var(--hero-bg, url('assets/deck-hero.jpg'));
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  }
  .vp-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 720px;
    background: linear-gradient(180deg, rgba(11,14,18,0.45) 0%, rgba(11,14,18,0.75) 60%, rgba(11,14,18,1) 100%);
    z-index: 0;
    pointer-events: none;
  }
  .vp-hero-inner { position: relative; z-index: 2; }
  .vp-trust-card {
    flex-wrap: nowrap;
    padding: 12px 16px;
    gap: 12px;
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
  .vp-trust-text { text-align: left; }
  /* Mobile review boxes + Get Your Free Quote button — between subhead and quote form */
  .vp-mobile-precta {
    grid-area: precta;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 4px auto 0;
    width: 100%;
    max-width: 360px;
  }
  .vp-hero-quote { margin-top: 6px; }
  .vp-mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--vp-gold) 0%, var(--vp-blue-2) 100%);
    color: var(--vp-ink);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 16px 22px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(201,169,110,0.35);
    width: 100%;
  }
  .vp-mobile-reviews {
    display: flex;
    gap: 10px;
    align-self: center;
    justify-content: center;
    width: 100%;
  }
  .vp-mreview {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(20,24,31,0.85);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 12px;
    padding: 10px 12px;
    backdrop-filter: blur(8px);
  }
  .vp-mreview-badge {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
  }
  .vp-mreview-body { display: flex; flex-direction: column; gap: 2px; text-align: left; }
  .vp-mreview-stars {
    color: #FFB547;
    font-weight: 700;
    font-size: 11px;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .vp-mreview-stars strong { color: white; font-size: 12px; }
  .vp-mreview-label {
    font-size: 10.5px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
  }
  .vp-form-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vp-quote-bar h2 { font-size: 22px; margin-bottom: 16px; }
  .vp-input { height: 48px; padding: 0 14px; gap: 8px; }
  .vp-input--no-ic { padding-left: 14px; }
  .vp-marquee { font-size: 16px; padding: 14px 0; }
  .vp-marquee-track > span { gap: 32px; padding-right: 32px; }
  .vp-section { padding: 60px 0; }
  .vp-section-head { margin-bottom: 36px; padding: 0 16px; }
  .vp-section-head h2 { font-size: 32px; }
  .vp-section-head .sub { font-size: 15px; }
  .vp-process-track {
    flex-direction: column;
    gap: 14px;
    padding: 0 16px;
  }
  .vp-process-card { flex: 1 1 auto; padding: 28px 24px; }
  .vp-process-arrow { display: grid; transform: rotate(90deg); width: 32px; height: 32px; margin: 4px auto; opacity: 0.5; }
  .vp-portfolio-grid, .vp-services-grid, .vp-services-grid.four,
  .vp-reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }
  .vp-portfolio-card.large, .vp-portfolio-card.medium, .vp-portfolio-card.tall,
  .vp-portfolio-card.wide, .vp-portfolio-card.square {
    grid-column: span 1; height: 240px;
  }
  .vp-service-body { padding: 22px 22px 24px; }
  .vp-service-card h3 { font-size: 19px; }
  .vp-cta-band { padding: 70px 0; }
  .vp-cta-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; text-align: center; }
  .vp-cta-eyebrow { justify-content: center; }
  /* CTA actions stack is flex-column — must override align-items (the cross axis on column flex) */
  .vp-cta-actions { align-items: center; }
  .vp-cta-text { display: flex; flex-direction: column; align-items: center; }
  .vp-cta-band h2 { font-size: 30px; }
  .vp-cta-band::before, .vp-cta-band::after { display: none; }
  /* Hide the gold decorative slashes on mobile — they overlap the headline */
  .vp-cta-bg-decor { display: none; }
  .vp-cta-phone { font-size: 22px; }
  /* Reviews summary pill — stack vertically on mobile so text doesn't fragment */
  .vp-reviews-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 22px;
    border-radius: 22px;
    text-align: center;
    align-items: center;
  }
  .vp-reviews-summary .rs-stars { gap: 3px; }
  .vp-reviews-summary .rs-text {
    display: block;
    font-size: 13.5px;
    line-height: 1.45;
    text-align: center;
  }
  .vp-reviews-summary .rs-platform {
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
    white-space: nowrap;
    line-height: 1;
    gap: 5px;
    vertical-align: middle;
  }
  .vp-reviews-summary .rs-platform svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    position: relative;
    top: -1px;
  }
  .vp-big-btn { padding: 16px 28px; font-size: 15px; }
  .vp-footer { padding: 60px 0 24px; }
  .vp-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
    text-align: center;
  }
  .vp-footer-grid > div { display: flex; flex-direction: column; align-items: center; }
  .vp-footer-grid h4 { margin: 0 0 14px; }
  .vp-footer-grid ul { align-items: center; }
  .vp-footer .blurb { max-width: 360px; margin: 16px auto 18px; text-align: center; }
  .vp-footer .socials { justify-content: center; }
  .vp-footer .footer-logo { height: 52px; margin: 0 auto; }
  .vp-footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 24px 20px 0;
    margin-top: 40px;
  }
  .vp-footer-bottom .legal a { margin: 0 12px; }
}

@media (max-width: 420px) {
  .vp-headline { font-size: 32px; }
  .vp-section-head h2 { font-size: 28px; }
}

/* ============== SIGNATURE PROJECT — UNIFIED REVIEW + VIDEO CARD ============== */
.vp-feature-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 64px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: white;
  border: 1px solid rgba(11,14,18,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(11,14,18,0.10), 0 8px 24px rgba(11,14,18,0.05);
  position: relative;
}
/* Top gold accent rail unifying both halves */
.vp-feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vp-blue) 0%, rgba(201,169,110,0.55) 60%, rgba(201,169,110,0) 100%);
  z-index: 2;
}
.vp-feature-review {
  position: relative;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(11,14,18,0.06);
  background: white;
}
.vp-feature-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vp-feature-review-stars {
  color: #FFB547;
  display: inline-flex;
  gap: 2px;
}
.vp-feature-review-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,14,18,0.55);
}
.vp-feature-review-platform svg { color: var(--vp-blue); }
.vp-feature-review-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.6;
  color: rgba(201,169,110,0.22);
  margin-top: 6px;
  margin-bottom: -10px;
  user-select: none;
}
.vp-feature-review-quote {
  font-family: var(--font-display);
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--vp-ink);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.vp-feature-review-who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(11,14,18,0.06);
}
.vp-feature-review-avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96e, #8c6f37);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.vp-feature-review-meta { flex: 1; min-width: 0; }
.vp-feature-review-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--vp-ink);
}
.vp-feature-review-sub {
  font-size: 12.5px;
  color: rgba(11,14,18,0.55);
  margin-top: 2px;
}
.vp-feature-review-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vp-blue);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.32);
  padding: 5px 9px;
  border-radius: 999px;
}

.vp-feature-video {
  position: relative;
  padding: 40px 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,169,110,0.08), rgba(201,169,110,0) 60%),
    linear-gradient(180deg, #FBF8F2 0%, #F4EFE6 100%);
}
/* Make the vertical frame fill the column gracefully on wide screens — drops the dead space
   above/below the video that made the right side feel hollow. */
.vp-feature-card .vp-feature-video-frame {
  max-width: min(360px, 100%);
  width: 100%;
}
.vp-feature-video-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vp-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vp-feature-video-tagline::before,
.vp-feature-video-tagline::after {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(201,169,110,0.5);
}
.vp-feature-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: var(--vp-ink);
  border: 1px solid rgba(11,14,18,0.08);
  box-shadow:
    0 30px 80px rgba(11,14,18,0.18),
    0 8px 24px rgba(11,14,18,0.08);
  isolation: isolate;
}
.vp-feature-video-frame iframe,
.vp-feature-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: var(--vp-ink);
}
.vp-feature-video-frame-shadow {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -22px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(11,14,18,0.22), rgba(11,14,18,0));
  filter: blur(2px);
  z-index: -1;
}
.vp-feature-video-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(201,169,110,0.18), transparent 60%),
    radial-gradient(120% 90% at 80% 80%, rgba(201,169,110,0.10), transparent 60%),
    linear-gradient(135deg, #14181F 0%, #0B0E12 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: white;
}
.vp-feature-video-play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--vp-blue);
  display: grid;
  place-items: center;
  color: var(--vp-ink);
  box-shadow:
    0 14px 40px var(--vp-blue-glow),
    inset 0 0 0 6px rgba(255,255,255,0.12);
  position: relative;
}
.vp-feature-video-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  animation: vp-pulse-ring 2.4s ease-out infinite;
}
@keyframes vp-pulse-ring {
  0%   { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.vp-feature-video-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vp-feature-video-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vp-blue);
}
.vp-feature-video-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
@media (max-width: 980px) {
  .vp-feature-card {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    border-radius: 22px;
  }
  /* Mobile: video on top, review below */
  .vp-feature-card .vp-feature-video  { order: 1; padding: 28px 20px 24px; gap: 14px; }
  .vp-feature-card .vp-feature-review {
    order: 2;
    padding: 28px 22px 30px;
    border-right: 0;
    border-top: 1px solid rgba(11,14,18,0.06);
  }
  .vp-feature-card .vp-feature-video-frame { max-width: 300px; }
  .vp-feature-review-quote { font-size: 15px; line-height: 1.55; }
  .vp-feature-review-mark { font-size: 64px; margin-top: 2px; margin-bottom: -6px; }
}
@media (max-width: 760px) {
  .vp-feature-video-frame { border-radius: 16px; }
  .vp-feature-video-play { width: 64px; height: 64px; }
  .vp-feature-video-title { font-size: 14px; }
}

/* ============== SERVICE AREAS — MAP SPLIT ============== */
.vp-areas-split {
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.vp-areas-map-wrap {
  position: relative;
  background: white;
  border: 1px solid rgba(11,14,18,0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(11,14,18,0.06);
  overflow: hidden;
}
iframe.vp-areas-map {
  width: 100%;
  height: 480px;
  display: block;
  border-radius: 14px;
  border: 0;
}
.vp-areas-map-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(20, 24, 31, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  pointer-events: none;
}
.vp-areas-map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.22);
  animation: vp-pulse 2s ease-in-out infinite;
}
.vp-areas-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vp-areas-county-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vp-blue);
  margin-bottom: 14px;
}
.vp-areas-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vp-areas-chips li { display: flex; }
.vp-areas-list-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vp-blue);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  margin-top: 8px;
  align-self: flex-start;
  border-bottom: 1px solid rgba(201,169,110,0.4);
  padding-bottom: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.vp-areas-list-cta:hover {
  gap: 14px;
  color: var(--vp-blue-2, #b8964f);
}
@media (max-width: 980px) {
  .vp-areas-split {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }
  .vp-areas-map-wrap { padding: 10px; }
  iframe.vp-areas-map { height: 360px; }
  .vp-areas-map-badge { left: 20px; bottom: 20px; font-size: 11px; padding: 8px 12px; }
}

/* ============== CTA PRO (above footer, refined) ============== */
.vp-cta-pro .vp-cta-bg-decor { display: none; } /* gold slash was overlapping the new pro layout text */
.vp-cta-pro .vp-cta-inner {
  padding: 0 32px;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1240px;
  align-items: center;
}
.vp-cta-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.vp-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 14.5px;
  font-weight: 500;
}
.vp-cta-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,169,110,0.18);
  border: 1px solid rgba(201,169,110,0.5);
  display: grid;
  place-items: center;
  color: var(--vp-blue);
}
.vp-cta-card {
  position: relative;
  background: linear-gradient(155deg, #1A1F28 0%, #0F1319 100%);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vp-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(201,169,110,0.6), rgba(201,169,110,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.vp-cta-card-tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vp-blue);
  background: rgba(201,169,110,0.10);
  border: 1px solid rgba(201,169,110,0.32);
  padding: 7px 12px;
  border-radius: 999px;
}
.vp-cta-card-headline {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: white;
  margin-top: 4px;
}
.vp-cta-card-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  margin-bottom: 10px;
}
.vp-cta-pro .vp-big-btn {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
}
.vp-cta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}
.vp-cta-divider::before,
.vp-cta-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.vp-cta-divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.vp-cta-pro .vp-cta-phone {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
  font-size: 20px;
}
.vp-cta-pro .vp-cta-phone:hover {
  border-color: rgba(201,169,110,0.5);
  background: rgba(201,169,110,0.05);
}
.vp-cta-phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.vp-cta-phone-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.vp-cta-phone-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}
.vp-cta-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.vp-cta-stars {
  display: inline-flex;
  gap: 1px;
  color: #FFB547;
}
@media (max-width: 1100px) {
  .vp-cta-pro .vp-cta-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .vp-cta-pro .vp-cta-inner { padding: 0 16px; gap: 28px; text-align: left; }
  .vp-cta-pro .vp-cta-text { align-items: flex-start; }
  .vp-cta-pro .vp-cta-eyebrow { justify-content: flex-start; }
  .vp-cta-bullets li { font-size: 13.5px; }
  .vp-cta-card { padding: 28px 22px; }
  .vp-cta-card-headline { font-size: 20px; }
  .vp-cta-phone-num { font-size: 19px; }
}

/* ============== REVIEWS MOBILE CAROUSEL ============== */
.vp-reviews-scroller { width: 100%; }
.vp-reviews-stage { position: relative; }
.vp-reviews-side { display: none; }
.vp-reviews-mobile-controls { display: none; }
@media (max-width: 760px) {
  /* The scroller is the scroll container. Cards live inside the grid and snap. */
  .vp-reviews-scroller {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 22px;
  }
  .vp-reviews-scroller::-webkit-scrollbar { display: none; }
  /* Force-override the base .vp-reviews-grid grid+max-width that capped the flex container */
  .vp-reviews-scroller .vp-reviews-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: max-content !important;
  }
  .vp-reviews-scroller .vp-review-card {
    flex: 0 0 100vw;
    width: 100vw;
    max-width: none;
    padding: 30px 60px;
    box-sizing: border-box;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--vp-line-light);
    border-bottom: 1px solid var(--vp-line-light);
  }
  /* Prevent the carousel from spilling out and causing whole-page horizontal scroll */
  body, html { overflow-x: hidden; }

  /* Mobile review controls: left + right arrows overlay the card; dots below */
  .vp-reviews-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 0;
    background: rgba(20, 24, 31, 0.92);
    color: white;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 8px 20px rgba(11,14,18,0.25);
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(6px);
  }
  .vp-reviews-side-prev { left: 8px; }
  .vp-reviews-side-next { right: 8px; }
  .vp-reviews-side:active { transform: translateY(-50%) scale(0.94); }
  .vp-reviews-side svg { display: block; }

  .vp-reviews-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px 4px;
    max-width: 360px;
    margin: 0 auto;
  }
  .vp-reviews-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .vp-reviews-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(11,14,18,0.18);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, width .2s ease;
  }
  .vp-reviews-dot.is-active {
    background: var(--vp-blue);
    width: 22px;
    border-radius: 999px;
  }
}
