/* ── HydroTher Commercial Hot Tubs — Global Site Enhancements ──────────────────────────────── */

/* ── GRAIN TEXTURE (subtle film grain over cream background) ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 8999;
  pointer-events: none;
  opacity: .030;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.80' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── SMOOTH SCROLLING ── */
html { scroll-behavior: smooth; }

/* ── FADE-IN ON SCROLL ── */
.aa-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .90s cubic-bezier(.16,1,.30,1) var(--aa-d, 0s),
              transform .90s cubic-bezier(.16,1,.30,1) var(--aa-d, 0s);
}
.aa-fade.aa-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aa-fade { opacity: 1; transform: none; transition: none; }
  #scroll-progress { transition: none; }
  .aa-live-dot { animation: none; }
}

/* ── HOVER ELEVATION (cards, tiles) ── */
.aa-lift {
  transition: transform .42s cubic-bezier(.16,1,.30,1),
              box-shadow .42s cubic-bezier(.16,1,.30,1) !important;
}
.aa-lift:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 56px rgba(42,48,64,.14) !important;
}

/* ── LOGO COLOR: navy on cream navbar (all pages) ── */
.nb .logo-img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(50%) saturate(700%) hue-rotate(183deg) brightness(88%);
}

/* ── CTA NAVBAR BUTTON PULSE ── */
@keyframes aa-pulse {
  0%, 100% { box-shadow: 0 5px 22px rgba(27,58,92,.28); }
  50%       { box-shadow: 0 5px 22px rgba(27,58,92,.28), 0 0 0 7px rgba(27,58,92,.07); }
}
.nb-cta { animation: aa-pulse 3.2s ease-in-out infinite; }

/* ── SCHEDULE A CALL BUTTON ── */
@keyframes aa-call-pulse {
  0%,100% { box-shadow: 0 4px 18px rgba(158,123,64,.5); }
  50%      { box-shadow: 0 4px 18px rgba(158,123,64,.5), 0 0 0 8px rgba(158,123,64,.13); }
}
#aa-call-btn {
  position: fixed;
  bottom: 5rem;
  top: auto;
  right: 1.5rem;
  transform: none;
  width: auto;
  height: 52px;
  padding: .75rem 1.4rem;
  background: var(--gold, #9E7B40);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  z-index: 990;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(158,123,64,.4);
  animation: aa-call-pulse 3s ease-in-out infinite;
  transition: right .25s cubic-bezier(.16,1,.30,1), box-shadow .25s;
}
#aa-call-btn:hover { right: 1.7rem; box-shadow: 0 6px 28px rgba(158,123,64,.55); animation-play-state: paused; }
#aa-call-btn svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
#aa-call-btn .aa-call-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  color: #fff;
}

/* ── CALLBACK MODAL ── */
#aa-call-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,58,92,.55);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#aa-call-overlay.open { display: flex; }
/* ── FOOTER CONTACT ICONS (shared, prevents giant-blob on pages without inline style) ── */
.fci { display:flex; align-items:flex-start; gap:.55rem; font-family:var(--sf,sans-serif); font-size:.82rem; font-weight:300; color:rgba(255,255,255,1); line-height:1.5; margin-bottom:.6rem; }
.fci svg { width:12px; height:12px; stroke:var(--gd2,#C09A5A); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; margin-top:3px; flex-shrink:0; }
#aa-call-box {
  background: #fff;
  border: 1px solid rgba(42,48,64,.13);
  padding: 3rem 3.5rem;
  max-width: 680px;
  width: 94%;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(27,58,92,.25);
}
#aa-call-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: .4rem;
}
#aa-call-box p {
  font-family: 'Inter', -apple-system, sans-serif;
  font-style: normal;
  font-size: .95rem;
  font-weight: 400;
  color: #4A5670;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}
