/* ============================================
   VISTURE V2 — Design System
   Brand: #E45F31 orange, #4A473F dark, #9DA09A light, #FAF8F4 bg
   ============================================ */
:root {
  --orange: #E45F31;
  --orange-dark: #c94e28;
  --orange-light: #fef0eb;
  --dark: #4A473F;
  --dark-deep: #2d2b26;
  --text: #4A473F;
  --text-light: #6b6960;
  --text-muted: #9DA09A;
  --border: #e5e3de;
  --border-light: #edecea;
  --bg: #FFFFFF;
  --bg-warm: #FAF8F4;
  --bg-section: #F5F3EF;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 4px rgba(74,71,63,0.06);
  --shadow-md: 0 4px 16px rgba(74,71,63,0.08);
  --shadow-lg: 0 8px 32px rgba(74,71,63,0.1);
  --shadow-card: 0 2px 12px rgba(74,71,63,0.06);
  --max-w: 1200px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }

.v2-container {
  width: min(92%, var(--max-w));
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.v2-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 64px;
}

.v2-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-deep);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.v2-logo a { color: inherit; }

.v2-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.v2-nav-link {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.v2-nav-link:hover { color: var(--dark-deep); }

.v2-nav-link.active {
  color: var(--dark-deep);
  font-weight: 600;
}

.v2-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}

.v2-nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 0.75rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.v2-nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.v2-hamburger {
  display: none;
  position: relative;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  flex-shrink: 0;
}

.v2-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.v2-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.v2-hamburger.open span:nth-child(2) { opacity: 0; }
.v2-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.v2-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(74,71,63,0.35);
  z-index: 99;
}

.v2-overlay.open { display: block; }

/* ============================================
   BUTTONS
   ============================================ */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.v2-btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #D84D1D 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(228, 95, 49, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.v2-btn-primary:hover {
  background: linear-gradient(135deg, #F06A3D 0%, var(--orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(228, 95, 49, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}

.v2-btn-outline {
  background: var(--bg);
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.v2-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.v2-btn-white {
  background: #fff;
  color: var(--orange);
  font-weight: 700;
}

.v2-btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ============================================
   HERO — Full-width BG image, content overlay
   ============================================ */
/* Keyframes for Hero Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScaleIn {
  0% { opacity: 0; transform: scale(0.96) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.v2-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.v2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(32,30,26,0.95) 0%,
    rgba(32,30,26,0.85) 45%,
    rgba(32,30,26,0.45) 75%,
    rgba(32,30,26,0.2) 100%
  );
}

.v2-hero > .v2-container {
  position: relative;
  z-index: 2;
  width: min(92%, var(--max-w));
  margin: 0 auto;
  padding: 4rem 0;
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.v2-hero-grid > * {
  min-width: 0;
}

.v2-hero-grid:has(.v2-hero-cta-card) {
  grid-template-columns: 1fr 340px;
  align-items: center;
}

/* Left: copy */
.v2-hero-copy {
  color: #fff;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.v2-hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.v2-hero-copy h1 em {
  font-style: italic;
  color: var(--orange);
  position: relative;
}

.v2-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}

.v2-hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.v2-hero-btns .v2-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.v2-hero-btns .v2-btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* Right: form card */
.v2-hero-form {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.5);
  animation: fadeScaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.v2-hero-right { display: none; } /* unused now */

/* Before/After Slider */
.v2-ba-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.v2-ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  cursor: col-resize;
  user-select: none;
  overflow: hidden;
}

.v2-ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-ba-after {
  clip-path: inset(0 0 0 50%);
}

.v2-ba-label {
  position: absolute;
  top: 0.75rem;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 5;
}

.v2-ba-label-before { left: 0.75rem; background: var(--dark-deep); color: #fff; }
.v2-ba-label-after { right: 0.75rem; background: var(--orange); color: #fff; }

.v2-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
}

.v2-ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  pointer-events: none;
}

