/* ============================================
   V3 — BOLD MINIMAL
   Premium SaaS aesthetic for home services
============================================ */

/* === GLOBAL V3 OVERRIDES === */
body {
  overflow-x: hidden;
}

section {
  position: relative;
}

.v3-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === HEADER === */
.v3-header {
  background: rgba(11, 42, 74, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.v3-logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.v3-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.v3-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.v3-nav-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.v3-nav-links a:hover {
  color: #fff;
}

.v3-header-phone {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.v3-header-phone:hover {
  color: #fff;
}

.v3-header-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: 6px;
}

.v3-nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Mobile menu toggle */
.v3-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.v3-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.v3-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.v3-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.v3-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO === */
.v3-hero {
  background: var(--pc-navy);
  padding: 180px 0 160px; /* Increased bottom padding for the slant */
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin-bottom: -4vw;
}

/* Geometric CSS pattern — diagonal lines (parallax-enabled) */
.v3-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(13, 132, 132, 0.02) 40px,
      rgba(13, 132, 132, 0.02) 41px
    );
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

/* Subtle dot overlay (parallax-enabled) */
.v3-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

.v3-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.v3-hero-content {
  position: relative;
  z-index: 1;
}

.v3-hero-image {
  position: relative;
  border-radius: var(--pc-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.v3-hero-image img {
  width: calc(100% + 40px);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.v3-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--pc-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.v3-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.v3-hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--pc-teal), var(--pc-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v3-hero-highlight {
  background: linear-gradient(135deg, var(--pc-teal), var(--pc-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.v3-hero-highlight.out {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}

.v3-hero-highlight.in {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.v3-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.v3-hero-cta {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-hero-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(13, 132, 132, 0.3), 0 0 20px rgba(53, 196, 106, 0.3);
}

.v3-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.v3-hero-cta-phone {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.v3-hero-cta-phone:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* Trust chips */
.v3-trust-chips {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px;
  margin-top: 56px;
  justify-content: start;
}

.v3-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.v3-chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.v3-chip svg path,
.v3-chip svg polyline,
.v3-chip svg line,
.v3-chip svg circle,
.v3-chip svg rect {
  stroke: var(--pc-green);
}

/* === SERVICES === */
.v3-services {
  padding: 120px 0;
  background: var(--pc-bg);
}

.v3-section-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pc-teal);
  margin-bottom: 12px;
}

.v3-section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--pc-navy);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.v3-section-desc {
  font-size: 1.1rem;
  color: var(--pc-muted);
  max-width: 540px;
  margin-bottom: 56px;
}

.v3-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

/* Service Card */
.v3-card {
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  padding: 36px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.v3-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pc-teal), var(--pc-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.v3-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(11, 42, 74, 0.12), 0 4px 12px rgba(11, 42, 74, 0.08);
  border-color: transparent;
}

.v3-card:hover::before {
  transform: scaleX(1);
}

.v3-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.v3-card-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.v3-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(13, 132, 132, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v3-card-icon svg {
  width: 24px;
  height: 24px;
}

.v3-card-icon svg path,
.v3-card-icon svg polyline,
.v3-card-icon svg line,
.v3-card-icon svg rect,
.v3-card-icon svg circle {
  stroke: var(--pc-teal);
}

.v3-card-info {
  flex: 1;
}

.v3-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pc-navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.v3-card-price {
  font-size: 0.92rem;
  color: var(--pc-teal);
  font-weight: 600;
}

.v3-card-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--pc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.v3-card-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.v3-card-toggle svg path {
  stroke: var(--pc-muted);
  stroke-width: 2;
}

.v3-card.active .v3-card-toggle {
  background: var(--pc-teal);
  border-color: var(--pc-teal);
}

.v3-card.active .v3-card-toggle svg path {
  stroke: #fff;
}

.v3-card.active .v3-card-toggle svg {
  transform: rotate(180deg);
}

/* Expandable content */
.v3-card-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  opacity: 0;
}

.v3-card.active .v3-card-expand {
  max-height: 700px;
  opacity: 1;
}

.v3-card-expand-inner {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--pc-border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.v3-card-text {
  flex: 1;
  min-width: 0;
}

.v3-card-img {
  width: 180px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.v3-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-card-desc {
  font-size: 0.95rem;
  color: var(--pc-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.v3-card-promise {
  font-size: 0.88rem;
  color: var(--pc-navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(53, 196, 106, 0.06);
  border-radius: 6px;
  border-left: 3px solid var(--pc-green);
}

.v3-card-promise svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.v3-card-promise svg path {
  stroke: var(--pc-green);
}

.v3-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pc-teal);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.v3-card-link:hover {
  gap: 10px;
}

.v3-card-link svg {
  width: 16px;
  height: 16px;
}

.v3-card-link svg path {
  stroke: var(--pc-teal);
}

/* === SHOWCASE === */
.v3-showcase {
  padding: 0;
  overflow: hidden;
}

.v3-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.v3-showcase-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.v3-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-showcase-item:hover img {
  transform: scale(1.04);
}

.v3-showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 42, 74, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.v3-showcase-label {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 1;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v3-showcase-label svg {
  width: 18px;
  height: 18px;
}

.v3-showcase-label svg path {
  stroke: var(--pc-green);
  stroke-width: 2;
}

@media (max-width: 1024px) {
  .v3-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .v3-showcase-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .v3-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .v3-showcase-item {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    height: 240px;
  }

  .v3-showcase-label {
    bottom: 16px;
    left: 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .v3-showcase-item {
    flex: 0 0 85vw;
    height: 220px;
  }
}

/* === PRICING === */
.v3-pricing {
  padding: 120px 0;
  background: var(--pc-surface);
}

.v3-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 720px;
  margin: 0 auto;
}

.v3-pricing-card {
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.v3-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11, 42, 74, 0.1), 0 2px 8px rgba(11, 42, 74, 0.06);
}

.v3-pricing-card.featured {
  border-color: var(--pc-teal);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(13, 132, 132, 0.03) 0%, var(--pc-surface) 100%);
}

.v3-pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pc-teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.v3-pricing-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pc-navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.v3-pricing-card-desc {
  font-size: 0.88rem;
  color: var(--pc-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.v3-pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.v3-pricing-dollar {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pc-navy);
  line-height: 1;
}

.v3-pricing-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--pc-navy);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.v3-pricing-onetime {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pc-teal);
  background: rgba(13, 132, 132, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.v3-pricing-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--pc-muted);
  margin-top: 32px;
}

.v3-pricing-divider {
  height: 1px;
  background: var(--pc-border);
  margin: 24px 0;
}

.v3-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.v3-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--pc-text);
  line-height: 1.4;
}

.v3-pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.v3-pricing-features li svg path {
  stroke: var(--pc-green);
  stroke-width: 2;
}

.v3-pricing-cta {
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--pc-radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.v3-pricing-cta.btn-outline {
  background: transparent;
  color: var(--pc-navy);
  border: 2px solid var(--pc-border);
  transition: all 0.2s ease;
}

.v3-pricing-cta.btn-outline:hover {
  border-color: var(--pc-teal);
  color: var(--pc-teal);
}

@media (max-width: 720px) {
  .v3-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .v3-pricing {
    padding: 64px 0;
  }

  .v3-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none;
  }

  .v3-pricing-card {
    padding: 24px 20px;
  }

  .v3-pricing-card.featured {
    order: -1;
  }

  .v3-pricing-amount {
    margin-bottom: 8px;
  }

  .v3-pricing-value {
    font-size: 2.2rem;
  }

  .v3-pricing-features {
    gap: 8px;
  }

  .v3-pricing-features li {
    font-size: 0.85rem;
  }

  .v3-pricing-card-desc {
    margin-bottom: 16px;
    font-size: 0.82rem;
  }

  .v3-pricing-divider {
    margin: 12px 0;
  }
}

@media (max-width: 480px) {
  .v3-pricing-card {
    padding: 20px 16px;
  }
}

/* === TRUST SECTION === */
.v3-trust {
  padding: 120px 0;
  background: var(--pc-surface);
}

.v3-trust-header {
  text-align: center;
  margin-bottom: 64px;
}

.v3-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.v3-trust-block {
  text-align: center;
  padding: 48px 28px;
  border-radius: var(--pc-radius-lg);
  border: 1px solid var(--pc-border);
  transition: all 0.3s ease;
  /* scroll reveal — starts hidden */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.v3-trust-block.revealed {
  opacity: 1;
  transform: translateY(0);
}

.v3-trust-block:nth-child(2).revealed { transition-delay: 0.1s; }
.v3-trust-block:nth-child(3).revealed { transition-delay: 0.2s; }
.v3-trust-block:nth-child(4).revealed { transition-delay: 0.3s; }

.v3-trust-block:hover {
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(11, 42, 74, 0.08);
}

.v3-trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(13, 132, 132, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-trust-icon svg {
  width: 28px;
  height: 28px;
}

.v3-trust-icon svg path,
.v3-trust-icon svg polyline,
.v3-trust-icon svg circle,
.v3-trust-icon svg line,
.v3-trust-icon svg rect {
  stroke: var(--pc-teal);
}

.v3-trust-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.v3-trust-block p {
  font-size: 0.92rem;
  color: var(--pc-muted);
  line-height: 1.5;
}

/* === FAQ === */
.v3-faq {
  padding: 100px 0;
  background: var(--pc-bg);
}

.v3-faq .v3-section-title {
  margin-bottom: 48px;
}

.v3-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.v3-faq-item {
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.v3-faq-item:hover {
  border-color: rgba(13, 132, 132, 0.3);
}

.v3-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--pc-navy);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.4;
  gap: 16px;
}

.v3-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.v3-faq-chevron path {
  stroke: var(--pc-muted);
  stroke-width: 2;
}

.v3-faq-item.active .v3-faq-chevron {
  transform: rotate(180deg);
}

.v3-faq-item.active .v3-faq-chevron path {
  stroke: var(--pc-teal);
}

.v3-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-faq-item.active .v3-faq-answer {
  max-height: 200px;
}

.v3-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--pc-muted);
  line-height: 1.6;
}

/* Show All toggle */
.v3-faq-show-all {
  background: transparent;
  border: 1px dashed var(--pc-border);
  text-align: center;
}

.v3-faq-show-all:hover {
  border-color: var(--pc-teal);
}

.v3-faq-show-all button {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--pc-teal);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: color 0.2s;
}

.v3-faq-show-all button:hover {
  color: var(--pc-navy);
}

@media (max-width: 768px) {
  .v3-faq {
    padding: 80px 0;
  }

  .v3-faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .v3-faq-answer-inner {
    padding: 0 20px 16px;
  }
}

/* === TRUSTED BY LOGOS === */
.v3-logos {
  padding: 32px 0 0;
  background: #fff;
}

.v3-logos-heading {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pc-muted);
  margin: 0;
}

.v3-logos-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: 0 40px;
}

.v3-logos-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  animation: logoMarquee 15s linear infinite;
  width: max-content;
  pointer-events: none;
}

@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.v3-logo-item {
  flex-shrink: 0;
  height: 50px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}

.v3-logos-fade-left,
.v3-logos-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}

