/* ══════════════════════════════════════════════
   AAERO — Homepage Enhancements v11
   Bright premium polish — no dark overrides
   ══════════════════════════════════════════════ */

/* ── Extra tokens ── */
:root {
  --blue-cta:       #1a56db;
  --blue-cta-hover: #1446b8;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.13);
}

/* ══════════════════════════════════════════════
   BLUE CTA BUTTON
   ══════════════════════════════════════════════ */
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 22px;
  background: linear-gradient(135deg, #1a56db 0%, #1446b8 100%);
  color: #fff; font-weight: 700; font-size: 14px;
  border-radius: 8px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,86,219,.30);
  transition: all .25s;
  border: none;
}
.btn-blue:hover {
  background: linear-gradient(135deg, #1446b8 0%, #0f3a9e 100%);
  box-shadow: 0 6px 24px rgba(26,86,219,.45);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}
@keyframes pulse-blue {
  0%,100% { box-shadow: 0 4px 16px rgba(26,86,219,.30), 0 0 0 0 rgba(26,86,219,.35); }
  50%      { box-shadow: 0 4px 16px rgba(26,86,219,.30), 0 0 0 10px rgba(26,86,219,0); }
}
.btn-blue.btn-pulse { animation: pulse-blue 2.2s infinite; }


/* ══════════════════════════════════════════════
   HERO ILLUSTRATION — right column
   ══════════════════════════════════════════════ */
.hero-illustration-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: clamp(420px, 52%, 680px);
}

/* Frame = positioning context for the fan overlay.
   NO background here — keeping it transparent lets mix-blend-mode on
   the illustration reach the hero section's white gradient directly,
   which removes the PNG's white background via multiply. */
.hero-illustration-frame {
  position: relative;
  display: block;
  width: 100%;
}

/* Illustration: multiply against the hero's white bg removes the
   PNG's white areas (white × white = white = transparent effect). */
.hero-illustration-img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* ── Spinning fan blades — locked position ── */
@keyframes hero-fan-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 960px) {
  .hero-illustration-col { width: clamp(260px, 60%, 400px); }
}
@media (max-width: 600px) {
  .hero-illustration-col { width: 80%; }
}


/* ══════════════════════════════════════════════
   HERO WEATHER STRIP — compact bar under illustration
   ══════════════════════════════════════════════ */
