/* ═══════════════════════════════════════════════════════════
   Gravity Homepage — pixel-match mockup (standalone)
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --pink: #e91e63;
  --pink-dark: #c2185b;
  --purple: #9c27b0;
  --gradient: linear-gradient(90deg, #e91e63 0%, #d81b60 35%, #ab47bc 70%, #9c27b0 100%);
  --gradient-btn: linear-gradient(90deg, #e91e63 0%, #ec407a 50%, #ab47bc 100%);
  --black: #000000;
  --card: #121212;
  --card-border: rgba(233, 30, 99, 0.35);
  --muted: #b0b0b0;
  --wrap: 1240px;
}

html { scroll-behavior: smooth; }

body.home-v3 {
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-pink { color: var(--pink); }

.hero-gradient-pink {
  background: linear-gradient(90deg, #ff4081 0%, #e91e63 50%, #d81b60 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-gradient-purple {
  background: linear-gradient(90deg, #b388ff 0%, #9c27b0 55%, #7b1fa2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-title-gradient {
  background: linear-gradient(90deg, #ff4081 0%, #f50057 22%, #e91e63 42%, #c2185b 58%, #ab47bc 78%, #7b1fa2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pink);
  margin-bottom: 10px;
}

/* ── Logo ── */
.header-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* ── Buttons ── */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: var(--gradient-btn);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}

.btn-gradient:hover { filter: brightness(1.08); }
.btn-gradient:active { transform: scale(0.99); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-white:hover { background: #fff; color: #000; }

/* ── Announcement bar ── */
.announcement-bar {
  background: var(--pink);
  padding: 9px 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  position: relative;
  z-index: 100;
}

.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .announcement-right { display: none; }
  .announcement-bar-inner { justify-content: center; }
}

/* ── Hero ── */
.hero-v3 {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
}

.hero-v3-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-v3-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.88) 42%,
    rgba(0, 0, 0, 0.55) 68%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

/* Header inside hero */
.home-header {
  position: relative;
  z-index: 10;
  padding: 18px 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
}

.header-center {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #fff;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.header-nav > a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.2s;
}

.header-nav > a:hover { color: var(--pink); }

.header-nav > a.nav-active {
  color: var(--pink);
  position: relative;
  padding-bottom: 4px;
}

.header-nav > a.nav-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
}

.header-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  background: var(--gradient-btn);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.28);
  transition: filter 0.2s, transform 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  filter: brightness(1.08);
  color: #fff;
}

.header-cta--active {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #111;
  border: 1px solid var(--card-border);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(233, 30, 99, 0.12);
}

.header-phone-block {
  display: none;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.header-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--black), var(--black)) padding-box,
              var(--gradient-btn) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}

.header-phone-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header-phone-info strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.header-phone-info em {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 6px 0;
}

.mobile-nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 12px 16px !important;
  color: #fff !important;
  background: var(--gradient-btn);
  border-radius: 4px;
  text-align: center;
}

@media (min-width: 1100px) {
  .header-nav { display: flex; }
  .header-phone-block { display: flex; }
  .mobile-toggle { display: none; }
}

@media (min-width: 1280px) {
  .header-nav { gap: 16px; }
}

/* Hero body */
.hero-v3-body {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 32px 0 48px;
}

.hero-v3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-v3 {
    min-height: 580px;
  }
  .hero-v3-grid {
    grid-template-columns: 1fr minmax(400px, 460px);
    gap: 40px;
    align-items: start;
  }
}