.v2-ba-handle-btn svg { width: 18px; height: 18px; color: var(--dark); }

.v2-hero-form h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 1.15rem;
}

/* GoHighLevel iframe embed */
.v2-ghl-form {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
  line-height: 0;
}

.v2-ghl-form iframe {
  width: 100%;
  border: none;
  display: block;
}

.v2-hero-form:has(.v2-ghl-form) {
  padding: 1.5rem;
}

.v2-hero-form:has(.v2-ghl-form) h2 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

/* Compact CTA card replaces inline iframe in hero */
.v2-hero-cta-card {
  text-align: left;
  padding: 1.75rem;
}

.v2-hero-cta-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.v2-hero-cta-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.v2-hero-cta-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.v2-hero-cta-list li {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.4;
  padding-left: 1.35rem;
  position: relative;
}

.v2-hero-cta-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* Form modal */
.v2-form-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.v2-form-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.v2-form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 30, 26, 0.65);
  backdrop-filter: blur(4px);
}

.v2-form-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem 1.5rem;
  width: min(100%, 640px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.v2-form-modal-panel > h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v2-form-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-warm);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.v2-form-modal-close:hover {
  background: var(--orange-light);
  color: var(--dark-deep);
}

.v2-form-modal .v2-ghl-form {
  min-height: 600px;
  line-height: normal;
  overflow: visible;
}

.v2-form-modal .v2-ghl-form iframe {
  width: 100%;
  min-height: 600px;
  height: 600px;
  border: none;
  display: block;
}

.v2-form-fallback {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.v2-form-fallback a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.v2-ghl-form--full {
  max-height: none;
  overflow: visible;
}

.v2-ghl-form--full {
  min-height: 680px;
  line-height: normal;
  overflow: visible;
}

.v2-ghl-form--full iframe {
  min-height: 680px;
  height: 680px;
}

/* Breadcrumbs & internal linking */
.v2-breadcrumb {
  padding: 0.85rem 0 0;
  background: var(--bg);
}

.v2-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.v2-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.v2-breadcrumb li + li::before {
  content: "/";
  color: var(--text-light);
}

.v2-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.v2-breadcrumb a:hover {
  color: var(--orange);
}

.v2-breadcrumb [aria-current="page"] {
  color: var(--dark-deep);
  font-weight: 600;
}

.v2-inline-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.v2-inline-links a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.v2-related-links {
  padding: 3rem 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}

.v2-related-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.v2-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.85rem;
}

.v2-related-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--dark-deep);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.v2-related-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.v2-related-card--active {
  border-color: var(--orange);
  background: var(--orange-light);
}

.v2-related-card--cta {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.v2-related-card--cta:hover {
  background: var(--dark-deep);
  border-color: var(--dark-deep);
  color: #fff;
}

.v2-city-services {
  padding: 2.5rem 0 0;
}

.v2-related-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-related-inline a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.v2-hub-links {
  padding: 3rem 0;
  background: var(--bg);
}

.v2-hub-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.v2-hub-links-col h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.v2-hub-links-col h3 a {
  color: var(--dark-deep);
  text-decoration: none;
}

.v2-hub-links-col h3 a:hover {
  color: var(--orange);
}

.v2-hub-links-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-hub-links-col li {
  margin-bottom: 0.4rem;
}

.v2-hub-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.v2-hub-links-col a:hover {
  color: var(--orange);
}

a.v2-service-card {
  text-decoration: none;
  color: inherit;
}

a.v2-service-card:hover {
  border-color: var(--orange);
}

@media (max-width: 768px) {
  .v2-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* SEO content blocks */
.v2-seo-content {
  padding: 3.5rem 0;
  background: var(--bg);
}

.v2-seo-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark-deep);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.v2-seo-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-deep);
  margin: 1.25rem 0 0.65rem;
}

.v2-seo-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.v2-seo-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.v2-seo-content li { margin-bottom: 0.45rem; }

