/* ============================================================
   v2.css — Scottsdale AC Pros v2 Design System
   ============================================================ */

/* === Design Tokens === */
:root {
  --color-primary: #008BD9;
  --color-blue-light: #00A4E9;
  --color-blue-mid: #0062C0;
  --color-blue-dark: #002E5A;
  --color-cta-start: #F8C100;
  --color-cta-end: #EE3324;
  --color-white: #FFFFFF;
  --color-surface-light: #F2F2F2;
  --color-text-body: #1a1a1a;
  --color-text-muted: #555;

  --gradient-hero: linear-gradient(180deg, #0062C0 1%, #002E5A 100%);
  --gradient-cta-section: linear-gradient(90deg, #0062C0 0%, #00A4E9 100%);
  --gradient-button: linear-gradient(90deg, #EE3324 0%, #F8C100 100%);

  --radius-card: 30px;
  --radius-button: 10px;
  --container-max: 1380px;
  --container-padding: clamp(1rem, 4vw, 3rem);
  --spacing-section: clamp(3rem, 5vw, 6rem);
  --spacing-card-gap: clamp(1rem, 3vw, 2.5rem);

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-nav: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* === Skip Link (a11y) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-button);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overscroll-behavior-y: none; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  background: var(--color-surface-light);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* === Honeypot === */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 120%);
  width: min(640px, calc(100% - 32px));
  background-color: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 32, 80, 0.2);
  padding: 20px 24px;
  z-index: 3000;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-banner__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-banner .btn {
  display: inline-block;
  padding: 10px 20px;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  width: 100%;
}
.cookie-banner .btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.cookie-banner .btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.cookie-banner .btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-banner .btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
@media (min-width: 640px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
  .cookie-banner__actions {
    flex-direction: row;
    justify-content: flex-end;
    min-width: 220px;
  }
  .cookie-banner .btn {
    width: auto;
    flex: 1;
  }
}
@media print {
  .cookie-banner { display: none; }
}

/* === Image Placeholder === */
.img-placeholder {
  display: block;
  background: #1a3a5c;
  width: 100%;
  height: 100%;
}

/* ============================================================
   NAV BAR
   ============================================================ */
.v2-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px var(--container-padding);
  background: transparent;
  pointer-events: none;
  transition: background 0.3s, transform 0.35s ease;
}
.v2-nav-wrap.nav-hidden {
  transform: translateY(-110%);
  pointer-events: none;
}
.v2-nav-wrap.nav-scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.v2-nav-pill {
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
  gap: 16px;
  pointer-events: all;
  overflow: visible;
}
.v2-nav-logo { flex-shrink: 0; }
.v2-nav-logo img { display: block; }
.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}
.v2-nav-links a {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 400;
  color: var(--color-text-body);
  transition: color 0.2s;
  white-space: nowrap;
}
.v2-nav-links a:hover { color: var(--color-primary); }
.v2-nav-dropdown { position: relative; }
.v2-nav-dropdown-toggle {
  font-family: var(--font);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 400;
  color: var(--color-text-body);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.v2-nav-dropdown-toggle:hover { color: var(--color-primary); }
.v2-nav-chevron { transition: transform 0.2s; font-size: 20px; }
.v2-nav-dropdown.open .v2-nav-chevron { transform: rotate(180deg); }
.v2-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  min-width: 200px;
  z-index: 100;
}
.v2-nav-dropdown.open .v2-nav-dropdown-menu { display: block; }
.v2-nav-dropdown-menu li { list-style: none; }
.v2-nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 15px;
  color: var(--color-text-body);
  transition: background 0.15s, color 0.15s;
}
.v2-nav-dropdown-menu a:hover {
  background: var(--color-surface-light);
  color: var(--color-primary);
}
.v2-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.v2-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-body);
  white-space: nowrap;
}
.v2-nav-phone-icon { color: #EE3324; flex-shrink: 0; }
.v2-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 24px;
  background: var(--gradient-button);
  color: var(--color-white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.v2-nav-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.v2-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.v2-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-body);
  transition: 0.3s;
  border-radius: 2px;
}

/* ============================================================
   HERO — Split layout (photo left, gradient right)
   ============================================================ */