.aa-call-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EDE8DE;
  border: 1px solid rgba(42,48,64,.13);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #8494A8;
  transition: background .2s, color .2s;
}
.aa-call-close:hover { background: #E0D8CB; color: #1B3A5C; }
.aa-call-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.aa-call-form .fw { grid-column: span 2; }
.aa-fg { display: flex; flex-direction: column; gap: .35rem; }
.aa-fg label { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8494A8; }
.aa-fg input, .aa-fg select, .aa-fg textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  background: #F7F4EF;
  border: 1px solid rgba(42,48,64,.13);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #2A3040;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.aa-fg input:focus, .aa-fg select:focus, .aa-fg textarea:focus {
  border-color: #1B3A5C;
  box-shadow: 0 0 0 3px rgba(27,58,92,.06);
}
.aa-fg input::placeholder, .aa-fg textarea::placeholder { color: #B8C5D5; }
.aa-fg textarea { min-height: 72px; resize: vertical; }
.aa-call-submit {
  grid-column: span 2;
  padding: 1.1rem;
  background: #9E7B40;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, box-shadow .3s;
}
.aa-call-submit:hover { background: #C09A5A; box-shadow: 0 6px 28px rgba(158,123,64,.35); }

/* Callback section on contact page */
.callback-section {
  padding: 6rem 0;
  background: #F7F4EF;
  border-top: 1px solid #E0D8CB;
}
.callback-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.callback-info h2 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #1B3A5C;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.callback-info p {
  font-size: 1.05rem;
  color: rgba(27,58,92,.60);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.callback-promise { display: flex; align-items: center; gap: .75rem; color: #1B3A5C; font-size: 1rem; margin-bottom: .75rem; }
.callback-promise svg { flex-shrink: 0; }
.callback-form-wrap {
  background: #fff;
  border: 1px solid rgba(42,48,64,.07);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  box-shadow: 0 20px 70px rgba(42,48,64,.12);
}
.callback-form-wrap > div { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 400; color: #1B3A5C; margin-bottom: .5rem; line-height: 1.1; }
.callback-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.callback-form .fw { grid-column: span 2; }
.cb-fg { display: flex; flex-direction: column; gap: .5rem; }
.cb-fg label { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #4A5670; }
.cb-fg input, .cb-fg select, .cb-fg textarea {
  width: 100%;
  padding: .95rem 1.2rem;
  background: #F7F4EF;
  border: 1px solid rgba(42,48,64,.13);
  font-family: 'Inter', sans-serif;
  font-size: .96rem;
  color: #2A3040;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.cb-fg input::placeholder, .cb-fg textarea::placeholder { color: rgba(27,58,92,.30); }
.cb-fg select option { background: #fff; color: #1B3A5C; }
.cb-fg input:focus, .cb-fg select:focus, .cb-fg textarea:focus { border-color: #1B3A5C; background: #fff; box-shadow: 0 0 0 3px rgba(27,58,92,.06); }
.cb-fg textarea { min-height: 72px; resize: vertical; }
.cb-submit {
  grid-column: span 2;
  padding: 1.2rem;
  background: #1B3A5C;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, box-shadow .3s, transform .2s;
  border-radius: 0;
  margin-top: .4rem;
  width: 100%;
}
.cb-submit:hover { background: #9E7B40; box-shadow: 0 6px 28px rgba(158,123,64,.35); }
@media (max-width: 768px) {
  .callback-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .callback-form { grid-template-columns: 1fr; }
  .callback-form .fw { grid-column: span 1; }
  .aa-call-form { grid-template-columns: 1fr; }
  .aa-call-form .fw { grid-column: span 1; }
  .aa-call-submit { grid-column: span 1; }
  .cb-submit { grid-column: span 1; }
  #aa-call-btn { top: auto; bottom: 7rem; right: 1rem; border-radius: 10px; padding: .65rem 1rem; width: auto; height: auto; flex-direction: row; }
  #aa-call-btn .aa-call-label { display: none; }
}

/* ── FOOTER FLEX SAFETY ── */
.fg2 > * { min-width: 0; }
@media (max-width: 900px) {
  .fg2 { flex-direction: column !important; gap: 2rem !important; }
}

/* ── BACK TO TOP BUTTON ── */
#aa-btt {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: rgba(27,58,92,.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .32s, transform .32s;
  box-shadow: 0 4px 18px rgba(27,58,92,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#aa-btt.aa-show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#aa-btt:hover { background: #1B3A5C; box-shadow: 0 6px 24px rgba(27,58,92,.5); }
#aa-btt svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ── TYPOGRAPHY — Section headings larger & more impactful ── */
.sh-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem) !important;
  line-height: 1.07 !important;
  letter-spacing: .008em !important;
}
.sh-sub {
  font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif !important;
  font-style: normal !important;
  font-weight: 300 !important;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem) !important;
  line-height: 1.78 !important;
  color: var(--t2) !important;
  max-width: 580px !important;
}
.seg-t {
  font-size: clamp(2.2rem, 4vw, 3.8rem) !important;
  line-height: 1.08 !important;
}
.ph-title {
  line-height: 1.05 !important;
}
.ph-sub {
  font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 1.78 !important;
}
.f-ab { line-height: 1.78 !important; }
.tl-desc { line-height: 1.78 !important; }

/* ── FIX: remove italic from em everywhere — classic uniform look ── */
em {
  font-style: normal !important;
  font-weight: inherit !important;
}

/* ── HERO PHONE CTA ── */
.h-phone {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.h-phone-icon {
  width: 18px;
  height: 18px;
  opacity: .65;
  flex-shrink: 0;
}
.h-phone a {
  font-size: 1.22rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .2s;
  font-family: 'Inter', -apple-system, sans-serif;
}
.h-phone a:hover { color: #C09A5A; }
.h-phone-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.28);
  flex-shrink: 0;
}
.h-phone-note {
  font-size: .70rem;
  font-weight: 300;
  color: rgba(255,255,255,.52);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── TIMELINE ENHANCEMENTS ── */
.tl { max-width: 820px !important; }
.tl-year {
  display: inline-block !important;
  background: rgba(158,123,64,.10) !important;
  padding: .18rem .75rem !important;
  border-left: 2px solid #9E7B40 !important;
  font-size: .78rem !important;
  letter-spacing: .20em !important;
  margin-bottom: .55rem !important;
}
.tl-event {
  font-size: 1.08rem !important;
  line-height: 1.32 !important;
  margin-bottom: .45rem !important;
}
.tl-item {
  transition: background .22s, transform .22s;
  border-radius: 2px;
}
.tl-item:hover {
  background: rgba(158,123,64,.04);
  transform: translateX(5px);
}
.tl-item::before {
  width: 13px !important;
  height: 13px !important;
  left: calc(-6.5px) !important;
  box-shadow: 0 0 0 4px rgba(158,123,64,.18), 0 0 16px rgba(158,123,64,.55) !important;
}

/* ── PROJECT CARD IMAGE ZOOM ── */
.pj > img,
.pj [style*="object-fit"] {
  transition: transform .55s cubic-bezier(.25,.46,.45,.94) !important;
}
.pj:hover > img { transform: scale(1.06) !important; }

/* ── STAT COUNTER NUMBERS ── */
.hst-n {
  min-width: 4ch;
  display: inline-block;
}

/* ── SERVICES OVERVIEW GRID ── */
.svc-ov { padding: 8rem 0; background: var(--w); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 4rem; border: 1px solid var(--bdr); }
.svc-card {
  padding: 2.2rem 1.6rem 2rem; position: relative; border-right: 1px solid var(--bdr);
  transition: background .3s, box-shadow .3s, transform .35s cubic-bezier(.16,1,.30,1);
  background: var(--bg); overflow: hidden;
}
.svc-card:last-child { border-right: none; }
.svc-card::after { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(to right,var(--gold),var(--gd2)); transform:scaleX(0); transform-origin:left; transition:transform .4s cubic-bezier(.16,1,.30,1); }
.svc-card:hover::after { transform:scaleX(1); }
.svc-card:hover { background: var(--w); box-shadow: 0 20px 60px rgba(42,48,64,.10); transform: translateY(-4px); z-index: 1; }
.svc-ico { width: 48px; height: 48px; border-radius: 4px; background: rgba(27,58,92,.07); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: background .3s; }
.svc-card:hover .svc-ico { background: rgba(27,58,92,.12); }
.svc-ico svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-t { font-family: var(--sf); font-weight: 600; font-size: 1.05rem; color: var(--navy); line-height: 1.25; margin-bottom: .65rem; }
.svc-d { font-size: .95rem; color: var(--ink); opacity: .82; line-height: 1.72; margin-bottom: 1.4rem; }
.svc-pills { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.4rem; }
.svc-pill { font-size: .70rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .22rem .65rem; border: 1px solid var(--bdr2); color: var(--t2); }
.svc-lnk { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--bdr2); padding-bottom: 2px; display: inline-flex; align-items: center; gap: .4rem; transition: color .2s, border-color .2s, gap .25s; }
.svc-lnk:hover { color: var(--gold); border-color: var(--gold); gap: .7rem; }
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-card:nth-child(2n) { border-right: none; }
  .svc-card:nth-child(-n+2) { border-bottom: 1px solid var(--bdr); }
}
@media (max-width: 700px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-card { border-right: 1px solid var(--bdr); }
  .svc-card:nth-child(2n) { border-right: none; }
  .svc-card:nth-child(-n+4) { border-bottom: 1px solid var(--bdr); }
  .svc-card:last-child { border-bottom: none; }
}
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } .svc-card { border-right: none; border-bottom: 1px solid var(--bdr); } .svc-card:last-child { border-bottom: none; } .svc-ov { padding: 5rem 0; } }

/* ── MOBILE — Projects 4-col grid ── */
.pj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
@media (max-width: 900px) {
  .pj-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .pj-grid { grid-template-columns: 1fr 1fr !important; gap: 2px !important; }
}

/* ── MOBILE — Typography responsive clamps ── */
@media (max-width: 768px) {
  .sh-title { font-size: clamp(2rem, 8vw, 3.2rem) !important; line-height: 1.10 !important; }
  .sh-sub   { font-size: clamp(.95rem, 3.8vw, 1.08rem) !important; max-width: 100% !important; }
  .seg-t    { font-size: clamp(2rem, 7vw, 3rem) !important; }

  /* Hero phone — smaller on mobile */
  .h-phone { margin-top: 1.1rem; gap: .55rem; }
  .h-phone a { font-size: 1.05rem; }
  .h-phone-note { font-size: .64rem; }

  /* Timeline tighter */
  .tl { padding-left: 1.4rem !important; }
  .tl-event { font-size: .98rem !important; }
  .tl-desc { font-size: .88rem !important; }

  /* Back to top — sit above the call button on mobile (call btn at bottom:7rem h:41px → top≈691px; btt must clear that) */
  #aa-btt { bottom: 10rem; right: 1.2rem; width: 40px; height: 40px; font-size: .9rem; }

  /* Configurator spec panel */
  .spec-panel { grid-template-columns: repeat(3, 1fr) !important; }
}


/* ── LIGHTBOX ── */
#aa-lb {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(5, 15, 30, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#aa-lb.aa-lb-open { opacity: 1; pointer-events: auto; }
#aa-lb-img-wrap {
  position: relative;
  max-width: min(88vw, 1100px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#aa-lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 100px rgba(0,0,0,.6);
  display: block;
}
#aa-lb-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.6rem 1.4rem;
  background: linear-gradient(to top, rgba(5,15,30,.95) 0%, transparent 100%);
  border-radius: 0 0 4px 4px;
}
#aa-lb-cat {
  font-family: 'Inter', sans-serif;
  font-size: .70rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #C09A5A; margin-bottom: .3rem;
}
#aa-lb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: #fff; line-height: 1.2;
}
#aa-lb-loc {
  font-family: 'Inter', sans-serif;
  font-size: .76rem; color: rgba(255,255,255,.6);
  margin-top: .25rem;
}
.aa-lb-btn {
  position: fixed;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1;
  transition: background .2s, transform .2s;
  z-index: 9501;
}
.aa-lb-btn:hover { background: rgba(255,255,255,.18); transform: scale(1.08); }
#aa-lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.6rem; }
#aa-lb-prev { left: 1.5rem; top: 50%; margin-top: -24px; }
#aa-lb-next { right: 1.5rem; top: 50%; margin-top: -24px; }
@media (max-width: 600px) {
  #aa-lb-prev { left: .5rem; }
  #aa-lb-next { right: .5rem; }
  #aa-lb-close { top: .8rem; right: .8rem; }
}