.hero-v3-copy h1,
.hero-v3-title {
  font-size: clamp(32px, 5.1vw, 58px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  max-width: 11.5em;
  color: #fff;
}

.hero-title-line {
  display: block;
}

@media (min-width: 420px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

.hero-v3-sub {
  font-size: clamp(13px, 1.45vw, 15px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0.01em;
}

.hero-v3-prose {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-v3-more {
  font-size: clamp(12.5px, 1.3vw, 14px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0;
  text-transform: none;
  letter-spacing: 0.01em;
}

.hero-v3-more a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(233, 30, 99, 0.7);
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.hero-v3-more a:hover {
  color: #ff7eb3;
  text-decoration-color: #ff7eb3;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .hero-features {
    flex-wrap: nowrap;
    gap: 22px;
    justify-content: flex-start;
  }
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
  flex: 1 1 88px;
  min-width: 88px;
  max-width: 120px;
}

.hero-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(135deg, #ff4081 0%, #e91e63 40%, #c2185b 65%, #9c27b0 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 0 1px rgba(233, 30, 99, 0.08);
}

.hero-icon-svg {
  width: 24px;
  height: 24px;
  display: block;
}

.hero-icon-svg-emergency {
  width: 26px;
  height: 26px;
}

.hero-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-feature span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  line-height: 1.4;
}

/* Hero form */
.hero-form-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid var(--pink);
  border-radius: 4px;
  padding: 18px 12px 12px;
  backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
  .hero-form-panel {
    padding: 24px 20px 18px;
  }
}

.hero-form-panel h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.hero-form-panel .form-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 14px;
}

.hero-form-embed {
  width: 100%;
  min-width: 0;
  min-height: 620px;
  height: auto;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}

.hero-form-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100%;
  min-height: 620px;
  height: 620px;
  border: 0;
  border-radius: 3px;
  background: #fff;
}

@media (min-width: 1024px) {
  .hero-form-embed {
    min-height: 600px;
  }
  .hero-form-embed iframe {
    min-height: 600px;
    height: 600px;
  }
}

.form-group { margin-bottom: 10px; }

.input-icon-wrap { position: relative; }

.input-icon-wrap .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  opacity: 0.85;
  pointer-events: none;
}

.input-icon-wrap input,
.input-icon-wrap select {
  padding-left: 36px !important;
}

.hero-form-panel input,
.hero-form-panel select,
.hero-form-panel textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid #333;
  border-radius: 3px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  padding: 11px 12px;
  transition: border-color 0.2s;
}

.hero-form-panel input::placeholder,
.hero-form-panel textarea::placeholder,
.hero-form-panel select { color: #888; }

.hero-form-panel select option { color: #000; }

.hero-form-panel input:focus,
.hero-form-panel select:focus,
.hero-form-panel textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.hero-form-panel textarea {
  min-height: 72px;
  resize: vertical;
}

.form-error {
  display: none;
  color: #ff6b6b;
  font-size: 11px;
  margin-top: 4px;
}

.form-error.show { display: block; }

.form-success {
  display: none;
  background: rgba(233, 30, 99, 0.15);
  border: 1px solid var(--card-border);
  padding: 10px;
  margin-bottom: 12px;
  font-size: 12px;
}

.form-success.show { display: block; }

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10px;
  color: #777;
  margin-top: 10px;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--gradient);
  padding: 16px 0;
}

.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  padding: 0 28px;
}

.trust-bar-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 640px) {
  .trust-bar-grid { flex-direction: column; gap: 10px; }
  .trust-bar-divider { display: none; }
  .trust-bar-item { padding: 0; }
}

/* ── Sections ── */
.section-v3 {
  padding: 72px 0;
  background: var(--black);
}

.section-v3-dark { background: #050505; }

.section-v3-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-v3-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.section-v3-intro {
  margin: 16px auto 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
}

/* Services 3×2 */
.services-v3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .services-v3-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .services-v3-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-v3-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  color: #fff;
  overflow: hidden;
  min-height: 320px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.service-v3-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(233, 30, 99, 0.15);
}

.service-v3-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.service-v3-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
  filter: brightness(1.3);
}

.service-v3-card:hover .service-v3-media img {
  transform: scale(1.06);
}

.service-v3-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.48) 100%
  );
  pointer-events: none;
}

.service-v3-icon {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(233, 30, 99, 0.45);
  backdrop-filter: blur(4px);
}