.v2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(560px, 70vh, 820px);
}
.v2-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.v2-hero-photo .img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a5c 0%, #0a1e3a 100%);
}
.v2-hero-logo-bg {
  position: absolute;
  bottom: clamp(-5%, 1vw, 20%);
  left: -10%;
  width: clamp(300px, 35vw, 400px);
  height: auto;
  opacity: 0.03;
  scale: 2.2;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 1;
}
.v2-hero-tech {
  position: absolute;
  bottom: -8%;
  right: clamp(5%, 15%, 25%);
  width: clamp(280px, 45%, 500px);
  height: auto;
  scale: 2;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
}
.v2-hero-content {
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: clamp(5.5rem, 10vh, 7rem) clamp(1.5rem, 4vw, 4rem) var(--spacing-section);
}
.v2-hero-inner { width: 100%; max-width: 560px; }
.v2-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-cta-start);
  margin-bottom: 12px;
}
.v2-hero-inner h1 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 16px;
}
.v2-hero-inner > p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
}
/* Hero Form */
.v2-hero-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}
.v2-hero-form h3 {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.v2-hero-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.v2-hero-form .form-group { position: relative; }
.v2-hero-form input {
  width: 100%;
  padding: 20px 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: transparent;
  font-family: var(--font);
  font-size: 16px;
  color: var(--color-white);
  transition: border-color 0.2s;
}
.v2-hero-form input::placeholder { color: rgba(255, 255, 255, 0.75); }
.v2-hero-form input:focus {
  outline: none;
  border-color: var(--color-white);
}
.v2-hero-form .form-group.has-error input { border-color: #ff7b7b; }
.v2-hero-submit {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--gradient-button);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-button);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.v2-hero-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.v2-hero-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ============================================================
   FORM VALIDATION (shared)
   ============================================================ */
.field-error {
  color: #ff8080;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.form-group.has-error .field-error { display: block; }
.form-error {
  background: rgba(238, 51, 36, 0.15);
  color: #ff8080;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 13px;
  display: none;
  border: 1px solid rgba(238, 51, 36, 0.3);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.v2-trust {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  background: var(--color-white);
  border-bottom: 1px solid #e5e7eb;
}
.v2-trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.v2-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.v2-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-body);
}
.v2-trust-label {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--color-text-body);
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.v2-pain {
  padding: var(--spacing-section) 0;
  background: var(--color-white);
}
.v2-pain-inner {
  position: relative;
  background: linear-gradient(135deg, #EE3324 0%, #F8C100 100%);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}
.v2-pain-logo-bg {
  position: absolute;
  bottom: clamp(-20%, 1vw, -15%);
  right: clamp(5%, 15vw, 20%);
  width: clamp(200px, 25vw, 350px);
  height: auto;
  scale: 1.2;
  opacity: 0.12;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}
.v2-pain h2 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 50px;
  text-align: left;
}
.v2-pain-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 1rem;
}
.v2-pain-left { grid-column: span 2; min-width: 0; }
.v2-pain-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-bottom: 28px;
}
.v2-pain-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
}
.v2-pain-item iconify-icon {
  flex-shrink: 0;
  color: var(--color-white);
}
.v2-pain-footer {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}
.v2-pain-right {
  position: absolute;
  right: 2rem;
  bottom: -20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.v2-pain-van {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}
.v2-pain-deco {
  opacity: 0.22;
  color: var(--color-white);
  display: block;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.v2-about {
  padding: var(--spacing-section) 0;
  background: var(--color-white);
}
.v2-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.v2-about-img { position: relative; }
.v2-about-img > .img-placeholder {
  border-radius: 16px;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.v2-about-img > img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
.v2-about-logo-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--color-white);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.v2-about-logo-overlay img { width: 130px; height: auto; }
.v2-about-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-body);
  margin-bottom: 20px;
}
.v2-about-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.v2-about-text p strong { color: var(--color-text-body); }
.v2-about-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--gradient-button);
  color: var(--color-white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-gradient:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-blue-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--color-blue-mid);
  border: 2px solid var(--color-blue-mid);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-button);
  transition: background 0.2s, color 0.2s;
}
.btn-blue-outline:hover { background: var(--color-blue-mid); color: var(--color-white); }

/* ============================================================
   SERVICES — Problem-based cards
   ============================================================ */