/* ── PRODUCT COMPARISON PANEL ── */
#aa-cmp-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--navy, #1B3A5C);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 2rem;
  box-shadow: 0 -4px 32px rgba(27,58,92,.28);
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.16,1,.30,1);
  flex-wrap: wrap;
}
#aa-cmp-bar.aa-cmp-show { transform: translateY(0); }
#aa-cmp-bar-label {
  font-size: .74rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  opacity: .7; flex-shrink: 0;
}
#aa-cmp-slots { display: flex; gap: .6rem; flex: 1; }
.aa-cmp-slot {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  padding: .35rem .8rem;
  font-size: .82rem;
  min-width: 100px;
}
.aa-cmp-slot-x {
  background: none; border: none; color: rgba(255,255,255,.5);
  cursor: pointer; font-size: 1rem; padding: 0; margin-left: auto;
  transition: color .15s;
}
.aa-cmp-slot-x:hover { color: #fff; }
#aa-cmp-go {
  padding: .6rem 1.6rem;
  background: linear-gradient(135deg, #9E7B40, #C09A5A);
  color: #fff; border: none; border-radius: 3px;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
#aa-cmp-go:disabled { opacity: .35; cursor: default; transform: none; }
#aa-cmp-go:not(:disabled):hover { opacity: .85; transform: translateY(-1px); }
.aa-cmp-chk-wrap {
  position: absolute; bottom: 1rem; left: 1rem;
  display: flex; align-items: center; gap: .4rem;
  z-index: 2;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: .25rem .6rem .25rem .4rem;
}
.aa-cmp-chk {
  width: 18px; height: 18px; cursor: pointer;
  accent-color: #C09A5A;
}
.aa-cmp-chk-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--t2, #4A5670); cursor: pointer;
  user-select: none;
}

/* ── COMPARISON MODAL ── */
#aa-cmp-modal {
  position: fixed; inset: 0;
  z-index: 9600;
  background: rgba(5,15,30,.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .32s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
}
#aa-cmp-modal.aa-cmp-modal-open { opacity: 1; pointer-events: auto; }
#aa-cmp-inner {
  background: var(--w, #fff);
  border-radius: 6px;
  max-width: 860px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
  position: relative;
}
#aa-cmp-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer;
  color: var(--t3, #8494A8);
  transition: color .15s;
  z-index: 2;
}
#aa-cmp-modal-close:hover { color: var(--ink, #2A3040); }
#aa-cmp-table { width: 100%; border-collapse: collapse; }
#aa-cmp-table th {
  background: var(--navy, #1B3A5C); color: #fff;
  padding: 1.2rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  text-align: left;
}
#aa-cmp-table td {
  padding: .9rem 1.5rem;
  border-bottom: 1px solid var(--bdr, rgba(42,48,64,.07));
  font-size: .92rem;
  vertical-align: middle;
}
#aa-cmp-table tr:nth-child(even) td { background: var(--bg, #F7F4EF); }
#aa-cmp-table td:first-child {
  font-size: .70rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--t3, #8494A8);
  width: 32%;
}
#aa-cmp-table td:not(:first-child) { font-weight: 500; color: var(--navy, #1B3A5C); }