.v2-seo-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.v2-seo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.v2-seo-aside {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.v2-seo-aside a {
  color: var(--orange);
  font-weight: 600;
}

.v2-faq {
  padding: 3rem 0 3.5rem;
  background: var(--bg-warm);
}

.v2-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.v2-faq-item {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
}

.v2-faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-deep);
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

.v2-faq-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .v2-seo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.v2-form-group { margin-bottom: 0.6rem; }

.v2-form-group input,
.v2-form-group select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}

.v2-form-group input::placeholder { color: var(--text-muted); }

.v2-form-group input:focus,
.v2-form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228,95,49,0.08);
}

.v2-form-submit {
  width: 100%;
  padding: 0.75rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.25rem;
}

.v2-form-submit:hover { background: var(--orange-dark); }

.v2-form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.v2-form-note svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ============================================
   TRUST STRIP
   ============================================ */
.v2-trust {
  padding: 1.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.v2-trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.v2-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
}

.v2-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: var(--border);
}

.v2-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-trust-icon svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

/* ============================================
   SECTION HEADING
   ============================================ */
.v2-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 2rem;
}

.v2-section-title::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================
   SERVICES — 4 col
   ============================================ */
.v2-services {
  padding: 3.5rem 0;
  background: var(--bg);
}

.v2-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.v2-service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.v2-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  border-color: var(--border-light);
}

.v2-service-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.v2-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.v2-service-card:hover .v2-service-card-img img { transform: scale(1.05); }

.v2-service-card-body {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.v2-service-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.v2-service-card-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.v2-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all var(--transition);
}

.v2-card-arrow svg { width: 14px; height: 14px; color: var(--text-muted); transition: color var(--transition); }

.v2-service-card:hover .v2-card-arrow {
  border-color: var(--orange);
  background: var(--orange-light);
}

.v2-service-card:hover .v2-card-arrow svg { color: var(--orange); }

/* ============================================
   BEFORE/AFTER TRANSFORMATION
   ============================================ */
.v2-transformation {
  padding: 3.5rem 0;
  background: var(--bg-warm);
}

.v2-transform-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
  cursor: col-resize;
  user-select: none;
}

.v2-transform-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.v2-why {
  padding: 3.5rem 0;
  background: var(--bg);
}

.v2-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.v2-why-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 52rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.v2-why-reasons--full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  width: 100%;
}

.v2-why-reasons { display: flex; flex-direction: column; gap: 0.5rem; }

.v2-why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  transition: background var(--transition);
  border: 1px solid transparent;
}

.v2-why-item:hover {
  background: var(--orange-light);
  border-color: rgba(228,95,49,0.12);
}

.v2-why-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.v2-why-bullet svg { width: 14px; height: 14px; color: #fff; }

.v2-why-text-wrap h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 0.2rem;
}

.v2-why-text-wrap p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.v2-why-reasons--full .v2-why-text-wrap h4 {
  font-size: 1rem;
}

.v2-why-reasons--full .v2-why-text-wrap p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Testimonial Card */
.v2-testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.v2-testimonial-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.v2-testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-testimonial-body {
  padding: 1.75rem;
}

.v2-testimonial-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.v2-testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.v2-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v2-testimonial-name {
  font-weight: 700;
  color: var(--dark-deep);
  font-size: 0.9rem;
}

.v2-testimonial-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   Google Reviews Carousel
   ============================================ */
.v2-reviews {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
}

.v2-reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.v2-reviews-header h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 0.5rem;
}

.v2-reviews-header .v2-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.v2-reviews-header .v2-google-badge svg {
  width: 18px;
  height: 18px;
}

.v2-reviews-header .v2-google-stars {
  color: #fbbc04;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.v2-reviews-track-wrapper {
  position: relative;
  overflow: hidden;
}

.v2-reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.5rem;
}

.v2-review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.v2-review-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.v2-review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.v2-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.v2-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e8784a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.v2-review-name {
  font-weight: 600;
  color: var(--dark-deep);
  font-size: 0.88rem;
}