.v3-logos-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.v3-logos-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

@media (max-width: 768px) {
  .v3-logos {
    padding: 24px 0 0;
  }

  .v3-logo-item {
    height: 38px;
  }

  .v3-logos-fade-left,
  .v3-logos-fade-right {
    width: 32px;
  }
}

/* === TESTIMONIALS === */
.v3-testimonials {
  padding: 100px 0 80px;
  background: var(--pc-bg);
  overflow: hidden;
}

.v3-testimonials .v3-container {
  text-align: center;
  margin-bottom: 48px;
}

.v3-testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: 999px;
  padding: 8px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-text);
  box-shadow: var(--pc-shadow);
}

.v3-testimonials-badge svg.google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.v3-testimonials-badge .badge-rating {
  font-weight: 700;
  font-size: 1rem;
}

.v3-testimonials-badge .badge-stars {
  display: inline-flex;
  gap: 2px;
}

.v3-testimonials-badge .badge-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--pc-amber);
}

.v3-testimonials-badge .badge-count {
  color: var(--pc-muted);
  font-weight: 400;
}

.v3-marquee {
  position: relative;
  width: 100%;
}

.v3-marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 45s linear infinite;
  width: max-content;
}

.v3-marquee:hover .v3-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.75rem)); }
}

.v3-marquee-fade-left,
.v3-marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 2;
}

.v3-marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--pc-bg), transparent);
}

.v3-marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--pc-bg), transparent);
}

.v3-review-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  padding: 28px;
  box-shadow: var(--pc-shadow);
}

.v3-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.v3-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pc-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.v3-review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pc-text);
}

.v3-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.v3-review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--pc-amber);
}

.v3-review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--pc-muted);
}

@media (max-width: 768px) {
  .v3-testimonials {
    padding: 72px 0 56px;
  }

  .v3-review-card {
    width: 280px;
    padding: 22px;
  }

  .v3-marquee-fade-left,
  .v3-marquee-fade-right {
    width: 48px;
  }
}

/* === CONTACT + FOOTER === */
.v3-contact {
  background: var(--pc-navy);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.v3-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  pointer-events: none;
}

.v3-contact-inner {
  position: relative;
  z-index: 1;
}

.v3-contact-header {
  margin-bottom: 56px;
}

.v3-contact-header .v3-section-label {
  color: var(--pc-green);
}

.v3-contact-header .v3-section-title {
  color: #fff;
}

.v3-contact-header .v3-section-desc {
  color: rgba(255,255,255,0.5);
}

.v3-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.v3-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v3-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.v3-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v3-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.v3-field input,
.v3-field select,
.v3-field textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
}

.v3-field input::placeholder,
.v3-field textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.v3-field input:focus,
.v3-field select:focus,
.v3-field textarea:focus {
  border-color: var(--pc-teal);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(13, 132, 132, 0.15);
}

.v3-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.v3-field select option {
  background: var(--pc-navy);
  color: #fff;
}

.v3-field textarea {
  resize: vertical;
  min-height: 120px;
}

.v3-form-submit {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  margin-top: 4px;
}

/* Contact info */
.v3-contact-info {
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--pc-radius-lg);
}