.hero-weather-strip {
  width: 100%;
  background: #f4f6f9;
  border-top: 3px solid var(--red);
  border-radius: 0 0 12px 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  transition: background .4s, border-color .4s;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.hero-weather-strip.heat {
  background: #fff5f4;
  border-top-color: #e53935;
}
.hero-weather-strip.cool {
  background: #f0f6ff;
  border-top-color: #1565c0;
}

.hws-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hws-icon {
  font-size: 28px;
  line-height: 1;
}

.hws-temp-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hws-temp {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.5px;
}

.hws-city {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500, #6b7280);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.hws-left::after {
  content: '';
  display: block;
  width: 1px;
  height: 38px;
  background: #d1d5db;
  margin-left: 4px;
}

.hws-msg {
  flex: 1;
  margin: 0;
  font-size: 13.5px;
  color: #374151;
  line-height: 1.5;
}

.hws-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.hws-btn:hover { opacity: .85; }
.hws-btn-mild { background: var(--red); color: #fff; }
.hws-btn-heat { background: #e53935;   color: #fff; }
.hws-btn-cool { background: #1565c0;   color: #fff; }

@media (max-width: 960px) {
  .hero-weather-strip { display: none; } /* hidden on mobile — mob pill covers it */
}

/* ══════════════════════════════════════════════
   HERO GEO TAG — SEO subtitle under H1
   ══════════════════════════════════════════════ */
.hero-geo-tag {
  font-size: 13px;
  font-weight: 500;
  color: rgba(30,30,30,.60);
  letter-spacing: .4px;
  line-height: 1.6;
  margin: -6px 0 18px;
  max-width: 560px;
}
@media (max-width: 768px) {
  .hero-geo-tag { font-size: 11px; margin-bottom: 14px; }
}

/* ══════════════════════════════════════════════
   SECTION POLISH — subtle lift, no color change
   ══════════════════════════════════════════════ */

/* Warm micro-gradient on white sections */
.sec:not(.bg-dark):not(.bg-gray):not(.svc-photo-section):not(.brands-strip) {
  background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
}

/* Warm off-white for gray sections */
.bg-gray {
  background: linear-gradient(180deg, #f6f5f1 0%, #eeecea 100%) !important;
}

/* ══════════════════════════════════════════════
   STATS BAR — white background
   ══════════════════════════════════════════════ */
.stats {
  background: #fff !important;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid #ececec;
}
.stat {
  border-right-color: #ececec !important;
}
.stat-n {
  color: var(--black) !important;
}
.stat-l {
  color: var(--gray-500) !important;
}

/* ══════════════════════════════════════════════
   ABOUT SECTION IMAGE — stacked photo layout
   ══════════════════════════════════════════════ */
.about-img {
  position: relative;
}
.about-img > picture {
  position: relative;
  display: block;
}
.about-img > picture img {
  border-radius: 14px;
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}
/* Subtle red frame behind main photo */
.about-img > picture::after {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border: 2px solid rgba(201,48,44,.18);
  border-radius: 14px;
  pointer-events: none;
  z-index: -1;
}

/* Accent photo — sits in the bottom-left corner overlapping main photo */
.about-img-accent {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 48%;
  max-width: 210px;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.28), 0 0 0 4px #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.about-img-accent:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.32), 0 0 0 4px #fff;
}
.about-img-accent picture { display: block; }
.about-img-accent img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}


@media (max-width: 768px) {
  .about-img-accent {
    bottom: -20px;
    left: -10px;
    max-width: 140px;
  }
}

/* ══════════════════════════════════════════════
   BRANDS STRIP — floating logos, no boxes
   ══════════════════════════════════════════════ */
.brands-strip {
  background: #fff;
  padding: 52px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.brands-strip-hdr { text-align: center; margin-bottom: 32px; }
.brands-strip-hdr .label { margin-bottom: 8px; }
.brands-strip-hdr h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--black);
}
.brands-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
}
.brands-logo-row > div { display: flex; align-items: center; }
.brands-logo-row img {
  max-height: 38px;
  width: auto;
  opacity: 0.75;
}

/* ══════════════════════════════════════════════
   SERVICE PHOTO CARDS
   ══════════════════════════════════════════════ */
.svc-photo-section {
  background: linear-gradient(160deg, #07111e 0%, #0e1f33 60%, #0b1525 100%) !important;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* No photo overlay needed — solid dark bg */
.svc-photo-section::before {
  display: none !important;
}
/* Red accent line on top */
.svc-photo-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  z-index: 1;
}
.svc-photo-section .wrap {
  position: relative;
  z-index: 1;
}
.svc-photo-section-hdr {
  text-align: center;
  margin-bottom: 44px;
}
.svc-photo-section-hdr h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  margin-bottom: 10px;
}
.svc-photo-section-hdr p {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.svc-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.svc-photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(255,255,255,.06);
}
.svc-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(201,48,44,.35);
  color: #fff;
  text-decoration: none;
}
.svc-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .65s ease;
}
.svc-photo-card:hover img { transform: scale(1.06); }
.svc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.04) 100%);
  transition: background .3s;
}
.svc-photo-card:hover .svc-photo-overlay {
  background: linear-gradient(0deg, rgba(150,20,20,.85) 0%, rgba(100,10,10,.38) 48%, rgba(0,0,0,.06) 100%);
}
.svc-photo-overlay--steel {
  background: linear-gradient(0deg, rgba(10,20,34,.92) 0%, rgba(30,50,70,.42) 48%, rgba(60,85,110,.04) 100%);
}
.svc-photo-card:hover .svc-photo-overlay--steel {
  background: linear-gradient(0deg, rgba(10,25,45,.90) 0%, rgba(26,48,80,.46) 48%, rgba(0,0,0,.06) 100%);
}
.svc-photo-body {
  position: relative;
  z-index: 1;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-photo-icon {
  font-size: 22px;
  color: #ff6b6b;
  flex-shrink: 0;
  transition: color .3s;
  line-height: 1;
}
.svc-photo-card:hover .svc-photo-icon { color: #fff; }
.svc-photo-body-text { flex: 1; min-width: 0; }
.svc-photo-body h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 4px;
  line-height: 1.2;
  color: #fff;
}
.svc-photo-body p {
  font-size: 12.5px;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
  margin-bottom: 8px;
}
.svc-photo-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ff8a8a;
  transition: color .3s;
}
.svc-photo-card:hover .svc-photo-link { color: #fff; }
.svc-photo-card--steel { border-color: rgba(140,170,200,.15); }
.svc-photo-card--steel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #8fa3b5, #c8dae6, #8fa3b5, transparent);
  z-index: 3;
}
.svc-photo-card--steel .svc-photo-icon { color: #9ecfea; }
.svc-photo-card--steel .svc-photo-link { color: #9ecfea; }


/* Responsive photo grid */
@media (max-width: 1024px) {
  .svc-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-photo-card { height: 190px; }
}
@media (max-width: 600px) {
  .svc-photo-grid { grid-template-columns: 1fr; gap: 10px; }
  .svc-photo-card { height: 220px; }
}
@media (max-width: 400px) {
  .svc-photo-grid { grid-template-columns: 1fr; }
  .svc-photo-card { height: 240px; }
}

/* ══════════════════════════════════════════════
   STAT BRAND LOGOS — Google & BBB
   ══════════════════════════════════════════════ */
.stat-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

/* ── Google stat — white background ── */
.stat-google {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
}
.stat-google .stat-brand-logo svg {
  width: 26px;
  height: 26px;
}
.stat-google .stat-brand-name {
  font-size: 14px;
  font-weight: 800;
  color: #3c4043;
  letter-spacing: -.1px;
}
.stat-google .stat-stars {
  font-size: 20px !important;
  letter-spacing: 2px;
  color: #fbbc05 !important;
  line-height: 1 !important;
}
.stat-google .stat-l {
  font-size: 11px !important;
  color: #5f6368 !important;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── BBB stat — white background ── */
.stat-bbb {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
}
.stat-bbb .stat-brand-logo img {
  display: block;
  height: 38px;
  width: auto;
}
.stat-bbb .stat-n {
  font-size: 14px !important;
  line-height: 1 !important;
  color: #3c4043 !important;
  font-weight: 600;
}
.stat-bbb .stat-l {
  color: #5f6368 !important;
  font-size: 11px !important;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   REVIEWS SECTION
   ══════════════════════════════════════════════ */
.reviews-section {
  padding-top: 64px !important;
}

/* ══════════════════════════════════════════════
   ESTIMATE CALCULATOR — bright, clean card
   ══════════════════════════════════════════════ */
.ec-wrap {
  background: linear-gradient(160deg, #f7f5f0 0%, #fff 50%, #f5f3ee 100%);
  padding: 64px 24px;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid #e8e6e0;
  position: relative;
  overflow: hidden;
}
.ec-wrap::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,48,44,.05) 0%, transparent 70%);
  pointer-events: none;
}
.ec-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,86,219,.04) 0%, transparent 70%);
  pointer-events: none;
}
.ec-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4e0d8;
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}
.ec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, #e85050 50%, #1a56db 100%);
}
.ec-header { text-align: center; margin-bottom: 36px; }
.ec-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(201,48,44,.07);
  border: 1px solid rgba(201,48,44,.18);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.ec-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.ec-sub {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}