.v2-services {
  padding: var(--spacing-section) 0;
  background: var(--color-surface-light);
}
.v2-section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.v2-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.v2-section-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-body);
  line-height: 1.2;
}
.v2-section-header p {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-top: 10px;
}
.v2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-card-gap);
}
.v2-svc-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #d4d8dd;
  container-type: inline-size;
}
.v2-svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15); }
.v2-svc-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.v2-svc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-svc-card-image .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #c8cdd4, #b0b8c2);
}
.v2-svc-card-body {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: calc(33.33% - 12px);
  background: linear-gradient(180deg, var(--color-primary), var(--color-blue-mid));
  border-radius: 14px;
  padding: clamp(10px, 2.5cqi, 16px) clamp(12px, 3cqi, 20px);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v2-svc-card:hover .v2-svc-card-body {
  transform: scale(1.03);
  box-shadow: 0 0 24px 6px rgba(0, 139, 217, 0.7);
}
.v2-svc-card-body h3 {
  font-size: clamp(14px, 4.5cqi, 22px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: clamp(2px, 1cqi, 8px);
  line-height: 1.2;
}
.v2-svc-card-body p {
  font-size: clamp(12px, 3.5cqi, 17px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.90);
}

/* ============================================================
   REVIEWS — Carousel
   ============================================================ */
.v2-reviews {
  padding: var(--spacing-section) 0;
  background: var(--color-white);
}
.v2-reviews-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 var(--container-padding);
}
.v2-reviews-header h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; }
.v2-reviews-carousel { overflow: hidden; }
.v2-reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px var(--container-padding) 16px;
}
.v2-review-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8edf2;
  min-width: calc((min(var(--container-max), 100vw - 2 * var(--container-padding)) - 48px) / 3);
  max-width: calc((min(var(--container-max), 100vw - 2 * var(--container-padding)) - 48px) / 3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v2-review-stars { color: var(--color-cta-start); font-size: 18px; letter-spacing: 2px; }
.v2-review-text {
  color: var(--color-text-body);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
  margin: 0;
  font-style: italic;
}
.v2-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.v2-review-name { font-weight: 700; font-size: 15px; color: var(--color-text-body); }
.v2-review-date { font-size: 13px; color: var(--color-text-muted); }
.v2-review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================================
   HOW IT WORKS — Blue-bordered cards
   ============================================================ */
.v2-steps {
  padding: var(--spacing-section) 0 0;
  background: var(--color-surface-light);
}
/* Eyebrow override for steps section */
.v2-steps .v2-section-eyebrow {
  color: var(--color-text-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 16px;
}
.v2-steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: clamp(2rem, 3vw, 3rem);
}
.v2-step {
  border: 3px solid var(--color-primary);
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.75rem);
  text-align: center;
  background: var(--color-white);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
  max-width: 240px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.v2-step:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0, 139, 217, 0.1); }
.v2-step-connector {
  width: 100px;
  flex-shrink: 0;
  background: var(--color-primary);
  clip-path: polygon(0% 0%, 45% 0%, 100% 100%, 55% 100%);
  margin: 0 -28px;
  rotate: -25deg;
  position: relative;
  z-index: 0;
  align-self: stretch;
}
.v2-step-num {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 14px;
}
.v2-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-body);
  margin-bottom: 8px;
}
.v2-step p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION — Simple Banner
   ============================================================ */
.v2-cta-section {
  padding: 0;
  background: var(--color-white);
}
.v2-final-cta {
  position: relative;
  border-radius: 0;
  background: var(--gradient-cta-section);
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
}
.v2-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.v2-final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/thermometer-sky.webp') center / cover no-repeat;
  opacity: 0.45;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.v2-final-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.v2-final-cta-eyebrow {
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-white);
  margin-bottom: 8px;
}
.v2-final-cta h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.v2-final-cta p {
  font-size: 11px;
  color: var(--color-white);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 20px;
}
.v2-final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.v2-final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-button);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.v2-final-cta-btn-primary {
  background: var(--gradient-button);
  color: var(--color-white);
}
.v2-final-cta-btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.v2-final-cta-btn-secondary {
  background: var(--gradient-button);
  color: var(--color-white);
  border: none;
}
.v2-final-cta-btn-secondary:hover { opacity: 0.92; transform: translateY(-1px); }

/* ============================================================
   MAP SECTION
   ============================================================ */