.v3-contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.v3-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.v3-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.v3-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(13, 132, 132, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v3-info-icon svg {
  width: 20px;
  height: 20px;
}

.v3-info-icon svg path,
.v3-info-icon svg polyline,
.v3-info-icon svg line,
.v3-info-icon svg circle,
.v3-info-icon svg rect {
  stroke: var(--pc-teal);
}

.v3-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v3-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

.v3-info-value {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
}

.v3-info-value a {
  transition: color 0.2s;
}

.v3-info-value a:hover {
  color: var(--pc-green);
}

.v3-info-note {
  margin-top: 32px;
  padding: 20px;
  background: rgba(53, 196, 106, 0.08);
  border: 1px solid rgba(53, 196, 106, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.v3-info-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.v3-info-note svg path,
.v3-info-note svg circle {
  stroke: var(--pc-green);
}

.v3-info-note span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Footer */
.v3-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.v3-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v3-footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.v3-footer-links {
  display: flex;
  gap: 24px;
}

.v3-footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.v3-footer-links a:hover {
  color: #fff;
}

/* === CTA BANDS === */
.v3-cta-band {
  padding: 80px 0;
  text-align: center;
}

.v3-cta-band--light {
  background: var(--pc-bg);
}

.v3-cta-band--dark {
  background: var(--pc-navy);
}

.v3-cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.v3-cta-band--light h2 {
  color: var(--pc-navy);
}

.v3-cta-band--dark h2 {
  color: #fff;
}

.v3-cta-band p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.v3-cta-band--light p {
  color: var(--pc-muted);
}

.v3-cta-band--dark p {
  color: rgba(255,255,255,0.6);
}

.v3-cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.v3-cta-band-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--pc-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.v3-cta-band--light .v3-cta-band-phone {
  color: var(--pc-teal);
  border: 2px solid var(--pc-teal);
  background: transparent;
}

.v3-cta-band--light .v3-cta-band-phone:hover {
  background: var(--pc-teal);
  color: #fff;
}

.v3-cta-band--dark .v3-cta-band-phone {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
}

.v3-cta-band--dark .v3-cta-band-phone:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* === HOW IT WORKS — TIMELINE === */
.v3-how-it-works {
  padding: 120px 0;
  background: var(--pc-bg);
}

.v3-how-it-works-header {
  text-align: center;
  margin-bottom: 56px;
}

.v3-timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 48px;
}

/* Vertical connecting line */
.v3-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--pc-teal), var(--pc-green));
  transform: translateX(-50%);
}

.v3-timeline-phase {
  position: relative;
  padding-bottom: 48px;
}

.v3-timeline-phase:last-child {
  padding-bottom: 0;
}

/* Gradient circle icon */
.v3-timeline-icon {
  position: absolute;
  left: -48px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pc-teal), var(--pc-green));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.v3-timeline-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Phase label pill */
.v3-timeline-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.v3-timeline-phase:nth-child(1) .v3-timeline-label {
  background: rgba(13, 132, 132, 0.1);
  color: var(--pc-teal);
}

.v3-timeline-phase:nth-child(2) .v3-timeline-label {
  background: rgba(53, 196, 106, 0.1);
  color: var(--pc-green);
}

.v3-timeline-phase:nth-child(3) .v3-timeline-label {
  background: rgba(245, 158, 11, 0.1);
  color: var(--pc-amber);
}

.v3-timeline-phase h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 12px;
}

.v3-timeline-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v3-timeline-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--pc-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

.v3-timeline-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pc-teal);
}

/* Timeline scroll-reveal */
.v3-timeline-phase {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.v3-timeline-phase.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === MOBILE NAV OVERLAY === */
.v3-mobile-nav {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pc-navy);
  z-index: 999;
  padding: 40px 32px;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.v3-mobile-nav.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.v3-mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.v3-mobile-nav .v3-mobile-phone {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.v3-mobile-nav .btn {
  text-align: center;
  font-size: 1.1rem;
}

/* === MOBILE-ONLY ELEMENTS (hidden by default on desktop) === */
.v3-mobile-call-btn {
  display: none;
}

.v3-quick-actions {
  display: none;
}

.v3-reveal {
  opacity: 1;
  transform: none;
}

/* === PLAN BANNER === */
.v3-plan-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(13,132,132,0.08), rgba(53,196,106,0.08));
  border: 1px solid rgba(13,132,132,0.25);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  grid-column: 1 / -1;
  animation: v3-banner-in 0.3s ease;
}

@keyframes v3-banner-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.v3-plan-banner-text {
  font-size: 0.95rem;
  color: var(--pc-navy);
}

.v3-plan-banner-text strong {
  color: var(--pc-teal);
}

.v3-plan-banner-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--pc-text);
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.v3-plan-banner-close:hover {
  opacity: 1;
}

.v3-plan-banner-close svg {
  width: 18px;
  height: 18px;
}

/* === RESPONSE TIME BADGES === */
.v3-response-time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #166534;
  background: rgba(53,196,106,0.12);
  border: 1px solid rgba(53,196,106,0.25);
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.v3-quick-action .v3-response-time {
  display: block;
  font-size: 0.65rem;
  margin-top: 4px;
  padding: 1px 8px;
}

/* === FORM SUCCESS STATE === */
.v3-form-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  animation: v3-success-in 0.4s ease;
}

@keyframes v3-success-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.v3-form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(53,196,106,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-form-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--pc-green);
}

.v3-form-success-title {
  font-size: 1.35rem;
  color: var(--pc-navy);
  margin-bottom: 8px;
}