.ec-fields { margin-bottom: 28px; }
.ec-field { margin-bottom: 18px; }
.ec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ec-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.ec-select-wrap { position: relative; }
.ec-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 13px;
  pointer-events: none;
}
.ec-select {
  width: 100%;
  appearance: none;
  background: #fafaf8;
  border: 1.5px solid #dddbd5;
  border-radius: 10px;
  padding: 13px 40px 13px 16px;
  font-size: 15px;
  color: var(--black);
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.ec-select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201,48,44,.10);
}
.ec-result {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3060 60%, #0d1f3c 100%);
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.ec-result::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), #e85050, #1a56db);
}
.ec-result-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.ec-result-range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.ec-range-low,
.ec-range-high {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
}
.ec-range-dash {
  font-size: 32px;
  color: rgba(255,255,255,.35);
  font-weight: 300;
}
.ec-result-note {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  line-height: 1.6;
}
.ec-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 17px 24px;
  background: linear-gradient(135deg, var(--red) 0%, #e02020 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: all .25s;
  box-shadow: 0 4px 18px rgba(201,48,44,.30);
  margin-bottom: 16px;
}
.ec-cta:hover {
  background: linear-gradient(135deg, #b02020 0%, var(--red) 100%);
  box-shadow: 0 6px 26px rgba(201,48,44,.45);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.ec-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .ec-card { padding: 32px 24px; }
  .ec-row { grid-template-columns: 1fr; }
  .ec-result { padding: 22px 20px; }
  .ec-range-low, .ec-range-high { font-size: 36px; }
}

/* ══════════════════════════════════════════════
   HERO — animated warm gradient background
   ══════════════════════════════════════════════ */
@keyframes hero-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fff8f8 20%,
    #ffffff 40%,
    #fff5f0 60%,
    #ffffff 80%,
    #f8f8ff 100%
  ) !important;
  background-size: 300% 300% !important;
  animation: hero-gradient-shift 12s ease infinite;
}