.v2-map-section {
  background: var(--color-surface-light);
  padding-bottom: 0;
}
.v2-map-heading {
  line-height: normal;
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  text-align: center;
}
.v2-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  background: #d0e4f5;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.v2-certs {
  padding: clamp(2rem, 3vw, 3rem) 0;
  background: var(--color-white);
}
.v2-certs-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.v2-cert {
  background: var(--color-surface-light);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-blue-mid);
  border: 1px solid #dde5f0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.v2-footer {
  background: var(--color-white);
  color: var(--color-text-body);
  position: relative;
  overflow: hidden;
}
.v2-footer::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 300px;
  height: 300px;
  scale: 2;
  background: url('/assets/v2/logos/logo-simple.svg') center / contain no-repeat;
  filter: brightness(0);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.v2-footer-divider-top {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  margin: 0;
}
.v2-footer-divider-bottom {
  border: none;
  margin: 0;
}
.v2-footer .container { padding-top: clamp(2.5rem, 4vw, 4rem); padding-bottom: clamp(1rem, 2vw, 1.5rem); }
.v2-footer-bottom .container { padding-top: 0; padding-bottom: 0; }
.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 0;
}
.v2-footer-logo { width: 170px; margin-bottom: 16px; }
.v2-footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.v2-footer-grid h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-body);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.v2-footer-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.v2-footer-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.v2-footer-list a {
  color: var(--color-text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.v2-footer-list a:hover { color: var(--color-primary); }
.v2-footer-list li:not(:has(a)) {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* Bottom bar */
.v2-footer-bottom {
  background: var(--color-white);
  padding: 0px;
}
.v2-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}
.v2-footer-bottom a { color: var(--color-text-muted); }
.v2-footer-bottom a:hover { color: var(--color-primary); }

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.v2-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.v2-modal.show { display: flex; }
.v2-modal-content {
  background: var(--color-white);
  padding: 44px;
  border-radius: 20px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}
.v2-modal-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-button);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  margin: 0 auto 18px;
}
.v2-modal-content h2 {
  color: var(--color-blue-dark);
  font-size: 26px;
  margin-bottom: 10px;
}
.v2-modal-content p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.v2-modal-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: var(--gradient-button);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-button);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.v2-modal-close-btn:hover { opacity: 0.9; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .v2-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .v2-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .v2-nav-links { display: none; }
  .v2-mobile-toggle { display: flex; }
  .v2-nav-pill { flex-wrap: wrap; height: auto; padding: 14px 20px; }
  .v2-nav-cta { display: none; order: 11; }
  .v2-nav-phone { display: none; }
  .v2-nav-wrap.nav-open .v2-nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 10;
    padding: 12px 0;
    gap: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
  }
  .v2-nav-wrap.nav-open .v2-nav-cta {
    display: flex;
    width: 100%;
    padding-top: 10px;
  }
  .v2-nav-wrap.nav-open .v2-nav-btn { width: 100%; }

  /* Hero */
  .v2-hero { grid-template-columns: 1fr; }
  .v2-hero-photo { display: none; }
  .v2-hero-content { padding: 6rem var(--container-padding) clamp(2rem, 5vw, 3rem); }
  .v2-hero-inner { max-width: 100%; }

  /* Trust Badges — 2x2 grid */
  .v2-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    justify-items: center;
  }

  /* Pain */
  .v2-pain-body { grid-template-columns: 1fr; }
  .v2-pain-left { grid-column: span 1; }
  .v2-pain-right { display: none; }
  .v2-pain-checklist { grid-template-columns: 1fr; }
  .v2-pain-logo-bg {
    top: -10%;
    bottom: auto;
    right: -5%;
  }

  /* About */
  .v2-about-grid { grid-template-columns: 1fr; gap: 28px; }
  .v2-about-text { text-align: center; }
  .v2-about-cta { justify-content: center; }

  /* Services — more padding on card bodies */
  .v2-services-grid { grid-template-columns: 1fr; }
  .v2-svc-card-image { aspect-ratio: 4/3; }
  .v2-svc-card-body { padding: 24px 20px; height: auto; min-height: calc(33.33% - 12px); }

  /* Reviews — single card visible */
  .v2-review-card {
    min-width: calc(100vw - 2 * var(--container-padding));
    max-width: calc(100vw - 2 * var(--container-padding));
  }
  .v2-reviews-track {
    scroll-snap-type: x mandatory;
  }
  .v2-review-card {
    scroll-snap-align: start;
  }

  /* Steps — vertical with rotated connectors */
  .v2-steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .v2-step {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: clamp(0.75rem, 2vw, 1.25rem);
  }
  .v2-step-num { font-size: 2.5rem; margin-bottom: 8px; }
  .v2-step-connector {
    display: block;
    width: 120px;
    height: 50px;
    rotate: 65deg;
    margin: -16px auto;
    align-self: center;
    flex-shrink: 0;
  }

  /* CTA */
  .v2-final-cta-buttons { flex-direction: column; }
  .v2-final-cta-btn { width: 100%; }

  /* Map */
  .v2-map-img {
    min-height: 240px;
  }

  /* Footer logo watermark — higher on mobile */
  .v2-footer::after {
    bottom: auto;
    top: 20%;
    right: -10%;
  }

  /* Footer — centered, cleaner */
  .v2-footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: clamp(2rem, 4vw, 3rem);
  }
  .v2-footer-logo { margin: 0 auto 16px; }
  .v2-footer-list li { justify-content: center; }
  .v2-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    gap: 6px;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .v2-hero-form-grid { grid-template-columns: 1fr; }
  .v2-footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  .v2-footer-grid > :nth-child(1),
  .v2-footer-grid > :nth-child(2) {
    grid-column: 1 / -1;
  }
  .v2-trust-grid { gap: 16px; }
}