.service-v3-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
}

.service-v3-card h3 {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.service-v3-card p {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
  text-transform: none;
}

.service-v3-link {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-top: auto;
}

/* AC Replacement promo banner */
.ac-promo-v3 {
  padding: 48px 0 36px;
  background: var(--black);
}

.ac-promo-v3-banner {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(233, 30, 99, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 60px rgba(233, 30, 99, 0.14);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  color: #fff;
  text-decoration: none;
}

.ac-promo-v3-banner:hover {
  border-color: rgba(233, 30, 99, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 70px rgba(233, 30, 99, 0.22);
  transform: translateY(-2px);
}

.ac-promo-v3-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Cities we serve */
.cities-v3 {
  position: relative;
  padding: 56px 0 64px;
  background: #050505;
  overflow: hidden;
}

.cities-v3-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(233, 30, 99, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 75%, rgba(156, 39, 176, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.cities-v3-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 28px;
}

.cities-v3-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.cities-v3-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.cities-v3-header p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}

.cities-v3-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cities-v3-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(233, 30, 99, 0.45);
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(8, 8, 8, 0.98));
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cities-v3-btn:hover:not(:disabled) {
  border-color: var(--pink);
  background: rgba(233, 30, 99, 0.12);
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
}

.cities-v3-btn:active:not(:disabled) {
  transform: scale(0.96);
}

.cities-v3-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cities-v3-carousel {
  position: relative;
  z-index: 1;
}

.cities-v3-viewport {
  position: relative;
  margin: 0 -24px;
  padding: 6px 0 4px;
}

.cities-v3-viewport::before,
.cities-v3-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.cities-v3-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #050505 15%, transparent 100%);
}

.cities-v3-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #050505 15%, transparent 100%);
}

.cities-v3-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 24px 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cities-v3-track:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

.cities-v3-track::-webkit-scrollbar {
  display: none;
}

.cities-v3-hint {
  margin-top: 6px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
}

.city-v3-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 16px;
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
  border: 1px solid rgba(233, 30, 99, 0.22);
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 768px) {
  .city-v3-card {
    flex-basis: 260px;
  }
}

.city-v3-card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.12);
}

.city-v3-card-link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  color: #fff;
  align-items: start;
}

.city-v3-pin {
  grid-row: 1 / span 2;
  color: var(--pink);
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.city-v3-name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.city-v3-region {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}

.city-v3-service-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 28px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.city-v3-service-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s;
}

.city-v3-service-links a:hover {
  color: var(--pink);
}

.city-v3-service-links span {
  color: rgba(233, 30, 99, 0.5);
  font-size: 8px;
}

.cities-v3-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.cities-v3-cta .btn-gradient,
.cities-v3-cta .btn-outline-white {
  width: auto;
  min-width: 220px;
  padding: 14px 28px;
}

/* Financing partners CTA */
.finance-partners-v3 {
  position: relative;
  padding: 56px 0 72px;
  background: var(--black);
  overflow: hidden;
}