.v3-form-success-desc {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.v3-form-success-reset {
  font-size: 0.9rem;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  .v3-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .v3-hero-image {
    max-width: 520px;
  }

  .v3-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v3-contact-grid {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* --- Hamburger menu + call button in header --- */
  .v3-nav-links,
  .v3-nav-right {
    display: none;
  }

  .v3-menu-toggle {
    display: flex;
  }

  /* --- Mobile Call Button (top-right, next to hamburger) --- */
  .v3-mobile-call-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--pc-green);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    margin-right: 8px;
  }

  .v3-mobile-call-btn:active {
    transform: scale(0.95);
  }

  /* --- Mobile nav overlay --- */
  .v3-mobile-nav {
    top: 64px;
    padding: 32px 24px;
    gap: 28px;
  }

  .v3-mobile-nav a {
    font-size: 1.3rem;
  }

  .v3-mobile-nav .btn {
    padding: 16px 32px;
    font-size: 1rem;
  }

  /* --- Header --- */
  .v3-header-inner {
    height: 64px;
  }

  .v3-logo {
    font-size: 1.2rem;
  }

  /* --- Enhanced Hero --- */
  .v3-hero {
    padding: 80px 0 48px;
  }

  .v3-hero-image {
    display: none;
  }

  .v3-hero-content {
    text-align: center;
  }

  .v3-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .v3-hero-sub {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .v3-hero-cta {
    padding: 16px 32px;
    font-size: 1.05rem;
    width: 100%;
    text-align: center;
    display: block;
    border-radius: 12px;
    min-height: 56px;
    line-height: 24px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .v3-hero-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .v3-hero-cta:active {
    transform: scale(0.97);
  }

  .v3-trust-chips {
    gap: 8px;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .v3-chip {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  /* --- Section spacing --- */
  .v3-services,
  .v3-trust,
  .v3-contact {
    padding: 64px 0;
  }

  .v3-contact {
    padding-bottom: 0;
  }

  .v3-section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .v3-section-desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  /* --- Service Cards (stacked list) --- */
  .v3-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v3-card {
    padding: 24px 20px;
  }

  .v3-card-name {
    font-size: 1.1rem;
  }

  .v3-card-expand-inner {
    flex-direction: column;
  }

  .v3-card-img {
    width: 100%;
    height: 160px;
    order: -1;
  }

  .v3-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .v3-card-icon svg {
    width: 20px;
    height: 20px;
  }

  /* --- Showcase as horizontal scroll --- */
  .v3-showcase-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .v3-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .v3-showcase-item {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    height: 240px;
  }

  .v3-showcase-label {
    bottom: 16px;
    left: 16px;
    font-size: 0.85rem;
  }

  /* --- Trust section --- */
  .v3-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .v3-trust-block {
    padding: 28px 16px;
  }

  .v3-trust-block h3 {
    font-size: 1.05rem;
  }

  .v3-trust-block p {
    font-size: 0.85rem;
  }

  .v3-trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  /* --- Quick Actions --- */
  .v3-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
  }

  .v3-quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.15s ease, background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .v3-quick-action:active {
    transform: scale(0.96);
    background: rgba(255,255,255,0.1);
  }

  .v3-quick-action svg {
    width: 28px;
    height: 28px;
    stroke: var(--pc-green);
    stroke-width: 1.8;
    fill: none;
  }

  /* --- Contact section --- */
  .v3-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v3-contact-info {
    padding: 28px 20px;
  }

  .v3-form-row {
    grid-template-columns: 1fr;
  }

  .v3-form-submit {
    padding: 16px 32px;
    font-size: 1rem;
    min-height: 52px;
    border-radius: 12px;
  }

  .v3-field input,
  .v3-field select,
  .v3-field textarea {
    padding: 14px;
    font-size: 16px; /* prevents iOS zoom on focus */
    min-height: 52px;
    border-radius: 12px;
  }

  /* --- Touch-friendly interactions --- */
  .btn:active,
  .v3-pricing-cta:active {
    transform: scale(0.96);
  }

  .v3-card:active {
    transform: scale(0.98);
  }

  .v3-pricing-card:hover {
    transform: none;
    box-shadow: var(--pc-shadow);
  }

  .v3-card:hover {
    transform: none;
  }

  .v3-faq-question {
    min-height: 52px;
  }

  .v3-card-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* --- Scroll reveal (mobile only) --- */
  .v3-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .v3-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* --- Footer --- */
  .v3-footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .v3-footer {
    padding-bottom: 24px !important;
  }

  .v3-footer-copy {
    font-size: 0.8rem;
  }

  .v3-footer-links {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .v3-trust-grid {
    grid-template-columns: 1fr;
  }

  .v3-container {
    padding: 0 16px;
  }

  .v3-hero h1 {
    font-size: 2rem;
  }

  .v3-logo {
    font-size: 1.1rem;
  }

  .v3-card {
    padding: 20px 16px;
  }

  .v3-showcase-item {
    flex: 0 0 85vw;
    height: 220px;
  }

  .v3-contact-info {
    padding: 24px 16px;
  }

  .v3-quick-action {
    padding: 16px 8px;
    font-size: 0.75rem;
  }

  .v3-quick-action svg {
    width: 24px;
    height: 24px;
  }
}

/* === CTA BAND + HOW IT WORKS RESPONSIVE === */
@media (max-width: 768px) {
  .v3-cta-band {
    padding: 60px 0;
  }

  .v3-cta-band-actions {
    flex-direction: column;
  }

  .v3-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .v3-how-it-works {
    padding: 80px 0;
  }

  .v3-timeline-icon {
    width: 40px;
    height: 40px;
    left: -44px;
  }

  .v3-timeline-icon svg {
    width: 18px;
    height: 18px;
  }

  .v3-timeline {
    padding-left: 44px;
  }

  .v3-timeline::before {
    left: 20px;
  }

  .v3-standalone-footer {
    padding: 32px 0;
  }
}

@media (max-width: 480px) {
  .v3-timeline-icon {
    width: 36px;
    height: 36px;
    left: -40px;
  }

  .v3-timeline-icon svg {
    width: 16px;
    height: 16px;
  }

  .v3-timeline {
    padding-left: 40px;
  }

  .v3-timeline::before {
    left: 18px;
  }
}

/* === MICRO-INTERACTIONS === */

/* Scroll-reveal base (service cards, pricing cards, trust chips) */
.v3-animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.v3-animate-in.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline icon pulse ring */
@keyframes v3-icon-pulse {
  0% { box-shadow: 0 0 0 0 rgba(13, 132, 132, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(13, 132, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 132, 132, 0); }
}

.v3-timeline-phase.revealed .v3-timeline-icon {
  animation: v3-icon-pulse 0.8s ease-out 1;
}

/* Hero trust chip stagger */
.v3-chip-animate {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v3-chip-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Price count-up: no special CSS needed, JS handles the number */

/* === STATS COUNTER STRIP === */
.v3-stats {
  padding: 64px 0;
  background: var(--pc-surface);
  border-bottom: 1px solid var(--pc-border);
}

.v3-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.v3-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.v3-stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--pc-navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.v3-stat-number span {
  background: linear-gradient(135deg, var(--pc-teal), var(--pc-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v3-stat-label {
  font-size: 0.9rem;
  color: var(--pc-muted);
  font-weight: 500;
}

.v3-stat-divider {
  width: 1px;
  background: var(--pc-border);
  align-self: stretch;
}

@media (max-width: 768px) {
  .v3-stats {
    padding: 40px 0;
  }

  .v3-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .v3-stat-number {
    font-size: 2rem;
  }

  .v3-stat-label {
    font-size: 0.82rem;
  }
}

/* === SERVICE AREA — Modal Overlay === */
.v3-area-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.v3-area-overlay.active {
  opacity: 1;
  visibility: visible;
}

.v3-area-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 42, 74, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.v3-area-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-area-overlay.active .v3-area-modal {
  transform: translateY(0) scale(1);
}

.v3-area-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.v3-area-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.v3-area-modal-close svg {
  width: 18px;
  height: 18px;
}

.v3-area-modal-close svg path {
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.v3-area-window {
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(11, 42, 74, 0.08), 0 2px 12px rgba(11, 42, 74, 0.04);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.v3-area-window-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--pc-navy);
  color: #fff;
}

.v3-area-window-dots {
  display: flex;
  gap: 6px;
}

.v3-area-window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.v3-area-window-dots span:first-child { background: #FF5F57; }
.v3-area-window-dots span:nth-child(2) { background: #FEBC2E; }
.v3-area-window-dots span:nth-child(3) { background: #28C840; }

.v3-area-window-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.v3-area-window-body {
  padding: 40px 40px 32px;
}

.v3-area-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.v3-area-map-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v3-area-map-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pc-teal), var(--pc-green));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v3-area-map-icon svg {
  width: 24px;
  height: 24px;
}

.v3-area-map-icon svg path,
.v3-area-map-icon svg circle {
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v3-area-map-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 2px;
}

.v3-area-map-text span {
  font-size: 0.85rem;
  color: var(--pc-muted);
}

.v3-area-stat-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.v3-area-stat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(13, 132, 132, 0.06);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pc-teal);
}

.v3-area-stat-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.v3-area-stat-pill svg path,
.v3-area-stat-pill svg circle,
.v3-area-stat-pill svg polyline {
  stroke: var(--pc-teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v3-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.v3-area-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-navy);
  transition: all 0.25s ease;
  cursor: default;
}

.v3-area-tag:hover {
  border-color: var(--pc-teal);
  background: rgba(13, 132, 132, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 132, 132, 0.1);
}

.v3-area-tag svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.v3-area-tag svg path {
  fill: var(--pc-teal);
}

.v3-area-tag svg circle {
  stroke: #fff;
}

.v3-area-window-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-top: 1px solid var(--pc-border);
  background: rgba(248, 250, 252, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.v3-area-note {
  font-size: 0.88rem;
  color: var(--pc-muted);
  margin: 0;
}

.v3-area-note a {
  color: var(--pc-teal);
  font-weight: 600;
}

.v3-area-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--pc-teal);
  color: #fff;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.v3-area-cta:hover {
  background: var(--pc-teal-hover);
  transform: translateY(-1px);
}

.v3-area-cta svg {
  width: 16px;
  height: 16px;
}

.v3-area-cta svg path {
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .v3-area-overlay {
    padding: 16px;
    align-items: flex-start;
    padding-top: 48px;
  }

  .v3-area-window-body {
    padding: 24px 20px 20px;
  }

  .v3-area-window-footer {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }

  .v3-area-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .v3-area-tag {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .v3-area-map-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .v3-area-stat-pills {
    width: 100%;
  }

  .v3-area-modal-close {
    top: 8px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .v3-area-grid {
    grid-template-columns: 1fr;
  }
}

/* === WHO WE SERVE — Client Types === */
.v3-clients {
  padding: 100px 0;
  background: var(--pc-surface);
}

.v3-clients-header {
  text-align: center;
  margin-bottom: 56px;
}

/* === JANITORIAL / COMMERCIAL === */
.v3-janitorial {
  padding: 100px 0;
  background: var(--pc-bg);
}

.v3-jan-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.v3-jan-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

.v3-jan-facilities,
.v3-jan-features {
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.v3-jan-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 24px;
}

.v3-jan-facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.v3-jan-facility {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pc-text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.v3-jan-facility:hover {
  border-color: var(--pc-teal);
  transform: translateY(-2px);
}

.v3-jan-facility svg {
  width: 22px;
  height: 22px;
  stroke: var(--pc-teal);
  fill: none;
  flex-shrink: 0;
}

.v3-jan-plans {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.v3-jan-plans-label {
  font-size: 0.85rem;
  color: var(--pc-muted);
  font-weight: 600;
}

.v3-jan-plan-badge {
  background: rgba(13, 132, 132, 0.08);
  color: var(--pc-teal);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
}

.v3-jan-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  flex: 1;
}

.v3-jan-feature-list li {
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--pc-muted);
  line-height: 1.5;
}

.v3-jan-feature-list li strong {
  color: var(--pc-navy);
  font-weight: 700;
}

.v3-jan-feature-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--pc-green);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.v3-jan-cta {
  width: 100%;
}

.v3-jan-cta-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--pc-muted);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .v3-janitorial {
    padding: 64px 0;
  }
  .v3-jan-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v3-jan-facilities,
  .v3-jan-features {
    padding: 28px 22px;
  }
}

@media (max-width: 420px) {
  .v3-jan-facility-grid {
    grid-template-columns: 1fr;
  }
}

.v3-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.v3-client-card {
  padding: 40px 28px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.v3-client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pc-teal), var(--pc-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.v3-client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11, 42, 74, 0.1);
  border-color: transparent;
}

.v3-client-card:hover::before {
  opacity: 1;
}

.v3-client-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(13, 132, 132, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-client-icon svg {
  width: 30px;
  height: 30px;
}

.v3-client-icon svg path,
.v3-client-icon svg polyline,
.v3-client-icon svg circle,
.v3-client-icon svg rect,
.v3-client-icon svg line {
  stroke: var(--pc-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v3-client-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 8px;
}

.v3-client-card p {
  font-size: 0.9rem;
  color: var(--pc-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.v3-client-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v3-client-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--pc-text);
  font-weight: 500;
}

.v3-client-list span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pc-teal);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .v3-clients {
    padding: 64px 0;
  }

  .v3-clients-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v3-client-card {
    padding: 28px 20px;
  }
}

/* === SCROLL-TO-TOP BUTTON === */
.v3-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pc-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(11, 42, 74, 0.2);
  border: none;
}

.v3-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.v3-scroll-top:hover {
  background: var(--pc-teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(13, 132, 132, 0.3);
}

.v3-scroll-top svg {
  width: 20px;
  height: 20px;
}

.v3-scroll-top svg path {
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .v3-scroll-top {
    bottom: 120px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* === ENHANCED FOOTER === */
.v3-footer-enhanced {
  padding: 80px 0 0;
}

.v3-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.v3-footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 320px;
}

.v3-footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.v3-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v3-footer-col-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.v3-footer-col-links a:hover {
  color: #fff;
}

.v3-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.v3-footer-bottom-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.v3-footer-bottom-links {
  display: flex;
  gap: 24px;
}

.v3-footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.v3-footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .v3-footer-enhanced {
    padding: 48px 0 0;
  }

  .v3-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .v3-footer-brand {
    grid-column: 1 / -1;
  }

  .v3-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .v3-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* === CERTIFICATIONS STRIP === */
.v3-certs {
  padding: 48px 0;
  background: var(--pc-navy);
  overflow: hidden;
}

.v3-certs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.v3-cert {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.v3-cert-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v3-cert-icon svg {
  width: 22px;
  height: 22px;
}

.v3-cert-icon svg path,
.v3-cert-icon svg polyline,
.v3-cert-icon svg circle {
  stroke: var(--pc-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .v3-certs {
    padding: 32px 0;
  }

  .v3-certs-inner {
    gap: 24px 32px;
    justify-content: center;
  }

  .v3-cert {
    font-size: 0.82rem;
  }

  .v3-cert-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .v3-cert-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* === SPRING PROMO BANNER === */
.v3-promo-banner {
  background: linear-gradient(135deg, var(--pc-teal), #0a9e6e);
  padding: 16px 0;
  text-align: center;
  position: relative;
  z-index: 999;
}

.v3-promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.v3-promo-text {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.v3-promo-text strong {
  font-weight: 800;
}

.v3-promo-cta {
  display: inline-block;
  padding: 6px 18px;
  background: #fff;
  color: var(--pc-teal);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.v3-promo-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .v3-promo-banner {
    padding: 12px 0;
  }

  .v3-promo-text {
    font-size: 0.82rem;
  }

  .v3-promo-cta {
    font-size: 0.78rem;
    padding: 5px 14px;
  }
}

/* prefers-reduced-motion: disable ALL animations */
@media (prefers-reduced-motion: reduce) {
  .v3-animate-in,
  .v3-timeline-phase,
  .v3-chip-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .v3-timeline-phase.revealed .v3-timeline-icon {
    animation: none !important;
  }

  .v3-hero::before,
  .v3-hero::after {
    transform: none !important;
    transition: none !important;
  }
}

/* === INLINE PRICE CALCULATORS === */
.v3-calc {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--pc-border);
}

.v3-calc-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.v3-calc-heading svg {
  width: 14px;
  height: 14px;
  stroke: var(--pc-teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Pill toggle (window type) */
.v3-calc-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
  border: 1.5px solid var(--pc-border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.v3-calc-toggle-btn {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  background: var(--pc-surface);
  color: var(--pc-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.v3-calc-toggle-btn:not(:last-child) {
  border-right: 1.5px solid var(--pc-border);
}

.v3-calc-toggle-btn.active {
  background: var(--pc-teal);
  color: #fff;
}

.v3-calc-toggle-btn:hover:not(.active) {
  background: rgba(13, 132, 132, 0.06);
  color: var(--pc-navy);
}

/* Slider row */
.v3-calc-slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.v3-calc-slider-label {
  font-size: 0.85rem;
  color: var(--pc-muted);
  font-weight: 500;
  white-space: nowrap;
  min-width: 0;
  flex-shrink: 1;
}

.v3-calc-slider-value {
  min-width: 36px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pc-navy);
  flex-shrink: 0;
  background: var(--pc-bg);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--pc-border);
}

/* Range slider styling */
input[type="range"].v3-calc-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--pc-border);
  outline: none;
  cursor: pointer;
  min-width: 80px;
}

input[type="range"].v3-calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pc-teal);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type="range"].v3-calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(13, 132, 132, 0.3);
}

input[type="range"].v3-calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pc-teal);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  cursor: pointer;
}

input[type="range"].v3-calc-range::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: var(--pc-border);
}

/* Result display */
.v3-calc-result {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.v3-calc-result-range {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pc-navy);
  letter-spacing: -0.02em;
}

.v3-calc-disclaimer {
  font-size: 0.78rem;
  color: var(--pc-muted);
  font-style: italic;
}

/* CTA link within calculator */
.v3-calc-cta {
  margin-top: 4px;
}

/* Hint text on collapsed card */
.v3-card-calc-hint {
  font-size: 0.75rem;
  color: var(--pc-amber);
  font-weight: 700;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.v3-card-calc-hint svg {
  width: 12px;
  height: 12px;
  stroke: var(--pc-amber);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contact section calculator note */
.v3-contact-calc-note {
  margin-top: 8px;
}

.v3-contact-calc-note a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.v3-contact-calc-note a:hover {
  color: rgba(255,255,255,0.8);
}

.v3-contact-calc-note svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 768px) {
  .v3-calc-slider-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .v3-calc-slider-label {
    width: 100%;
    flex-shrink: 0;
  }

  input[type="range"].v3-calc-range {
    flex: 1;
    min-width: 0;
  }

  .v3-calc-toggle-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .v3-calc-result-range {
    font-size: 1.15rem;
  }
}

/* ===================================================================
   COMMERCIAL HIGH-RISE & ROPE ACCESS WINDOW CLEANING
   =================================================================== */
.v3-highrise {
  position: relative;
}

/* --- Premium dark hero band --- */
.v3-hr-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(13,132,132,0.35) 0%, rgba(13,132,132,0) 55%),
    linear-gradient(160deg, #0B2A4A 0%, #0c2f53 55%, #08233e 100%);
  padding: 96px 0 104px;
}

.v3-hr-hero-glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(53,196,106,0.22) 0%, rgba(53,196,106,0) 70%);
  pointer-events: none;
}

.v3-hr-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.v3-hr-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7fe6c2;
  margin-bottom: 18px;
}

.v3-hr-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.v3-hr-sub {
  font-size: 1.12rem;
  font-weight: 500;
  color: #d6e6f2;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 560px;
}

.v3-hr-lead {
  font-size: 1rem;
  color: rgba(214,230,242,0.78);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 560px;
}

.v3-hr-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.v3-hr-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--pc-radius);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
  transition: all 0.2s ease;
}