/* ── CONFIGURATOR PRINT ── */
@media print {
  body > *:not(#cfg-print-wrap) { display: none !important; }
  #cfg-print-wrap {
    display: block !important;
    padding: 2cm;
    font-family: 'Inter', sans-serif;
    color: #1B3A5C;
  }
  .cfg-print-header { margin-bottom: 1.5rem; border-bottom: 2px solid #9E7B40; padding-bottom: 1rem; }
  .cfg-print-title { font-size: 22pt; font-weight: 700; }
  .cfg-print-sub { font-size: 10pt; color: #4A5670; margin-top: 4pt; }
  .cfg-print-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
  .cfg-print-row { padding: .6rem 0; border-bottom: 1px solid #E0D8CB; }
  .cfg-print-lbl { font-size: 7pt; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8494A8; margin-bottom: 3pt; }
  .cfg-print-val { font-size: 12pt; font-weight: 600; color: #1B3A5C; }
  .cfg-print-footer { margin-top: 2rem; font-size: 8pt; color: #8494A8; }
}

/* ── AMPERSAND — classic Georgia italic & in display headings ── */
.amp {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .02em;
}
.h-l2 .amp {
  font-size: .62em;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .sh-title { font-size: clamp(1.4rem, 7vw, 1.9rem) !important; }
  .h-phone-sep, .h-phone-note { display: none; }
  .spec-panel { grid-template-columns: repeat(2, 1fr) !important; }
  .viewer-toolbar { padding: .5rem 1rem; flex-wrap: wrap; gap: .5rem; }
  .view-btns { flex-wrap: wrap; }
  #aa-btt { bottom: 5.2rem; right: 1.2rem; }
}

/* ═══════════════════════════════════════════════════
   WOW FEATURES — Added enhancements
═══════════════════════════════════════════════════ */

/* ── 9. WATER RIPPLE ON CLICK ── */
@keyframes aa-ripple-anim {
  0%   { width:0;     height:0;     opacity:.45; }
  100% { width:240px; height:240px; opacity:0;   }
}
.aa-ripple {
  position: fixed;
  border-radius: 50%;
  border: 1.5px solid rgba(27,58,92,.38);
  pointer-events: none;
  z-index: 9988;
  transform: translate(-50%,-50%);
  animation: aa-ripple-anim .75s cubic-bezier(.16,1,.30,1) forwards;
}

/* ── 2. STEAM PARTICLES ── */
@keyframes aa-steam-rise {
  0%   { transform: translateY(0)     translateX(0)    scale(1);   opacity:.55; }
  55%  { transform: translateY(-48px) translateX(8px)  scale(1.3); opacity:.20; }
  100% { transform: translateY(-90px) translateX(-5px) scale(.6);  opacity:0;   }
}
.pc-img { position: relative; overflow: visible; }
.aa-steam {
  position: absolute;
  bottom: 8%;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  filter: blur(5px);
  pointer-events: none;
  z-index: 5;
  animation: aa-steam-rise 3s ease-in-out infinite;
}

/* ── TABLE SCROLL HINT (mobile) ── */
.tbl-scroll { -webkit-overflow-scrolling: touch; }
@media (max-width: 768px) {
  .tbl-scroll::after {
    content: '← Scroll to see all columns →';
    display: block;
    text-align: center;
    font-size: .72rem;
    letter-spacing: .06em;
    color: var(--t3, #8494A8);
    padding: .6rem 0 0;
    font-family: 'Inter', sans-serif;
  }
}

/* ── 1. HORIZONTAL PROJECT SCROLL ── */
.proj-mo {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  gap: 3px;
  scrollbar-width: thin;
  scrollbar-color: rgba(27,58,92,.18) transparent;
}
.proj-mo::-webkit-scrollbar       { height: 4px; }
.proj-mo::-webkit-scrollbar-track { background: transparent; }
.proj-mo::-webkit-scrollbar-thumb { background: rgba(27,58,92,.2); border-radius: 2px; }
.proj-mo .pj {
  flex: 0 0 clamp(300px, 30vw, 500px) !important;
  scroll-snap-align: start;
  height: 520px;
}
.proj-mo .pj img { width:100%; height:100%; object-fit:cover; }

/* ── 6. LIVE COUNTER BANNER ── */
.aa-live-banner {
  background: var(--navy, #1B3A5C);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.aa-live-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.aa-live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: aa-dot-live 1.8s ease-in-out infinite;
}
@keyframes aa-dot-live {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.7), 0 0 6px rgba(34,197,94,.4); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0), 0 0 10px rgba(34,197,94,.25); }
}
.aa-live-text {
  font-family: var(--sf,'Inter',sans-serif);
  font-size: .80rem; font-weight: 500;
  color: rgba(255,255,255,.78); letter-spacing: .03em;
}
.aa-live-num {
  display: inline-block;
  font-weight: 800; font-size: 1rem; color: #fff;
  font-variant-numeric: tabular-nums;
  min-width: 2ch; text-align: right;
}
.aa-live-pipe { width:1px; height:16px; background:rgba(255,255,255,.14); }

/* ── 5. INTERACTIVE INSTALLATION MAP ── */
.aa-map-section {
  padding: 7rem 0;
  background: #0c1f35;
  position: relative;
  overflow: hidden;
}
.aa-map-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 45%, rgba(36,79,122,.55), transparent 72%);
  pointer-events: none;
}
.aa-map-hdr { text-align: center; margin-bottom: 3rem; position: relative; }
.aa-map-eye {
  font-size: .72rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: #C09A5A;
  display: block; margin-bottom: 1rem;
}
.aa-map-title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: clamp(2rem,4vw,3.4rem); font-weight: 400;
  color: #fff; line-height: 1.1;
}
.aa-map-title em { font-style: italic !important; font-weight: 300 !important; }
.aa-map-wrap { position: relative; max-width: 740px; margin: 0 auto; }
.aa-map-svg { width:100%; height:auto; }
.aa-map-cont { display: none; }
.aa-usa { fill: rgba(16,42,76,.88); stroke: rgba(255,255,255,.22); stroke-width: 1; }
.aa-canada { fill: rgba(38,82,138,.88); stroke: rgba(255,255,255,.28); stroke-width: 1.2; }
.aa-border-ca-us { fill:none; stroke: rgba(192,154,90,.55); stroke-width: 1.3; stroke-dasharray: 5 4; }
.aa-map-dot-g { cursor: default; }
.aa-map-city-dot {
  fill: #C09A5A;
  filter: drop-shadow(0 0 4px rgba(192,154,90,.6));
  transition: r .2s;
}
.aa-map-city-dot:hover { filter: drop-shadow(0 0 8px rgba(192,154,90,.9)); }
@keyframes aa-city-pulse {
  0%,100% { opacity:.7; r: 5; }
  50%      { opacity:1;  r: 7; }
}
.aa-map-city-dot.pulse { animation: aa-city-pulse 2.5s ease-in-out infinite; }
.aa-map-hq-dot { fill: #fff; filter: drop-shadow(0 0 6px rgba(255,255,255,.8)); }
.aa-map-label {
  font-family: 'Inter',sans-serif; font-size: 9px; font-weight: 600;
  fill: rgba(255,255,255,.55); letter-spacing: .06em;
  pointer-events: none;
}
.aa-map-hq-label { fill: #C09A5A !important; font-weight: 700 !important; }
.aa-map-sub { font-family:'Inter',sans-serif; font-size:.82rem; color:rgba(255,255,255,.4); margin-top:.8rem; line-height:1.6; max-width:520px; margin-inline:auto; }
.aa-lakes path { fill: #0c1f35; stroke: none; }
.aa-map-stats {
  display: flex; justify-content: center; gap: 5rem;
  margin-top: 3rem; flex-wrap: wrap;
}
.aa-map-stat { text-align: center; }
.aa-map-stat-n {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 500;
  color: #C09A5A; line-height: 1; display: block;
}
.aa-map-stat-l {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-top: .4rem; display: block;
}

/* ── 12. VIDEO TESTIMONIALS ── */
.aa-vid-section {
  padding: 7rem 0;
  background: var(--w, #fff);
}
.aa-vid-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 4rem;
}
@media(max-width:900px) { .aa-vid-grid { grid-template-columns:1fr; max-width:460px; margin-inline:auto; } }
.aa-vid-card {
  border: 1px solid rgba(42,48,64,.12);
  background: #fff; overflow: hidden;
  box-shadow: 0 2px 16px rgba(42,48,64,.05);
  transition: box-shadow .3s, transform .3s;
  cursor: pointer;
}
.aa-vid-card:hover { box-shadow: 0 20px 60px rgba(27,58,92,.13); transform: translateY(-5px); }
.aa-vid-thumb {
  position: relative; aspect-ratio: 16/9;
  background: #1B3A5C; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.aa-vid-thumb img { width:100%; height:100%; object-fit:cover; opacity:.65; transition:opacity .3s; }
.aa-vid-card:hover .aa-vid-thumb img { opacity:.8; }
.aa-vid-play {
  position: absolute; inset:0;
  display: flex; align-items:center; justify-content:center;
}
.aa-vid-btn {
  width:62px; height:62px; border-radius:50%;
  background: rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
  transition: transform .25s, background .2s;
}
.aa-vid-card:hover .aa-vid-btn { transform:scale(1.12); background:#fff; }
.aa-vid-body { padding:1.4rem 1.5rem 1.7rem; }
.aa-vid-quote {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-style:italic; font-size:1.06rem;
  color: #2A3040; line-height:1.55; margin-bottom:1rem;
}
.aa-vid-who {
  font-size:.68rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:#8494A8;
}
.aa-vid-who strong { color:#9E7B40; font-weight:700; }

/* ── 11. ROI CALCULATOR ── */
.aa-roi-section {
  padding: 7rem 0;
  background: linear-gradient(140deg,#091828 0%,#1B3A5C 55%,#1a4570 100%);
  position: relative; overflow: hidden;
}
.aa-roi-section::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 55% 70% at 15% 50%, rgba(158,123,64,.12), transparent 65%);
  pointer-events:none;
}
.aa-roi-inner {
  display: grid; grid-template-columns:1fr 1.15fr;
  gap: 5rem; align-items:center; position:relative;
}
@media(max-width:900px) { .aa-roi-inner { grid-template-columns:1fr; gap:3rem; } }
.aa-roi-eye {
  font-size:.72rem; font-weight:700; letter-spacing:.28em;
  text-transform:uppercase; color:#C09A5A; display:block; margin-bottom:1rem;
}
.aa-roi-title {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(2rem,3.8vw,3.4rem); font-weight:400;
  color:#fff; line-height:1.1; margin-bottom:1.2rem;
}
.aa-roi-title em { font-style:italic !important; font-weight:300 !important; }
.aa-roi-desc { font-size:.9rem; color:rgba(255,255,255,.62); line-height:1.75; }
.aa-roi-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.11);
  backdrop-filter:blur(10px); padding:2.4rem; border-radius:4px;
}
.aa-roi-row { margin-bottom:1.3rem; }
.aa-roi-lbl { font-size:.58rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.40); margin-bottom:.35rem; }
.aa-roi-range-top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:.35rem; }
.aa-roi-val { font-size:.95rem; font-weight:700; color:#fff; }
input[type=range].aa-slider {
  width:100%; accent-color:#C09A5A; height:20px;
  cursor:pointer; outline:none; border:none; background:transparent;
  -webkit-appearance:none; appearance:none; padding:0; margin:0;
  vertical-align:middle;
}
input[type=range].aa-slider::-webkit-slider-thumb {
  -webkit-appearance:none; width:16px; height:16px;
  border-radius:50%; background:#C09A5A; cursor:pointer;
  box-shadow:0 0 0 3px rgba(192,154,90,.25);
  margin-top:-7px;
}
input[type=range].aa-slider::-webkit-slider-runnable-track {
  height:2px; background:rgba(255,255,255,.18); border-radius:2px;
}
input[type=range].aa-slider::-moz-range-thumb {
  width:16px; height:16px; border:none;
  border-radius:50%; background:#C09A5A; cursor:pointer;
  box-shadow:0 0 0 3px rgba(192,154,90,.25);
}
input[type=range].aa-slider::-moz-range-track {
  height:2px; background:rgba(255,255,255,.18); border-radius:2px;
}
.aa-roi-select {
  width:100%; padding:.6rem .9rem;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  color:#fff; font-family:'Inter',sans-serif; font-size:.86rem;
  outline:none; cursor:pointer; border-radius:2px;
  -webkit-appearance:none; appearance:none;
}
.aa-roi-select option { background:#1B3A5C; color:#fff; }
.aa-roi-results {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:.9rem; margin:1.6rem 0 1rem;
}
.aa-roi-box {
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.09);
  padding:.85rem .8rem; text-align:center; border-radius:3px;
}
.aa-roi-box-n {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.5rem; font-weight:500; color:#C09A5A; line-height:1;
}
.aa-roi-box-l {
  font-size:.58rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:rgba(255,255,255,.36); margin-top:.28rem;
}
.aa-roi-bar-wrap { height:3px; background:rgba(255,255,255,.1); border-radius:2px; margin-bottom:.7rem; }
#roi-bar-fill {
  height:100%; background:linear-gradient(to right,#9E7B40,#C09A5A);
  border-radius:2px; transition:width .4s ease; width:0%;
}
#roi-verdict { font-size:.76rem; color:rgba(255,255,255,.48); font-style:italic; margin-bottom:1.4rem; }
.aa-roi-cta {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.82rem 2rem; background:#9E7B40; color:#fff; border:none;
  font-family:'Inter',sans-serif; font-size:.74rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; text-decoration:none;
  transition:background .2s,box-shadow .3s; cursor:pointer; border-radius:2px;
}
.aa-roi-cta:hover { background:#C09A5A; box-shadow:0 6px 28px rgba(158,123,64,.4); }

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE — WOW SECTIONS
   Breakpoints: 768px · 600px · 480px
══════════════════════════════════════════════════════ */

/* ── FOOTER BOTTOM BAR — global overrides ─────────────────────── */
.f-bt             { flex-direction: column !important; gap: .75rem !important; flex-wrap: nowrap !important; }
.f-bt-links       { display: flex !important; justify-content: center !important; gap: 2rem !important; flex-wrap: wrap !important; padding-left: 15% !important; }
.f-bt-copy        { display: flex !important; justify-content: space-between !important; width: 100% !important; }
.f-cp, .f-pp, .f-sb { font-size: .80rem !important; font-weight: 300 !important; color: rgba(255,255,255,.80) !important; }
.f-lnk            { font-size: .80rem; font-weight: 300; color: rgba(255,255,255,.80) !important; text-decoration: none; transition: color .15s; white-space: nowrap; }
.f-lnk:hover      { color: var(--gd2) !important; }
.f-pp a, .f-sb a  { color: rgba(255,255,255,.60) !important; transition: color .15s; }
.f-pp a:hover, .f-sb a:hover { color: var(--gd2) !important; }

@media (max-width: 600px) {
  .f-bt-links      { flex-direction: column !important; align-items: flex-start !important; gap: .35rem !important; }
  .f-bt-copy       { flex-direction: column !important; gap: .25rem !important; }
}

@media (max-width: 768px) {
  /* Map section */
  .aa-map-section  { padding: 5rem 0; }
  .aa-map-stats    { gap: 2.5rem; margin-top: 2.2rem; }
  .aa-map-hdr      { margin-bottom: 2rem; }

  /* ROI section */
  .aa-roi-section  { padding: 5rem 0; }
  .aa-roi-inner    { gap: 2.5rem; }

  /* Video testimonials */
  .aa-vid-section  { padding: 5rem 0; }
  .aa-vid-grid     { margin-top: 2.5rem; }

  /* Live banner — single line on mobile */
  .aa-live-inner   { gap: .55rem; flex-wrap: nowrap; }
  .aa-live-pipe    { display: none; }
  .aa-live-text:last-of-type { display: none; }
  .aa-live-text:first-of-type { font-size: .74rem; }

  /* Comparison bar */
  #aa-cmp-bar      { padding: .7rem 1.2rem; }
  #aa-cmp-slots    { flex-wrap: wrap; gap: .4rem; }
}

@media (max-width: 600px) {
  /* Hide SVG city labels — too small to read at this scale */
  .aa-map-label    { display: none; }
  .aa-map-hq-label { display: none; }

  /* Map stats — tighter gap, wrap to 2×2 naturally */
  .aa-map-stats    { gap: 1.4rem; }
  .aa-map-stat-n   { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }

  /* Comparison table — tighter cells */
  #aa-cmp-table th { padding: .9rem 1rem; font-size: 1.2rem; }
  #aa-cmp-table td { padding: .65rem 1rem; font-size: .84rem; }
}

@media (max-width: 480px) {
  /* Map section */
  .aa-map-section  { padding: 3.5rem 0; }
  .aa-map-stats    { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.4rem; margin-top: 1.8rem; }
  .aa-map-stat-n   { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .aa-map-stat-l   { font-size: .58rem; }
  .aa-map-legend   { flex-direction: column; align-items: center; gap: .45rem; margin-top: 1rem; font-size: .72rem; }

  /* ROI section */
  .aa-roi-section  { padding: 3.5rem 0; }
  .aa-roi-card     { padding: 1.4rem 1.2rem; }
  .aa-roi-results  { grid-template-columns: 1fr; gap: .55rem; }
  .aa-roi-box      { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: .7rem .9rem; }
  .aa-roi-box-n    { font-size: 1.3rem; line-height: 1; }
  .aa-roi-box-l    { margin-top: 0; margin-left: .5rem; font-size: .56rem; }
  .aa-roi-lbl      { font-size: .52rem; }

  /* Video testimonials */
  .aa-vid-section  { padding: 3.5rem 0; }
  .aa-vid-grid     { gap: 1rem; margin-top: 2rem; }
  .aa-vid-body     { padding: 1.1rem 1.2rem 1.4rem; }
  .aa-vid-quote    { font-size: .96rem; }

  /* Comparison bar */
  #aa-cmp-bar      { padding: .6rem 1rem; gap: .6rem; }
  .aa-cmp-slot     { min-width: 80px; font-size: .76rem; padding: .28rem .6rem; }

  /* Comparison modal */
  #aa-cmp-modal    { padding: 1rem; }
  #aa-cmp-table th { padding: .7rem .75rem; font-size: 1.1rem; }
  #aa-cmp-table td { padding: .5rem .75rem; font-size: .80rem; }
  #aa-cmp-table td:first-child { font-size: .62rem; }
}

/* ════════════════════════════════════════════════════════
   WOW EFFECTS
════════════════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 10001;
  width: 0%; height: 3px;
  background: linear-gradient(90deg, #C9A84C 0%, #E8D08C 45%, #C9A84C 100%);
  pointer-events: none;
  transition: width .06s linear;
}

/* ── HERO VIDEO PARALLAX ── */
.hero-video { will-change: transform; }

/* ── PRODUCT CARD HOVER OVERLAY ── */
.pc-img::after {
  content: 'Configure \2192';
  position: absolute;
  inset: 0;
  z-index: 6;
  background: rgba(18,38,68,.83);
  color: #D4A85C;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .32s ease;
}
.pc:hover .pc-img::after { opacity: 1; }
@media (hover: none) { .pc-img::after { display: none; } }

/* ── MAP DOTS GROUP REVEAL ── */
.aa-dots-g {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.16,1,.3,1);
}
.aa-dots-g.aa-dots-visible {
  opacity: 1;
}

/* ── LIVE BANNER NUMBER POP ── */
@keyframes aa-num-pop {
  0%   { transform: scale(.4); opacity: 0; }
  65%  { transform: scale(1.18); }
  100% { transform: scale(1); opacity: 1; }
}
.aa-live-num.aa-counted {
  animation: aa-num-pop .55s cubic-bezier(.16,1,.3,1) both;
}

/* ── MOBILE MENU — Language switcher ── */
.mm-lang {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--bdr, rgba(42,48,64,.07));
}
.mm-lang-div {
  font-size: .78rem;
  color: var(--t3, #8494A8);
  padding: 0;
  display: inline !important;
  border: none !important;
}
.mm-lang-btn {
  display: inline-flex !important;
  font-family: var(--sf, 'Inter', sans-serif);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--t3, #8494A8) !important;
  text-decoration: none;
  padding: .28rem .7rem !important;
  border: 1px solid var(--bdr2, rgba(42,48,64,.13)) !important;
  border-radius: 2px;
  transition: color .2s, background .2s, border-color .2s;
  border-bottom: 1px solid var(--bdr2, rgba(42,48,64,.13)) !important;
}
.mm-lang-btn:hover { color: var(--navy, #1B3A5C) !important; border-color: var(--navy, #1B3A5C) !important; }
.mm-lang-btn.mm-lang-active {
  color: var(--gold, #9E7B40) !important;
  border-color: var(--gold, #9E7B40) !important;
  background: rgba(158,123,64,.06);
}

/* ── MOBILE — Hero section improvements ── */
@media (max-width: 768px) {
  .h-sub { margin-top: 1.6rem !important; margin-bottom: 2rem !important; }
  .h-acts { gap: .75rem; }
}
@media (max-width: 480px) {
  .h-sub { margin-top: 1.2rem !important; margin-bottom: 1.4rem !important; }
  .h-acts { flex-direction: column; align-items: stretch; width: 100%; max-width: 290px; margin: 0 auto; }
  .btn-A, .btn-B { justify-content: center; width: 100%; padding: .75rem 1.5rem !important; }
}
@media (max-width: 380px) {
  .h-sub { margin-top: .9rem !important; margin-bottom: 1rem !important; font-size: .84rem !important; line-height: 1.65 !important; }
  .btn-A, .btn-B { padding: .65rem 1.2rem !important; font-size: .66rem !important; }
  .h-rule { display: none !important; }
  .h-l3 { display: none !important; }
}

/* ── MOBILE — Partners marquee smaller padding ── */
@media (max-width: 480px) {
  .p-mi { padding: 0 2rem; min-width: 160px; height: 100px; }
  .p-nm { font-size: .55rem; }
  .p-ds { font-size: .76rem; max-width: 140px; }
}

/* ── MOBILE — Button text centering ── */
@media (max-width: 768px) {
  .seg-cta  { align-self: center; text-align: center; }
  .pc-foot  { justify-content: center; }
  .aa-roi-cta { display: block; text-align: center; }
  .btn-primary { display: block; text-align: center; }
}