/* ══════════════════════════════════════════════
   OUR PROCESS — 4-step section
   ══════════════════════════════════════════════ */
.process-section {
  background: #fff;
  border-top: 1px solid #ececec;
}
.process-hdr {
  text-align: center;
  margin-bottom: 56px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(201,48,44,.2));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-step-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.process-step:hover .process-step-icon-wrap {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(201,48,44,.18);
}
.process-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
}
.process-step-icon {
  font-size: 28px;
  color: var(--red);
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .process-steps::before { display: none; }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════════════════════
   AWARD CHIPS — inside services section header
   ══════════════════════════════════════════════ */
.svc-award-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.svc-award-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(238,215,5,.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  color: rgba(255,255,255,.75);
}
.svc-award-chip .fa-trophy {
  color: var(--gold);
  font-size: 11px;
}

/* ══════════════════════════════════════════════
   HOW IT WORKS v2 — illustrated process
   ══════════════════════════════════════════════ */
.process-v2 {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.pv2-hdr {
  text-align: center;
  margin-bottom: 56px;
}
.pv2-sub {
  color: var(--gray-500);
  font-size: 17px;
  max-width: 540px;
  margin: 10px auto 0;
  line-height: 1.65;
}
.pv2-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.pv2-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.pv2-char-wrap {
  width: 210px;
  height: 210px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.pv2-char {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}
.pv2-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
  background: rgba(201,48,44,.08);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pv2-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 8px;
}
.pv2-copy {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 12px;
}
.pv2-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: .2px;
}
.pv2-link:hover { text-decoration: underline; }

/* Arrow connector between steps */
.pv2-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #e5e7eb 0%, #d1d5db 100%);
  margin-top: 105px; /* aligns with midpoint of larger char */
  position: relative;
}
.pv2-connector::after {
  content: '›';
  position: absolute;
  right: -8px;
  top: -10px;
  font-size: 20px;
  color: #d1d5db;
  line-height: 1;
}

.pv2-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .pv2-steps { flex-direction: column; align-items: center; gap: 40px; }
  .pv2-connector { display: none; }
  .pv2-step { max-width: 400px; width: 100%; }
  .pv2-char-wrap { width: 260px; height: 260px; }
}
@media (max-width: 480px) {
  .pv2-char-wrap { width: 220px; height: 220px; }
}

/* ══════════════════════════════════════════════
   OUR SERVICES v2 — clean dark navy
   ══════════════════════════════════════════════ */

/* Ensure white header text on dark background */
.svc-hdr-h2 {
  color: #fff !important;
}
.svc-hdr-sub {
  color: rgba(255,255,255,.68) !important;
}