.v3-hr-hero-phone:hover {
  border-color: #7fe6c2;
  background: rgba(127,230,194,0.12);
  transform: translateY(-2px);
}

.v3-hr-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v3-hr-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #eaf4f0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.v3-hr-badge svg {
  width: 15px;
  height: 15px;
  stroke: #35C46A;
  flex-shrink: 0;
}

.v3-hr-hero-media {
  position: relative;
}

.v3-hr-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--pc-radius-lg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.08);
}

.v3-hr-hero-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--pc-navy);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--pc-shadow);
  backdrop-filter: blur(6px);
}

.v3-hr-hero-tag svg {
  width: 16px;
  height: 16px;
  stroke: var(--pc-teal);
}

/* --- Body: buildings + benefits --- */
.v3-hr-body {
  padding: 84px 0 0;
}

.v3-hr-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.v3-hr-panel {
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  padding: 40px 36px;
  box-shadow: var(--pc-shadow);
}

.v3-hr-panel--accent {
  background: linear-gradient(165deg, #0e3157 0%, #0B2A4A 100%);
  border-color: transparent;
}

.v3-hr-panel-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pc-navy);
  margin-bottom: 8px;
}

.v3-hr-panel--accent .v3-hr-panel-title { color: #fff; }

.v3-hr-panel-desc {
  font-size: 0.96rem;
  color: var(--pc-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.v3-hr-panel--accent .v3-hr-panel-desc { color: rgba(214,230,242,0.8); }

.v3-hr-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.v3-hr-type {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pc-text);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.v3-hr-type:hover {
  border-color: var(--pc-teal);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11,42,74,0.1);
}

.v3-hr-type svg {
  width: 24px;
  height: 24px;
  stroke: var(--pc-teal);
  fill: none;
  flex-shrink: 0;
}

.v3-hr-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v3-hr-benefits li {
  display: flex;
  gap: 13px;
  font-size: 0.96rem;
  color: rgba(214,230,242,0.82);
  line-height: 1.5;
}

.v3-hr-benefits li strong { color: #fff; font-weight: 700; }

.v3-hr-benefits svg {
  width: 22px;
  height: 22px;
  stroke: #35C46A;
  fill: none;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Shared section head --- */
.v3-hr-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.v3-hr-head .v3-section-title { margin-bottom: 14px; }

.v3-hr-head-desc {
  font-size: 1.05rem;
  color: var(--pc-muted);
  line-height: 1.6;
  margin: 0 auto;
}

.v3-hr-label-light { color: #7fe6c2; }
.v3-hr-title-light { color: #fff; }
.v3-hr-head-desc-light { color: rgba(214,230,242,0.8); }

/* --- Project gallery --- */
.v3-hr-gallery-wrap {
  padding: 88px 0 0;
}

.v3-hr-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.v3-hr-gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--pc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}

.v3-hr-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.v3-hr-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(11,42,74,0.18);
}

.v3-hr-gallery-item:hover img { transform: scale(1.07); }

.v3-hr-gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 36px 18px 16px;
  background: linear-gradient(to top, rgba(11,42,74,0.92) 0%, rgba(11,42,74,0.55) 55%, rgba(11,42,74,0) 100%);
}

.v3-hr-gallery-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.v3-hr-gallery-cap {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
}

.v3-hr-gallery-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--pc-muted);
  margin-top: 24px;
}

.v3-hr-gallery-note code {
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 0.78rem;
}

/* --- Video band --- */
.v3-hr-video-band {
  margin-top: 88px;
  padding: 84px 0;
  background:
    radial-gradient(110% 120% at 50% 0%, rgba(13,132,132,0.28) 0%, rgba(13,132,132,0) 60%),
    linear-gradient(160deg, #0B2A4A 0%, #08233e 100%);
}

.v3-hr-video {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--pc-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  cursor: pointer;
}

.v3-hr-video-poster,
.v3-hr-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.v3-hr-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: none;
  background: var(--pc-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(13,132,132,0.55);
  transition: transform 0.25s ease, background 0.25s ease;
}

.v3-hr-video-play::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: v3-hr-pulse 2.4s ease-out infinite;
}

@keyframes v3-hr-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

.v3-hr-video-play svg { width: 34px; height: 34px; margin-left: 4px; }

.v3-hr-video:hover .v3-hr-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--pc-teal-hover);
}