.v2-review-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.v2-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.v2-reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.v2-reviews-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

@media (max-width: 968px) {
  .v2-review-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  .v2-review-card {
    flex: 0 0 100%;
    min-width: unset;
  }
}

/* ============================================
   CTA
   ============================================ */
.v2-cta-banner {
  padding: 4rem 0;
  background: var(--dark-deep);
  color: #fff;
  text-align: center;
}

.v2-cta-banner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.v2-cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.v2-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.v2-cta-btns .v2-btn-outline,
.v2-cta-banner .v2-hero-btns .v2-btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.4);
}

.v2-cta-banner .v2-hero-btns {
  justify-content: center;
}

.v2-cta-btns .v2-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ============================================
   CITIES
   ============================================ */
.v2-cities {
  padding: 3.5rem 0;
  background: var(--bg);
  overflow: hidden;
}

.v2-cities-track {
  display: flex;
  gap: 0.75rem;
  animation: v2scroll 50s linear infinite;
  will-change: transform;
}

.v2-cities-track:hover { animation-play-state: paused; }

.v2-city-pill {
  flex: 0 0 auto;
  padding: 0.65rem 1.4rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.v2-city-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(228,95,49,0.25);
}

@keyframes v2scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.v2-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1.25rem;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.v2-footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 0.85rem;
}

.v2-footer ul { display: flex; flex-direction: column; gap: 0.35rem; }

.v2-footer li, .v2-footer p { font-size: 0.82rem; color: var(--text-light); }

.v2-footer a {
  font-size: 0.82rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.v2-footer a:hover { color: var(--orange); }

.v2-footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .v2-hero-grid,
  .v2-hero-grid:has(.v2-hero-cta-card) {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
  }

  .v2-hero-copy,
  .v2-hero-form {
    width: 100%;
    max-width: 100%;
  }

  .v2-services-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .v2-hamburger { display: flex; }

  .v2-header-inner {
    position: relative;
    z-index: 111;
  }

  .v2-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    z-index: 105;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
  }

  .v2-nav.open { right: 0; }

  .v2-nav .v2-nav-link {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    font-size: 0.95rem;
  }

  .v2-nav .v2-nav-link.active::after { display: none; }

  .v2-nav-cta {
    width: 100%;
    margin: 1rem 0 0 0;
    text-align: center;
  }

  .v2-hero { min-height: auto; }
  .v2-hero-bg::after {
    background: rgba(45,43,38,0.82);
  }
  .v2-hero-grid,
  .v2-hero-grid:has(.v2-hero-cta-card) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
  .v2-hero > .v2-container {
    width: 100%;
    padding: 2rem 1.25rem;
  }
  .v2-hero-copy h1 { font-size: 1.6rem; }
  .v2-hero-desc { max-width: none; }
  .v2-hero-btns {
    flex-direction: column;
  }
  .v2-hero-btns .v2-btn {
    width: 100%;
    justify-content: center;
  }
  .v2-hero-form {
    border-radius: var(--radius);
    width: 100%;
    max-width: 100%;
  }
  .v2-hero-cta-card {
    padding: 1.5rem;
  }

  .v2-trust-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .v2-trust-item { padding: 0; }
  .v2-trust-item::after { display: none !important; }

  .v2-form-modal {
    padding: 0.75rem;
    align-items: flex-end;
  }

  .v2-form-modal-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.5rem 1.25rem 1.25rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .v2-form-modal .v2-ghl-form {
    min-height: 70vh;
  }

  .v2-form-modal .v2-ghl-form iframe {
    min-height: 70vh;
    height: 70vh;
  }

  .v2-services-grid { grid-template-columns: 1fr 1fr; }

  .v2-why-grid { grid-template-columns: 1fr; }

  .v2-transform-slider { aspect-ratio: 4/3; }

  .v2-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .v2-hero-copy h1 { font-size: 1.4rem; }
  .v2-hero > .v2-container { padding: 1.75rem 1rem; }
  .v2-footer-grid { grid-template-columns: 1fr; }
  .v2-services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CITY PAGE COMPATIBILITY LAYER
   Classes used by coach-homes/city/*.html pages
   that were generated from an older template.
   Styled to match the v2 design system.
   ============================================ */

