* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }

/* ==========================================================================
   Smart Home Air & Heat — Site Components CSS
   Scoped: .shah-ticker, .shah-header, .shah-mobile-menu, .shah-footer
   ========================================================================== */





/* ---------- ANNOUNCEMENT TICKER ---------- */
.shah-ticker {
  position: relative !important;
  z-index: 99999 !important;
  background: #FE4A00 !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
}
.shah-ticker__track {
  display: flex !important;
  width: max-content !important;
  animation: shahTickerScroll 58s linear infinite !important;
}
.shah-ticker__track:hover { animation-play-state: paused !important; }
.shah-ticker__content {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.shah-ticker__item {
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 19px;
  font-weight: 700;
  line-height: 1 !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}
.shah-ticker__dot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  background: #fff !important;
  border-radius: 50% !important;
  opacity: 0.7 !important;
  flex-shrink: 0 !important;
}
@keyframes shahTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SITE HEADER ---------- */
.shah-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99998 !important;
  background: #234190 !important;
  border-bottom: 3px solid #FE4A00 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  width: 100% !important;
}/* ---------- MOBILE MENU ---------- */
.shah-mobile-menu {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  z-index: 100000 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.shah-mobile-menu.shah-mobile-menu--open { pointer-events: auto !important; visibility: visible !important; }
.shah-mobile-menu__overlay {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  background: rgba(0,0,0,0.6) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}
.shah-mobile-menu--open .shah-mobile-menu__overlay { opacity: 1 !important; }
.shah-mobile-menu__panel {
  position: absolute !important;
  top: 0 !important; right: 0 !important;
  width: 320px !important;
  max-width: 85vw !important;
  height: 100% !important;
  background: #0a1628 !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  display: flex !important;
  flex-direction: column !important;
}
.shah-mobile-menu--open .shah-mobile-menu__panel { transform: translateX(0) !important; }
.shah-mobile-menu__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.shah-mobile-menu__logo img { width: 160px !important; height: auto !important; display: block !important; }
.shah-mobile-menu__close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  background: none !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.shah-mobile-menu__close:hover { background: rgba(255,255,255,0.1) !important; }
.shah-mobile-menu__nav { flex: 1 !important; overflow-y: auto !important; padding: 8px 0 !important; }
.shah-mobile-menu__list { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.shah-mobile-menu__item { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
.shah-mobile-menu__parent-row { display: flex !important; align-items: center !important; }
.shah-mobile-menu__link {
  display: block !important;
  flex: 1 !important;
  padding: 15px 20px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
}
.shah-mobile-menu__link:hover { color: #FE4A00 !important; }
.shah-mobile-menu__toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  background: none !important;
  border: none !important;
  border-left: 1px solid rgba(255,255,255,0.1) !important;
  cursor: pointer !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  flex-shrink: 0 !important;
}
.shah-mobile-menu__toggle-icon {
  color: #FE4A00 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  transition: transform 0.2s ease !important;
}
.shah-mobile-menu__toggle--open .shah-mobile-menu__toggle-icon { transform: rotate(45deg) !important; }
.shah-mobile-menu__submenu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease !important;
  background: rgba(0,0,0,0.2) !important;
}
.shah-mobile-menu__submenu--open { max-height: 2000px !important; }
.shah-mobile-menu__sublink {
  display: block !important;
  padding: 12px 20px 12px 36px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  line-height: 1.4 !important;
}
.shah-mobile-menu__sublink:hover { color: #FE4A00 !important; background: rgba(255,255,255,0.03) !important; }
.shah-mobile-menu__cta {
  padding: 20px !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}
.shah-mobile-menu__phone {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.shah-mobile-menu__phone:hover { color: #FE4A00 !important; }
.shah-mobile-menu__badge {
  display: inline-block !important;
  background: #374151 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 4px 10px !important;
  border-radius: 3px !important;
}
.shah-mobile-menu__schedule-btn {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 14px 24px !important;
  background: #FE4A00 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background 0.2s ease !important;
}
.shah-mobile-menu__schedule-btn:hover { background: #fe4a00 !important; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.shah-footer-main { background: #234190; padding: 64px 0; }
.shah-footer-main-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.shah-footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.shah-footer-logo { margin-bottom: 18px; }
.shah-footer-logo img { width: 190px; }
.shah-footer-tagline { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.65; font-family: 'Inter', sans-serif; }
.shah-social { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.shah-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 6px; background: #FE4A00; transition: transform 0.2s, opacity 0.2s; }
.shah-social a:hover { transform: translateY(-2px); opacity: 0.85; }
.shah-social a svg { width: 17px; height: 17px; }
.shah-col-heading { font-size: 17px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.shah-col-links { list-style: none; padding: 0; margin: 0; }
.shah-col-links li { margin-bottom: 11px; }
.shah-col-links li a { font-size: 16px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.shah-col-links li a:hover { color: #FE4A00; }
.shah-contact-icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.shah-contact-item { margin-bottom: 18px; }
.shah-contact-phone { font-size: 24px; font-weight: 700; color: #fff; display: block; text-decoration: none; font-family: 'Inter', sans-serif; }
.shah-contact-phone:hover { color: #FE4A00; }
.shah-contact-addr { font-size: 16px; color: rgba(255,255,255,0.7); font-style: normal; line-height: 1.5; font-family: 'Inter', sans-serif; }
.shah-contact-license { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 12px; font-family: 'Inter', sans-serif; }
.shah-copyright { background: #FE4A00; padding: 14px 0; }
.shah-copyright p { text-align: center; font-size: 15px; color: rgba(255,255,255,0.95); font-family: 'Inter', sans-serif; margin: 0; }
.shah-copyright a { color: #fff; text-decoration: underline; font-weight: 600; }
@media (max-width: 900px) { .shah-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .shah-footer-cols { grid-template-columns: 1fr; } }

/* ==========================================================================
   RESPONSIVE — nav/header
   ========================================================================== */
@media (max-width: 1024px) {
  .shah-header__nav { display: none !important; }
  .shah-header__location { display: none !important; }
  .shah-header__open-badge { display: none !important; }
  .shah-header__hamburger { display: flex !important; }
  .shah-header__inner { height: 60px !important; padding: 0 16px !important; }
  .shah-header__logo img { width: 150px !important; }
  .shah-header__phone-number { display: none !important; }
  .shah-header__phone svg { width: 24px !important; height: 24px !important; }
  .shah-ticker__item { font-size: 19px; padding: 0 12px !important; }
  .shah-ticker { height: 36px !important; }
}
@media (max-width: 480px) {
  .shah-ticker__item { font-size: 19px; padding: 0 10px !important; }
  .shah-ticker { height: 32px !important; }
  .shah-ticker__dot { width: 4px !important; height: 4px !important; }
  .shah-header__inner { height: 56px !important; padding: 0 12px !important; }
  .shah-header__logo img { width: 130px !important; }
  .shah-mobile-menu__link { font-size: 16px !important; padding: 13px 16px !important; }
  .shah-mobile-menu__sublink { font-size: 14px !important; padding: 10px 16px 10px 30px !important; }
  .shah-mobile-menu__phone { font-size: 18px !important; }
  .shah-mobile-menu__panel { width: 290px !important; }
}
@media (min-width: 1025px) {
  .shah-mobile-menu { display: none !important; }
  .shah-header__hamburger { display: none !important; }
}
body.shah-mobile-open { overflow: hidden !important; }

/* ================================================================
   INDOOR AIR QUALITY PAGE — Unique Layout (air- prefix)
   ================================================================ */

/* ---------- Scroll Reveal ---------- */
.air-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.air-reveal.revealed { opacity: 1; transform: none; }
.air-reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.air-reveal-left.revealed { opacity: 1; transform: none; }
.air-reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.air-reveal-right.revealed { opacity: 1; transform: none; }
.air-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.air-stagger.revealed > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.air-stagger.revealed > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.air-stagger.revealed > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.air-stagger.revealed > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.air-stagger.revealed > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.air-stagger.revealed > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ---- 1. HERO — Centered Full-Width Teal Gradient ---- */
.air-hero {
  background: linear-gradient(135deg, #234190 0%, #3a7bd5 50%, #234190 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 72px 24px 100px;
}
.air-hero__inner {
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.air-hero__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.air-hero__img-wrap img {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.air-hero__content {
  position: relative;
  z-index: 2;
}
.air-hero__eyebrow {
  display: inline-block;
  background: rgba(254,74,0,0.2);
  border: 1px solid rgba(254,74,0,0.5);
  color: #FE4A00;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.air-hero h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.air-hero h1 span { color: #FE4A00; }
.air-hero__sub {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.65;
  margin: 0 0 36px;
}
.air-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FE4A00;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  padding: 20px 42px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(254,74,0,0.35);
}
.air-hero__cta:hover { background: #e53d22; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(254,74,0,0.45); }
.air-hero__wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---- 2. STATS BAR ---- */
.air-stats { background: #FE4A00; padding: 0; }
.air-stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.air-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.air-stat:last-child { border-right: none; }
.air-stat__number { display: block; font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.air-stat__label { display: block; font-size: 0.9rem; color: #ffffff; font-weight: 500; line-height: 1.4; }

/* ---- 3. FEATURED VIDEO ---- */
.air-video-main { background: #f3f3f3; padding: 80px 24px; text-align: center; }
.air-video-main__inner { max-width: 860px; margin: 0 auto; }
.air-video-main__eyebrow {
  display: inline-block;
  background: #ffffff;
  color: #3a7bd5;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.air-video-main h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #234190;
  margin-bottom: 14px;
  line-height: 1.2;
}
.air-video-main__sub {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.air-video-main__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.air-video-main__embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ---- 4. IS YOUR AIR CLEAN? ---- */
.air-problem { background: #FE4A00; padding: 80px 24px; }
.air-problem__inner { max-width: 1100px; margin: 0 auto; }
.air-problem__header { text-align: center; margin-bottom: 52px; }
.air-problem__header h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; color: #ffffff; margin-bottom: 12px; }
.air-problem__header p { font-size: 1.05rem; color: #ffffff; max-width: 600px; margin: 0 auto; line-height: 1.65; }
.air-problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.air-prob-card {
  background: #fff;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid #234190;
}
.air-prob-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
.air-prob-card__icon { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.air-prob-card h3 { font-size: 1.15rem; font-weight: 700; color: #234190; margin-bottom: 12px; }
.air-prob-card p { font-size: 0.95rem; color: #374151; line-height: 1.65; }

/* ---- 5. WHAT'S INCLUDED ---- */
.air-included {
  background: linear-gradient(135deg, #234190 0%, #0a1628 100%);
  padding: 80px 24px;
}
.air-included__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.air-included__photo { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.4); position: relative; }
.air-included__photo img { width: 100%; height: 500px; object-fit: cover; display: block; }
.air-included__photo-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #FE4A00;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
}
.air-included__content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.air-included__sub { font-size: 1rem; color: #ffffff; margin-bottom: 32px; line-height: 1.6; }
.air-checklist { list-style: none; margin: 0 0 36px 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.air-checklist li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.97rem; color: #ffffff; line-height: 1.55; }
.air-check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: #FE4A00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.air-check-icon svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; fill: none; }
.air-included__btn {
  display: inline-block;
  background: #FE4A00;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.air-included__btn:hover { background: #e53d22; transform: translateY(-2px); }

/* ---- 6. REVIEWS ---- */
.air-reviews { background: #f0f2f5; padding: 80px 24px; text-align: center; }
.air-reviews__inner { max-width: 1100px; margin: 0 auto; }
.air-reviews h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; color: #0a1628; margin-bottom: 12px; }
.air-reviews__sub { font-size: 1.05rem; color: #374151; margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }
.air-reviews__elfsight {
  border-radius: 12px;
  padding: 8px 0;
}
.air-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.air-rev-card { background: #ffffff; border-radius: 12px; padding: 28px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.air-rev-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.air-rev-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: #ffffff; flex-shrink: 0; }
.air-rev-meta { flex: 1; }
.air-rev-name { display: block; font-weight: 700; font-size: 0.95rem; color: #0a1628; }
.air-rev-time { display: block; font-size: 0.8rem; color: #4b5563; }
.air-rev-stars { color: #FE4A00; font-size: 1rem; margin-bottom: 10px; }
.air-rev-text { font-size: 0.93rem; color: #374151; line-height: 1.65; margin: 0; }
@media (max-width: 768px) { .air-reviews__grid { grid-template-columns: 1fr; } }

/* ---- 7. WHY TRUST US ---- */
.air-why { background: #234190; padding: 80px 24px; position: relative; overflow: hidden; }
.air-why__curve { position: absolute; bottom: 0; left: 0; width: 100%; pointer-events: none; z-index: 0; }
.air-why__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.air-why__content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.air-why__tagline { font-size: 1rem; color: #ffffff; margin-bottom: 32px; line-height: 1.6; }
.air-why__list { list-style: none; padding: 0; margin: 0 0 36px 0; display: flex; flex-direction: column; gap: 18px; }
.air-why__list-item { display: flex; align-items: flex-start; gap: 16px; }
.air-why__list-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(254,74,0,0.2);
  border: 1px solid rgba(254,74,0,0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.air-why__list-icon svg { width: 20px; height: 20px; stroke: #FE4A00; stroke-width: 2; fill: none; }
.air-why__list-text strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.air-why__list-text span { font-size: 0.9rem; color: #ffffff; line-height: 1.5; }
.air-why__btn {
  display: inline-block;
  background: #FE4A00;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.air-why__btn:hover { background: #e53d22; transform: translateY(-2px); }
.air-why__photo { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.air-why__photo img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* ---- 8. SECOND VIDEO ---- */
.air-video-2 { background: #ffffff; padding: 80px 24px; text-align: center; }
.air-video-2__inner { max-width: 800px; margin: 0 auto; }
.air-video-2 h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800; color: #234190; margin-bottom: 12px; }
.air-video-2__sub { font-size: 1rem; color: #374151; margin-bottom: 36px; line-height: 1.65; }
.air-video-2__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.air-video-2__embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ---- 9. TRUST PILLARS ---- */
.air-pillars { background: #FE4A00; padding: 72px 24px; }
.air-pillars__inner { max-width: 1100px; margin: 0 auto; }
.air-pillars__header { text-align: center; margin-bottom: 48px; }
.air-pillars__header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #ffffff; }
.air-pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.air-pillar {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-bottom: 3px solid #234190;
  transition: transform 0.2s;
}
.air-pillar:hover { transform: translateY(-4px); }
.air-pillar__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #3a7bd5, #3a7bd5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.air-pillar__icon svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; fill: none; }
.air-pillar p { font-size: 0.97rem; font-weight: 600; color: #234190; line-height: 1.45; }

/* ---- 10. FAQ ---- */
.air-faq { background: #fff; padding: 80px 24px 48px; }
.air-faq-card:last-child { grid-column: span 2; }
.air-faq__inner { max-width: 1100px; margin: 0 auto; }
.air-faq__header { text-align: center; margin-bottom: 52px; }
.air-faq__header h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; color: #234190; margin-bottom: 12px; }
.air-faq__header p { font-size: 1.05rem; color: #4b5563; max-width: 540px; margin: 0 auto; line-height: 1.6; }
.air-faq__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.air-faq-card {
  background: #f3f3f3;
  border-radius: 12px;
  padding: 32px 28px;
  border-left: 4px solid #FE4A00;
}
.air-faq-card h3 { font-size: 1.05rem; font-weight: 700; color: #234190; margin-bottom: 12px; line-height: 1.35; }
.air-faq-card p { font-size: 0.95rem; color: #4b5563; line-height: 1.7; }

/* ---- 11. FINAL CTA ---- */
.air-cta {
  background: linear-gradient(135deg, #234190 0%, #0a1628 45%, #e53d22 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.air-cta__swoop { position: absolute; top: 0; left: 0; width: 100%; pointer-events: none; z-index: 0; }
.air-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  display: block;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.air-cta__left h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.air-cta__left p { font-size: 1.05rem; color: #ffffff; margin-bottom: 32px; line-height: 1.65; }
.air-cta__buttons { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.air-cta__btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FE4A00;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(254,74,0,0.35);
}
.air-cta__btn-orange:hover { background: #e53d22; transform: translateY(-2px); }
.air-cta__btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
}
.air-cta__btn-link:hover { color: #fff; }
.air-cta__btn-link::after { content: '\2192'; margin-left: 4px; }
.air-cta__form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; overflow: hidden; }
.air-cta__form iframe { width: 100%; height: 520px; border: 0; display: block; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .air-problem__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .air-included__inner, .air-why__inner, .air-cta__inner { display: block; gap: 40px; }
  .air-included__photo img, .air-why__photo img { height: 320px; }
  .air-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .air-faq__grid { grid-template-columns: 1fr; }
  .air-faq-card:last-child { grid-column: span 1; }
  .air-stats__inner { grid-template-columns: 1fr; }
  .air-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .air-stat:last-child { border-bottom: none; }
  .air-cta__buttons { align-items: center; text-align: center; }
}
@media (max-width: 900px) {
  .air-hero__inner { grid-template-columns: 1fr; }
  .air-hero__img-wrap { order: -1; }
  .air-hero__img-wrap img { max-width: 420px; }
}
@media (max-width: 600px) {
  .air-hero { padding: 60px 20px 80px; min-height: auto; }
  .air-video-main, .air-problem, .air-included, .air-why, .air-video-2, .air-pillars, .air-faq, .air-reviews { padding: 52px 20px; }
  .air-cta__inner { padding: 52px 20px; }
  .air-cta__form iframe { height: 600px; }
  .air-pillars__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* INJECTION: area-pill */
.shah-area-pill { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, rgba(254,74,0,0.12) 50%, rgba(254,74,0,0.5) 75%, #FE4A00 100%); border: 2px solid #FE4A00; border-radius: 8px; color: #0a1628; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.shah-area-pill:hover { background: linear-gradient(to right, #fff 0%, rgba(254,74,0,0.35) 40%, #FE4A00 100%); }
.area-pill__pin { flex-shrink: 0; }
.shah-area-pill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .shah-area-pill-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shah-area-pill-grid { grid-template-columns: 1fr; } }
.shah-footer__service-areas { background: #ffffff; padding: 32px 0; border-bottom: 1px solid #f0f2f5; }
.shah-footer__container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.shah-footer__areas-heading { font-size: 0.85rem; font-weight: 700; color: #FE4A00; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.shah-footer__areas-tagline { font-size: 0.8rem; color: #374151; line-height: 1.7; max-width: 900px; margin-top: 12px; }

.skip-nav:focus{left:4px!important;outline:3px solid #FE4A00;border-radius:4px;}