.v3-hr-video-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.v3-hr-video-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7fe6c2;
}

.v3-hr-video-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35C46A;
  box-shadow: 0 0 0 0 rgba(53,196,106,0.6);
  animation: v3-hr-blink 1.8s ease-in-out infinite;
}

@keyframes v3-hr-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(53,196,106,0.6); }
  50% { opacity: 0.45; box-shadow: 0 0 0 6px rgba(53,196,106,0); }
}

.v3-hr-video-caption span:last-child { font-size: 0.86rem; font-weight: 500; }

/* --- Trust grid --- */
.v3-hr-trust-wrap {
  padding: 88px 0 0;
}

.v3-hr-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.v3-hr-trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 22px;
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pc-navy);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.v3-hr-trust-card:hover {
  border-color: var(--pc-teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11,42,74,0.12);
}

.v3-hr-trust-card svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  flex-shrink: 0;
  padding: 5px;
  background: linear-gradient(135deg, var(--pc-teal), var(--pc-green));
  border-radius: 7px;
  box-sizing: border-box;
}

/* --- Closing CTA --- */
.v3-hr-cta {
  position: relative;
  overflow: hidden;
  margin-top: 88px;
  padding: 84px 0;
  text-align: center;
  background:
    radial-gradient(100% 160% at 50% 0%, rgba(13,132,132,0.4) 0%, rgba(13,132,132,0) 55%),
    linear-gradient(135deg, #0c3158 0%, #0B2A4A 60%, #08233e 100%);
}

.v3-hr-cta-glow {
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 360px;
  background: radial-gradient(circle, rgba(53,196,106,0.18) 0%, rgba(53,196,106,0) 70%);
  pointer-events: none;
}

.v3-hr-cta-inner { position: relative; }

.v3-hr-cta h3 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}

.v3-hr-cta p {
  font-size: 1.15rem;
  color: rgba(214,230,242,0.82);
  margin-bottom: 32px;
}

.v3-hr-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.v3-hr-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--pc-radius);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  transition: all 0.2s ease;
}