/* Award chips on dark bg */
.svc-photo-section .svc-award-chips {
  justify-content: flex-start;
}
.svc-photo-section .svc-award-chip {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,48,44,.35);
  color: rgba(255,255,255,.82);
}
.svc-photo-section .svc-award-chip .fa-trophy {
  color: var(--gold, #e8b86d);
}

/* Emergency tag on dark bg */
.svc-photo-section .svc-emergency-tag {
  color: rgba(255,255,255,.6);
}
.svc-photo-section .svc-emergency-tag a {
  color: rgba(255,255,255,.92);
}

.svc-hdr-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.svc-hdr-text {
  flex: 1;
}
.svc-hdr-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  text-transform: uppercase;
  margin: 8px 0 14px;
  line-height: 1.1;
}
.svc-hdr-sub {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.svc-hdr-char {
  flex-shrink: 0;
  width: 200px;
  opacity: .22;
}
.svc-char-img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: luminosity;
  filter: brightness(0) invert(1);
}
.svc-footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.svc-emergency-tag {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-emergency-tag a {
  color: rgba(255,255,255,.9);
  font-weight: 700;
  text-decoration: none;
}
.svc-emergency-tag a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .svc-hdr-v2 { flex-direction: column; }
  .svc-hdr-char { display: none; }
}

/* ══════════════════════════════════════════════
   WHY AAERO v2 — trust split
   ══════════════════════════════════════════════ */
.why-v2 { background: #f9fafb; }

.why-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left photo column */
.why-v2-left {
  position: relative;
}
.why-photo-frame {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
  /* no overflow:hidden — keeps badges from being clipped */
}
.why-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
  mix-blend-mode: multiply;
  border-radius: 16px; /* radius lives here now */
}
/* Badges are children of .why-v2-left (position:relative) */
.why-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 130px;
  z-index: 2;
}
.why-badge-tl { top: 24px; left: 16px; }
.why-badge-br { bottom: 24px; right: 16px; }
.why-badge-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -1px;
}
.why-badge-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 1px;
}
.why-badge-lbl {
  font-size: 11.5px;
  color: var(--gray-500);
  font-weight: 600;
}

/* Right text column */
.why-v2-right {}
.why-lead {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 12px 0 16px;
  font-weight: 500;
}
.why-body {
  font-size: 15.5px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}
.why-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.why-cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-700);
  font-weight: 500;
}
.why-cred .fa-check-circle {
  color: var(--red);
  font-size: 16px;
  flex-shrink: 0;
}
.why-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.why-learn-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  text-decoration: none;
  letter-spacing: .2px;
}
.why-learn-more:hover { color: var(--red); }

@media (max-width: 960px) {
  .why-v2-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-badge-tl { left: 12px; }
  .why-badge-br { right: 12px; }
  .why-char-accent { display: none; }
}

/* ══════════════════════════════════════════════
   REVIEWS v2 — featured quote + scroll columns
   ══════════════════════════════════════════════ */
.reviews-v2 {
  background: #f4f6f9;
}

/* Header */
.rv2-hdr {
  text-align: center;
  margin-bottom: 36px;
}
.rv2-google-badge {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .rv2-google-badge { display: none; }
}
.rv2-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.rv2-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 2px;
}
.rv2-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
}
.rv2-glogo { flex-shrink: 0; }
.rv2-platform {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* Featured hero review */
.rv2-featured {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 44px 52px 44px 44px;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-left: 4px solid var(--red);
  overflow: hidden;
}
.rv2-quote-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  color: rgba(201,48,44,.08);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.rv2-featured-text {
  font-size: 19px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.75;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.rv2-featured-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.rv2-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.rv2-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rv2-author-info strong {
  font-size: 15px;
  color: var(--black);
}
.rv2-author-info span {
  font-size: 13px;
  color: var(--gray-500);
}
/* Stars + Read More stacked on the right */
.rv2-read-more-col {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.rv2-featured-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}
.rv2-read-more-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.rv2-read-more-btn:hover {
  background: var(--red);
  color: #fff;
}

/* Bottom CTA */
.rv2-bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .rv2-featured { padding: 28px 24px; }
  .rv2-featured-text { font-size: 16px; }
  .rv2-featured-stars { display: none; }
  .rv2-char-accent { display: none; }
}

/* ══════════════════════════════════════════════
   BRANDS v2 — cleaner dealer strip
   ══════════════════════════════════════════════ */
.brands-v2 {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.brands-v2-hdr {
  text-align: center;
  margin-bottom: 36px;
}
.brands-v2-sub {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 4px;
}