.finance-partners-v3-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(233, 30, 99, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 15% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 20%, rgba(233, 30, 99, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.finance-partners-v3-panel {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(36px, 6vw, 52px) clamp(24px, 5vw, 48px);
  border-radius: 8px;
  background:
    linear-gradient(165deg, rgba(14, 14, 14, 0.98) 0%, rgba(6, 6, 6, 0.99) 100%) padding-box,
    linear-gradient(135deg, #e91e63 0%, #9c27b0 45%, rgba(233, 30, 99, 0.35) 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(233, 30, 99, 0.08);
}

.finance-partners-v3-logos {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.finance-partners-v3-logos-img {
  display: block;
  width: min(560px, 92%);
  height: auto;
  margin: 0 auto;
}

.finance-partners-v3-lead {
  font-size: clamp(19px, 2.9vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
  max-width: 680px;
  margin: 0 auto clamp(28px, 4vw, 36px);
  letter-spacing: 0.01em;
}

.finance-partners-v3-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.finance-partners-v3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 16px 36px;
  background: var(--gradient-btn);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 8px 28px rgba(233, 30, 99, 0.35);
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.finance-partners-v3-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(233, 30, 99, 0.45);
}

.finance-partners-v3-btn:active {
  transform: translateY(0);
}

.finance-partners-v3-btn svg {
  transition: transform 0.2s;
}

.finance-partners-v3-btn:hover svg {
  transform: translateX(3px);
}

.finance-partners-v3-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.finance-partners-v3-link:hover {
  color: var(--pink);
}

/* Legacy financing (unused) */
.financing-v3 {
  padding: 0 0 72px;
  background: var(--black);
}

.financing-v3-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 32px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: #0a0a0a;
}

@media (min-width: 1024px) {
  .financing-v3-inner {
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    padding: 40px 44px;
  }
}

.financing-v3-shield {
  color: var(--pink);
  display: none;
}

@media (min-width: 1024px) {
  .financing-v3-shield { display: block; }
}

.financing-v3-copy h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.15;
}

.financing-v3-copy p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 440px;
  text-transform: none;
  font-weight: 400;
}

.financing-v3-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.financing-v3-btns .btn-gradient {
  width: auto;
  padding: 12px 24px;
}

.financing-v3-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-width: 520px;
  justify-self: center;
}

.financing-v3-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.financing-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.88);
  border: 2px solid var(--pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
}

.financing-badge strong {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.25;
}

.financing-badge span {
  font-size: 15px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.1;
  margin-top: 2px;
}

/* Testimonials */
.testimonials-v3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .testimonials-v3-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-v3-card {
  position: relative;
  background: var(--card);
  border: 1px solid #222;
  border-radius: 4px;
  padding: 24px 22px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.testimonial-v3-stars {
  color: var(--pink);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-v3-card blockquote {
  font-size: 13px;
  color: #ccc;
  line-height: 1.65;
  font-style: normal;
  font-weight: 400;
  flex-grow: 1;
  margin: 0;
}

.testimonial-v3-card footer {
  padding-top: 12px;
  border-top: 1px solid #222;
}

.testimonial-v3-card cite {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-v3-card footer span {
  font-size: 11px;
  color: #888;
}

.testimonial-google {
  position: absolute;
  bottom: 18px;
  right: 18px;
  opacity: 0.75;
}

/* CTA bar */
.cta-bar-v3 {
  background: var(--gradient);
  padding: 28px 0;
}

.cta-bar-v3-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-bar-v3-icon {
  color: #fff;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 768px) {
  .cta-bar-v3-icon { display: block; }
}

.cta-bar-v3-text {
  flex: 1;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  min-width: 220px;
}

.cta-bar-v3-text strong {
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.cta-bar-v3-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 50px;
  padding: 6px 20px 6px 6px;
  color: #000;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-bar-v3-phone:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.cta-phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.cta-phone-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cta-phone-info strong {
  font-size: 16px;
  font-weight: 900;
}

.cta-phone-info em {
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
}

/* Footer */
.footer-v3 {
  background: var(--black);
  border-top: 1px solid #111;
  padding: 56px 0 0;
}

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

@media (min-width: 640px) {
  .footer-v3-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-v3-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.15fr;
    gap: 24px;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #fff;
}

.footer-v3-brand p {
  font-size: 12px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 260px;
  font-weight: 400;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.footer-v3-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.footer-v3-col a {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-v3-col a:hover { color: var(--pink); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px !important;
  color: #999 !important;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--pink);
  margin-top: 2px;
}

.footer-v3-bottom {
  border-top: 1px solid #151515;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: #555;
}

.footer-v3-legal {
  display: flex;
  gap: 20px;
}

.footer-v3-legal a {
  color: #555;
  transition: color 0.2s;
}

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

@media (max-width: 767px) {
  .cta-bar-v3-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-bar-v3-phone { margin: 0 auto; }
}