.v3-hr-cta-phone:hover {
  border-color: #7fe6c2;
  background: rgba(127,230,194,0.12);
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .v3-hr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .v3-hr-hero-media { order: -1; max-width: 520px; }
  .v3-hr-gallery { grid-template-columns: repeat(2, 1fr); }
  .v3-hr-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .v3-hr-hero { padding: 72px 0 76px; }
  .v3-hr-body { padding: 60px 0 0; }
  .v3-hr-cols { grid-template-columns: 1fr; gap: 18px; }
  .v3-hr-panel { padding: 32px 24px; }
  .v3-hr-gallery-wrap,
  .v3-hr-trust-wrap { padding: 60px 0 0; }
  .v3-hr-video-band { margin-top: 60px; padding: 60px 0; }
  .v3-hr-cta { margin-top: 60px; padding: 64px 0; }
  .v3-hr-video-play { width: 70px; height: 70px; }
  .v3-hr-video-play svg { width: 28px; height: 28px; }
}

@media (max-width: 560px) {
  .v3-hr-types { grid-template-columns: 1fr; }
  .v3-hr-gallery { grid-template-columns: 1fr; }
  .v3-hr-trust-grid { grid-template-columns: 1fr; }
  .v3-hr-hero-ctas { flex-direction: column; align-items: stretch; }
  .v3-hr-hero-ctas .btn,
  .v3-hr-hero-phone { justify-content: center; }
  .v3-hr-cta-actions { flex-direction: column; align-items: stretch; }
  .v3-hr-cta-actions .btn,
  .v3-hr-cta-phone { justify-content: center; }
}

/* ============================================================
   24/7 LIVE CHAT — Booking & Support
   ============================================================ */

/* --- Header live chat button (desktop) --- */
.v3-header-chat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pc-green) 0%, var(--pc-teal) 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 0 rgba(53, 196, 106, 0.55);
  animation: v3-chat-pulse 2.6s infinite;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.v3-header-chat:hover { transform: translateY(-1px); }
.v3-header-chat svg { width: 17px; height: 17px; flex-shrink: 0; }
.v3-header-chat .v3-chat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
  animation: v3-chat-blink 1.6s infinite;
}
@keyframes v3-chat-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(53, 196, 106, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(53, 196, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 196, 106, 0); }
}
@keyframes v3-chat-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .v3-header-chat, .v3-header-chat .v3-chat-dot, .v3-chat-fab-pulse { animation: none !important; }
}

/* --- Floating Action Button (all viewports) --- */
.v3-chat-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.v3-chat-fab-label {
  align-self: flex-start;
  background: var(--pc-navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 20px;
  box-shadow: var(--pc-shadow-lg);
  max-width: 200px;
  line-height: 1.3;
}
.v3-chat-fab-actions { display: flex; gap: 10px; }
.v3-chat-fab-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(11,42,74,0.28);
  transition: transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.v3-chat-fab-btn:active { transform: scale(0.95); }
.v3-chat-fab-call { background: var(--pc-green); }
.v3-chat-fab-text { background: var(--pc-teal); }
.v3-chat-fab-btn svg { width: 19px; height: 19px; }
.v3-chat-fab-pulse {
  position: absolute; inset: 0; border-radius: 30px;
  box-shadow: 0 0 0 0 rgba(53,196,106,0.5);
  animation: v3-chat-pulse 2.6s infinite;
  pointer-events: none;
}
@media (max-width: 768px) {
  .v3-chat-fab { left: 16px; bottom: 16px; right: 16px; }
  .v3-chat-fab-actions { width: 100%; }
  .v3-chat-fab-btn { flex: 1; justify-content: center; padding: 14px 16px; }
  .v3-chat-fab-label { font-size: 0.74rem; padding: 6px 12px; }
}

/* --- "Need a Quote Right Now?" live chat band --- */
.v3-chat-quote {
  background: linear-gradient(135deg, var(--pc-navy) 0%, #0a3a5c 55%, var(--pc-teal) 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.v3-chat-quote-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 52px 0;
}
.v3-chat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(53,196,106,0.18);
  border: 1px solid rgba(53,196,106,0.45);
  color: #8ef0b3;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 18px;
}
.v3-chat-badge .v3-chat-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pc-green);
  box-shadow: 0 0 0 3px rgba(53,196,106,0.3);
  animation: v3-chat-blink 1.6s infinite;
}
.v3-chat-quote h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12; margin-bottom: 14px; color: #fff;
}
.v3-chat-quote p {
  font-size: 1.05rem; color: rgba(255,255,255,0.82);
  max-width: 540px; margin-bottom: 26px;
}
.v3-chat-quote-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.v3-chat-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 10px;
  font-weight: 700; font-size: 1.02rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.v3-chat-cta svg { width: 20px; height: 20px; }
.v3-chat-cta-call { background: var(--pc-green); color: #06371d; }
.v3-chat-cta-call:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(53,196,106,0.35); }
.v3-chat-cta-text {
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.v3-chat-cta-text:hover { background: #fff; color: var(--pc-navy); transform: translateY(-2px); }
.v3-chat-quote-phone {
  margin-top: 18px; font-size: 0.92rem; color: rgba(255,255,255,0.7);
}
.v3-chat-quote-phone a { color: #fff; font-weight: 700; }
/* Decorative visual panel */
.v3-chat-quote-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.v3-chat-orb {
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(53,196,106,0.9), rgba(13,132,132,0.25) 70%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(53,196,106,0.4);
}
.v3-chat-orb svg { width: 78px; height: 78px; color: #fff; }
.v3-chat-orb::before, .v3-chat-orb::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
}
.v3-chat-orb::before { width: 230px; height: 230px; }
.v3-chat-orb::after  { width: 290px; height: 290px; }
@media (max-width: 860px) {
  .v3-chat-quote-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; text-align: center; }
  .v3-chat-badge { margin-left: auto; margin-right: auto; }
  .v3-chat-quote p { margin-left: auto; margin-right: auto; }
  .v3-chat-quote-actions { justify-content: center; }
  .v3-chat-quote-visual { order: -1; }
  .v3-chat-orb { width: 130px; height: 130px; }
  .v3-chat-orb svg { width: 56px; height: 56px; }
  .v3-chat-orb::before { width: 165px; height: 165px; }
  .v3-chat-orb::after  { width: 200px; height: 200px; }
}
@media (max-width: 480px) {
  .v3-chat-quote-actions { flex-direction: column; }
  .v3-chat-cta { width: 100%; }
}

/* --- 24/7 Trust / Conversion strip --- */
.v3-chat-trust { padding: 56px 0; background: var(--pc-surface); }
.v3-chat-trust-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.v3-chat-trust-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--pc-navy); margin-bottom: 12px; }
.v3-chat-trust-head p { color: var(--pc-muted); font-size: 1.02rem; }
.v3-chat-trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.v3-chat-trust-card {
  text-align: center; padding: 26px 16px;
  background: var(--pc-bg); border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.v3-chat-trust-card:hover { transform: translateY(-4px); box-shadow: var(--pc-shadow-lg); border-color: var(--pc-teal); }
.v3-chat-trust-icon {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pc-teal), var(--pc-green));
  color: #fff;
}
.v3-chat-trust-icon svg { width: 26px; height: 26px; }
.v3-chat-trust-card h3 { font-size: 0.98rem; color: var(--pc-navy); line-height: 1.3; }
@media (max-width: 900px) {
  .v3-chat-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-chat-trust-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .v3-chat-trust-grid { grid-template-columns: 1fr; }
  .v3-chat-trust-card:last-child { grid-column: auto; }
}