/* --- Utility: .container (old-template equivalent of .v2-container) --- */
.container {
  width: min(92%, var(--max-w));
  margin: 0 auto;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(180deg, var(--bg), var(--bg-warm));
  color: var(--text);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,95,49,0.12), transparent 70%);
  top: -180px;
  right: -120px;
  pointer-events: none;
}

.hero-shell {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dark-deep);
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--orange);
}

.lead {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  gap: 0.45rem;
}

.hero-benefits li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}

.hero-benefits li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.v2-hero-copy .hero-benefits li {
  color: rgba(255, 255, 255, 0.88);
}

/* Old hero-form (non-v2 version used by city pages) */
.hero-form {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-form h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 1.15rem;
}

.hero-wide {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 240px;
}

.hero-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Old button classes --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-link {
  color: var(--orange);
  background: transparent;
  padding: 0;
  text-decoration: underline;
  font-weight: 600;
}

.btn-link:hover {
  color: var(--orange-dark);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--bg);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
}

.section-shell {
  background: var(--bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 1.8rem 2rem;
  border: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}

.trust-grid > div {
  background: var(--orange-light);
  border-radius: var(--radius);
  padding: 1rem 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin: 0.2rem 0 0;
}

/* --- Section Headings --- */
.section-head {
  text-align: left;
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-light);
  line-height: 1.65;
}

/* --- Feature list --- */
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}

.feature-list li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}

.feature-list li::before {
  content: '–';
  color: var(--orange);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* --- Why Now / Cards --- */
.why-now {
  background: var(--bg-section);
  color: var(--text);
  padding: 4rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Why Visture (Peterborough extended template) --- */
.why-visture {
  background: var(--bg);
  padding: 4rem 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.mega-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 1.2rem;
}

.reason-stack {
  display: grid;
  gap: 1rem;
}

.reason-card {
  background: var(--orange-light);
  border: 1px solid rgba(228,95,49,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.reason-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 0.4rem;
}

.reason-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Mini Gallery (Peterborough extended) --- */
.mini-gallery {
  background: var(--bg-section);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-deep);
}

/* --- Process (Peterborough extended) --- */
.process-highlight {
  background: var(--dark-deep);
  color: #fff;
  padding: 4rem 0;
}

.process-highlight h2 {
  color: #fff;
}

.process-highlight p {
  color: rgba(255,255,255,0.8);
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.process-card {
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-3px);
}

.process-card.accent {
  background: var(--orange);
  border-color: transparent;
  color: #fff;
}

.step-count {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.process-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.process, .testimonials, .faq {
  padding: 4rem 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.step {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #D84D1D);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(228,95,49,0.25);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Investment Section --- */
.investment {
  background: var(--bg);
  padding: 4rem 0;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.stat-card {
  text-align: center;
  border: 1px solid var(--border-light);
}

.note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Download Section --- */
.download {
  background: var(--orange-light);
  padding: 4rem 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.download h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark-deep);
}

.download-form {
  display: grid;
  gap: 1rem;
}

.download-form input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}

.download-form input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228,95,49,0.08);
}

.download-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-deep);
  display: grid;
  gap: 0.35rem;
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Testimonials (old template) --- */
.testimonials .quote {
  background: var(--bg);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-card);
}

.testimonials .quote p {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.testimonials .quote h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-deep);
}

/* --- City page responsive overrides --- */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-shell {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .hero-copy h1 {
    font-size: 1.5rem;
  }

  .hero-wide {
    height: 180px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-shell {
    padding: 1.25rem;
  }

  .hero-copy h1 {
    font-size: 1.3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .investment-grid {
    grid-template-columns: 1fr 1fr;
  }
}