/* --- Inline service booking banner --- */
.v3-chat-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--pc-navy), #0a3a5c);
  border-radius: var(--pc-radius-lg);
  padding: 28px 32px;
  margin: 40px auto 0;
  box-shadow: var(--pc-shadow-lg);
}
.v3-chat-banner-text { color: #fff; }
.v3-chat-banner-text strong { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.v3-chat-banner-text span { color: rgba(255,255,255,0.8); font-size: 0.96rem; }
.v3-chat-banner-text span a { color: #8ef0b3; font-weight: 700; }
.v3-chat-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .v3-chat-banner { padding: 24px; flex-direction: column; align-items: stretch; text-align: center; }
  .v3-chat-banner-actions { flex-direction: column; }
  .v3-chat-banner-actions .v3-chat-cta { width: 100%; }
}

/* --- Contact: primary live chat card --- */
.v3-chat-contact-hero {
  background: linear-gradient(135deg, var(--pc-navy) 0%, #0a3a5c 60%, var(--pc-teal) 140%);
  border-radius: var(--pc-radius-lg);
  padding: 40px;
  color: #fff;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.v3-chat-contact-orb {
  width: 76px; height: 76px; border-radius: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pc-green), var(--pc-teal));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(53,196,106,0.35);
}
.v3-chat-contact-orb svg { width: 38px; height: 38px; color: #fff; }
.v3-chat-contact-copy h3 { font-size: 1.4rem; color: #fff; margin-bottom: 6px; }
.v3-chat-contact-copy p { color: rgba(255,255,255,0.82); font-size: 0.98rem; max-width: 460px; }
.v3-chat-contact-copy .v3-chat-badge { margin-bottom: 12px; }
.v3-chat-contact-actions { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 860px) {
  .v3-chat-contact-hero { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; gap: 20px; }
  .v3-chat-contact-orb { margin: 0 auto; }
  .v3-chat-contact-copy p { margin: 0 auto; }
  .v3-chat-contact-copy .v3-chat-badge { margin-left: auto; margin-right: auto; }
  .v3-chat-contact-actions { width: 100%; }
}


/* ============================================
   MULTI-PAGE ADDITIONS
============================================ */

/* --- Active nav state --- */
.v3-nav-links a.active { color: var(--pc-teal); font-weight: 700; }
.v3-mobile-nav a.active { color: var(--pc-teal); }

/* --- Sub-page hero band --- */
.v3-page-hero {
  background: var(--pc-navy);
  background-image: radial-gradient(circle at 15% 20%, rgba(13,132,132,0.35), transparent 55%),
                    radial-gradient(circle at 85% 0%, rgba(53,196,106,0.18), transparent 50%);
  color: #fff;
  padding: 64px 0 56px;
}
.v3-page-hero .v3-section-label { color: var(--pc-green); }
.v3-page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: #fff;
  margin: 10px 0 14px;
  max-width: 20ch;
}
.v3-page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 62ch;
}
.v3-page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.v3-page-hero-phone {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: var(--pc-radius);
  border: 1px solid rgba(255,255,255,0.28); color: #fff; font-weight: 600;
  transition: all 0.2s ease;
}
.v3-page-hero-phone:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 640px) {
  .v3-page-hero { padding: 44px 0 40px; }
  .v3-page-hero-actions .btn, .v3-page-hero-phone { width: 100%; justify-content: center; }
}

/* --- Home: compact service tiles --- */
.v3-svc-tiles-section { padding: 72px 0 64px; background: var(--pc-surface); }
.v3-svc-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px;
}
.v3-svc-tile {
  display: block; padding: 26px 24px 24px;
  background: var(--pc-bg); border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg); transition: all 0.25s ease;
}
.v3-svc-tile:hover {
  transform: translateY(-4px); border-color: var(--pc-teal);
  box-shadow: var(--pc-shadow-lg); background: var(--pc-surface);
}
.v3-svc-tile-icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,132,132,0.1); color: var(--pc-teal);
}
.v3-svc-tile-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.v3-svc-tile h3 { font-size: 1.05rem; color: var(--pc-navy); margin-bottom: 6px; }
.v3-svc-tile p { font-size: 0.9rem; color: var(--pc-muted); line-height: 1.55; }
.v3-svc-tile-price { display: block; margin-top: 12px; font-size: 0.85rem; font-weight: 700; color: var(--pc-teal); }
.v3-svc-tiles-more { text-align: center; margin-top: 34px; }
@media (max-width: 900px) { .v3-svc-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .v3-svc-tiles-section { padding: 52px 0 48px; }
  .v3-svc-tiles { grid-template-columns: 1fr; gap: 14px; }
}

/* --- Home: work preview --- */
.v3-work-preview { padding: 68px 0 0; background: var(--pc-bg); }
.v3-work-preview-head { text-align: center; margin-bottom: 34px; }
.v3-work-preview-foot { text-align: center; padding: 30px 0 68px; background: var(--pc-bg); }
@media (max-width: 600px) {
  .v3-work-preview { padding: 48px 0 0; }
  .v3-work-preview-foot { padding: 24px 0 48px; }
}

/* --- Static service-areas section (was a modal) --- */
.v3-areas-section { padding: 72px 0; background: var(--pc-bg); }
.v3-areas-section .v3-area-window { margin-top: 34px; }
.v3-areas-section .v3-area-window-header { cursor: default; }
@media (max-width: 600px) { .v3-areas-section { padding: 52px 0; } }

/* --- Generic sub-page section spacing --- */
.v3-page-section { padding: 72px 0; }
.v3-page-section--alt { background: var(--pc-surface); }
@media (max-width: 600px) { .v3-page-section { padding: 52px 0; } }

/* --- Keep the mobile chat button on one line on narrow phones --- */
.v3-mobile-call-btn { white-space: nowrap; }
@media (max-width: 400px) {
  .v3-mobile-call-btn { padding: 8px 11px; font-size: 0.76rem; }
  .v3-header .v3-logo { font-size: 1rem; }
}
/* =====================================================================
   
   , so the banner is absolutely
   positioned directly beneath it and the hero's top padding is increased to
   match. The min-heights keep that compensation exact regardless of how the
   webfont loads. The banner removes itself after the event (inline script in
   index.html); once it is gone the sibling selector stops matching and the
   hero reverts to its normal padding automatically.
   ===================================================================== */
.v3-tour-banner {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 998;
  min-height: 76px;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, #0B2A4A 0%, #123a63 46%, #8a5406 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v3-tour-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}

.v3-tour-banner-copy { display: flex; align-items: center; gap: 14px; }

.v3-tour-banner-ball {
  font-size: 1.5rem;
  line-height: 1;
  animation: tourBounce 2.6s ease-in-out infinite;
}

@keyframes tourBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.v3-tour-banner-title {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--pc-amber);
  line-height: 1.35;
}

.v3-tour-banner-meta {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.v3-tour-banner-meta i { font-style: normal; color: rgba(255, 255, 255, 0.4); margin: 0 6px; }

.v3-tour-banner-cta {
  flex: none;
  background: var(--pc-amber);
  color: #1a1206;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.v3-tour-banner-cta:hover {
  background: #FBBF24;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

/* Push the homepage hero down so the banner never covers it */
.v3-tour-banner ~ .v3-hero { padding-top: 204px; }

@media (max-width: 768px) {
  .v3-tour-banner { top: 64px; min-height: 124px; }
  .v3-tour-banner-inner {
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .v3-tour-banner-copy { justify-content: center; gap: 10px; }
  .v3-tour-banner-title { font-size: 0.8rem; }
  .v3-tour-banner-meta { font-size: 0.78rem; }
  .v3-tour-banner-cta { width: 100%; text-align: center; }
  .v3-tour-banner ~ .v3-hero { padding-top: 256px; }
}

@media (prefers-reduced-motion: reduce) {
  .v3-tour-banner-ball { animation: none; }
}
