/* ═══════════════════════════════════════════════════════════
   APS NWA — Custom Stylesheet
   Visual Tactics: 30+ psychological visual patterns
   Production-grade animations, glassmorphism, depth layers
   ═══════════════════════════════════════════════════════════ */

/* ══════ BASE OVERRIDES ══════ */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: none;
}
::-webkit-scrollbar { display: none }
::selection { background: rgba(45,212,191,.25); color: #fff }

/* ══════ GRAFFITI BACKGROUND — Street Art Logo Mural ══════ */body {  background: url("/assets/graffiti-bg.svg") center top / cover no-repeat fixed, #06080b !important;}

/* ══════ KEYFRAMES ══════ */

/* Trust Marquee — Visual Tactic: Continuous Motion */
@keyframes marquee {
  0% { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}

/* Pulse dot — Visual Tactic: Animated urgency signal */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1) }
  50% { opacity: .4; transform: scale(1.8) }
}

/* Float — Visual Tactic: Organic ambient motion */
@keyframes float {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-12px) }
}

/* Glow border rotation — Visual Tactic: Premium animated border */
@keyframes glowBorder {
  to { --glow-angle: 360deg }
}

/* Shimmer — Visual Tactic: Loading state / attention */
@keyframes shimmer {
  0% { background-position: -200% 0 }
  100% { background-position: 200% 0 }
}

/* Fade up — Visual Tactic: Content reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px) }
  to { opacity: 1; transform: none }
}

/* Modal entrance */
@keyframes modalIn {
  from { opacity: 0; transform: scale(.94) translateY(20px) }
  to { opacity: 1; transform: none }
}

/* Grain texture — Visual Tactic: Premium tactile feel */
@keyframes grain {
  0%, 100% { transform: translate(0, 0) }
  10% { transform: translate(-5%, -10%) }
  20% { transform: translate(-15%, 5%) }
  30% { transform: translate(7%, -25%) }
  40% { transform: translate(-5%, 25%) }
  50% { transform: translate(-15%, 10%) }
  60% { transform: translate(15%, 0%) }
  70% { transform: translate(0%, 15%) }
  80% { transform: translate(3%, 35%) }
  90% { transform: translate(-10%, 10%) }
}

/* Service card border rotation */
@keyframes svcBorderSpin {
  to { --svc-angle: 360deg }
}

/* Counter number pop */
@keyframes numberPop {
  0% { transform: scale(1) }
  50% { transform: scale(1.06) }
  100% { transform: scale(1) }
}

/* ══════ CUSTOM CURSOR — Visual Tactic: Premium UX ══════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 100000;
  pointer-events: none;
  mix-blend-mode: difference;
}
.cursor__dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .15s ease;
}
.cursor__ring {
  position: absolute;
  top: -16px; left: -16px;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 50%;
  transition: width .3s cubic-bezier(.16,1,.3,1),
              height .3s cubic-bezier(.16,1,.3,1),
              top .3s cubic-bezier(.16,1,.3,1),
              left .3s cubic-bezier(.16,1,.3,1),
              border-color .3s ease,
              background .3s ease;
}
.cursor.hovering .cursor__ring {
  width: 64px; height: 64px;
  top: -28px; left: -28px;
  border-color: #2dd4bf;
  background: rgba(45,212,191,.06);
}
.cursor.clicking .cursor__dot {
  transform: translate(-50%, -50%) scale(.5);
}

/* ══════ GRAIN OVERLAY — Visual Tactic: Texture Depth ══════ */
.grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' 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;
  animation: grain .4s steps(5) infinite;
}

/* ══════ TRUST MARQUEE ══════ */
.trust-item {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: #2dd4bf;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item em {
  font-style: normal;
  color: rgba(255,255,255,.35);
}

/* ══════ NAVIGATION ══════ */
.nav-scrolled {
  background: rgba(6,8,11,.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  transition: color .25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: #2dd4bf;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover { color: #fff }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left }

/* ══════ BUTTONS — Visual Tactic: Von Restorff + Fitts's Law ══════ */
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background: #2dd4bf;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.btn-teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .4s ease;
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px #2dd4bf, 0 8px 36px rgba(45,212,191,.3), 0 2px 12px rgba(45,212,191,.15);
}
.btn-teal:hover::before { opacity: 1; animation: shimmer 1.5s ease infinite }
.btn-teal:active { transform: translateY(0); box-shadow: 0 0 0 1px #2dd4bf, 0 4px 16px rgba(45,212,191,.2) }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .35s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.btn-ghost:active { transform: translateY(0) }

/* ══════ MOBILE MENU ══════ */
.hamburger-line {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.mobile-menu {
  margin-top: 16px;
  padding: 20px;
  background: rgba(6,8,11,.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-link {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  padding: 10px 16px;
  border-radius: 8px;
  transition: all .2s ease;
}
.mobile-link:hover {
  background: rgba(45,212,191,.08);
  color: #2dd4bf;
}

/* ══════ QUICK SELECT BUTTONS ══════ */
.qs-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  text-decoration: none;
}
.qs-btn:hover {
  background: rgba(45,212,191,.1);
  border-color: rgba(45,212,191,.25);
  color: #2dd4bf;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* ══════ ABOUT CARDS — Visual Tactic: Accent Bar Reveal ══════ */
.about-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 28px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: #2dd4bf;
  opacity: 0;
  transition: opacity .3s ease;
}
.about-card:hover {
  border-color: rgba(45,212,191,.12);
  transform: translateX(8px);
}
.about-card:hover::before { opacity: 1 }

/* ══════ SERVICE CARDS — Visual Tactic: Gradient Border Spin ══════ */
@property --svc-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.svc-card {
  display: block;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 32px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: conic-gradient(from var(--svc-angle, 0deg), transparent 70%, rgba(45,212,191,.25) 80%, transparent 90%);
  z-index: -1;
  opacity: 0;
  transition: opacity .35s ease;
  animation: svcBorderSpin 6s linear infinite;
}
.svc-card:hover {
  border-color: rgba(45,212,191,.12);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.svc-card:hover::after { opacity: 1 }

/* ══════ PROOF CARDS ══════ */
.proof-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  transition: all .3s ease;
}
.proof-card:hover {
  border-color: rgba(45,212,191,.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

/* ══════ TESTIMONIAL CARDS ══════ */
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s ease;
}
.testimonial-card:hover {
  border-color: rgba(45,212,191,.1);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

/* ══════ WHY CARDS ══════ */
.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.why-card:hover {
  border-color: rgba(45,212,191,.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}

/* ══════ ESTIMATOR ══════ */
.estimator-box {
  position: relative;
}
.est-opt {
  padding: 16px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all .25s ease;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  font-family: inherit;
}
.est-opt:hover, .est-opt.selected {
  background: rgba(45,212,191,.1);
  border-color: rgba(45,212,191,.3);
  color: #2dd4bf;
  transform: translateY(-2px);
}

/* ══════ CITY PILLS — Visual Tactic: Interactive Tags ══════ */
.city-pill {
  padding: 12px 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  cursor: default;
}
.city-pill:hover {
  background: rgba(45,212,191,.1);
  border-color: rgba(45,212,191,.25);
  color: #2dd4bf;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ══════ FORM INPUTS ══════ */
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
}
.form-input:focus {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 3px rgba(45,212,191,.1);
}
.form-input::placeholder { color: rgba(255,255,255,.2) }
select.form-input option { background: #0b0d12; color: #fff }

/* ══════ SCROLL REVEAL STATES — Visual Tactic: Progressive Disclosure ══════ */
.rv {
  opacity: 0;
  transform: translateY(40px);
}
.rv-s {
  opacity: 0;
  transform: scale(.92) translateY(20px);
}
.rv.revealed {
  opacity: 1;
  transform: none;
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.rv-s.revealed {
  opacity: 1;
  transform: none;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}

/* ══════ STICKY CTA SHOW STATE ══════ */
#stickyCta.show { transform: translateY(0) !important }

/* ══════ GLOW BORDER ANIMATION ══════ */
@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.glow-border-anim {
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 60%, rgba(45,212,191,.3) 70%, transparent 80%);
  animation: glowBorder 6s linear infinite;
}

/* ══════ RESPONSIVE TWEAKS ══════ */
@media (max-width: 640px) {
  .trust-marquee { animation-duration: 20s }
  #stickyCta .btn-ghost { display: none }
}

/* ══════ SMOOTH LINK SCROLLING OFFSET ══════ */
[id] { scroll-margin-top: 80px }

/* ══════ PRINT STYLES — Marketing: Professional output ══════ */
@media print {
  .grain, #cursor, #scrollProgress, #stickyCta, #exitModal, #loader,
  .trust-bar, #urgencyBanner, .fixed { display: none !important }
  body { background: #fff; color: #000 }
  .btn-teal { background: #000; color: #fff }
}


/* ═══════════════════════════════════════════════════════════
   WORLD-CLASS UPGRADE — Additive Enhancements
   30+ new visual/UX/marketing patterns
   ═══════════════════════════════════════════════════════════ */

/* ══════ 1. SCROLL-DRIVEN TEXT REVEALS ══════ */
@keyframes charRevealWave {
  from { opacity: 0; transform: translateY(20px) rotateX(-60deg); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.char-reveal .char {
  display: inline-block;
  opacity: 0;
  animation: charRevealWave 0.6s cubic-bezier(.16,1,.3,1) forwards;
}
.char-reveal .char-space {
  display: inline-block;
  width: 0.3em;
}

/* ══════ 2. SECTION SNAP SCROLLING (desktop, proximity) ══════ */
@media (min-width: 1024px) {
  html.snap-enabled {
    scroll-snap-type: y proximity;
  }
  html.snap-enabled section {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
}

/* ══════ 3. GRADIENT TEXT HEADINGS ══════ */
.gradient-text {
  background: linear-gradient(135deg, #4ECDC4 0%, #2BA8A0 40%, #5eead4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════ 4. ANIMATED UNDERLINES ON HEADINGS ══════ */
.heading-underline {
  position: relative;
  display: inline-block;
}
.heading-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2dd4bf, #5eead4, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.heading-underline.revealed::after {
  transform: scaleX(1);
}

/* ══════ 5. GLASSMORPHISM CARDS ENHANCED ══════ */
.glass-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.glass-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(45,212,191,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ══════ 6. HOVER CARD LIFT WITH LIGHT REFLECTION ══════ */
@keyframes reflectionSweep {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.card-reflect {
  position: relative;
  overflow: hidden;
}
.card-reflect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 55%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.card-reflect:hover::before {
  opacity: 1;
  animation: reflectionSweep 1.2s ease;
}

/* ══════ 7. SECTION COLOR TRANSITION OVERLAYS ══════ */
.section-gradient-overlay {
  position: relative;
}
.section-gradient-overlay::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(45,212,191,0.02));
  pointer-events: none;
  z-index: 0;
}

/* ══════ 8. CUSTOM SCROLLBAR ══════ */
html.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #2dd4bf rgba(6,8,11,0.5);
}
html.custom-scrollbar::-webkit-scrollbar {
  display: block !important;
  width: 6px;
}
html.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(6,8,11,0.5);
}
html.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2dd4bf, #0d9488);
  border-radius: 3px;
}
html.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5eead4, #2dd4bf);
}

/* ══════ 9. PRINT STYLESHEET ENHANCEMENTS ══════ */
@media print {
  body { font-size: 12pt; line-height: 1.5; }
  section { page-break-inside: avoid; padding: 20px 0; }
  .before-after-section, .horizontal-portfolio, .testimonial-ticker,
  .floating-schedule-btn, #upgradeEasterEgg { display: none !important; }
  h1, h2, h3 { color: #000 !important; -webkit-text-fill-color: #000 !important; }
  .proof-card, .why-card, .about-card, .svc-card {
    border: 1px solid #ccc !important;
    background: #f9f9f9 !important;
    color: #000 !important;
  }
  .gradient-text {
    -webkit-text-fill-color: #0d9488 !important;
    color: #0d9488 !important;
  }
}

/* ══════ 10. REDUCED MOTION SUPPORT ══════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .trust-marquee { animation: none !important; }
  .grain { animation: none !important; }
  .rv, .rv-s { opacity: 1 !important; transform: none !important; }
  .char-reveal .char { opacity: 1 !important; transform: none !important; animation: none !important; }
  .cursor { display: none !important; }
  html { scroll-snap-type: none !important; }
}

/* ══════ 11. BEFORE/AFTER SLIDER ══════ */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider .ba-before,
.ba-slider .ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.ba-slider .ba-before {
  background: linear-gradient(135deg, #1a1215 0%, #2a1f1f 50%, #1f1a1a 100%);
  clip-path: inset(0 50% 0 0);
}
.ba-slider .ba-after {
  background: linear-gradient(135deg, #0a1f1c 0%, #0d2925 50%, #0a1a17 100%);
}
.ba-slider .ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #2dd4bf;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-slider .ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #2dd4bf;
  border: 3px solid #fff;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  pointer-events: none;
}
.ba-slider .ba-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.ba-before .ba-label {
  background: rgba(255,80,80,0.15);
  color: #ff8a8a;
  border: 1px solid rgba(255,80,80,0.2);
}
.ba-after .ba-label {
  background: rgba(45,212,191,0.15);
  color: #2dd4bf;
  border: 1px solid rgba(45,212,191,0.2);
}
.ba-slider .ba-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 6px;
}
.ba-slider .ba-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 200px;
}

/* ══════ 12. HORIZONTAL SCROLL PORTFOLIO ══════ */
.portfolio-track {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.portfolio-card {
  flex: 0 0 340px;
  height: 420px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.portfolio-card:hover {
  border-color: rgba(45,212,191,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.portfolio-card .card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.portfolio-card:hover .card-bg {
  transform: scale(1.05);
}
.portfolio-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(6,8,11,0.95) 0%, rgba(6,8,11,0.6) 60%, transparent 100%);
  z-index: 2;
}

/* ══════ 13. VALUE SECTION MINI CARDS ══════ */
.value-mini-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.value-mini-card:hover {
  background: rgba(45,212,191,0.06);
  border-color: rgba(45,212,191,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.value-mini-card .value-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.value-mini-card .value-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  margin-bottom: 4px;
}
.value-mini-card .value-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ══════ 14. TESTIMONIAL TICKER ══════ */
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track {
  display: flex;
  gap: 32px;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  flex-shrink: 0;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  max-width: 380px;
  min-width: 300px;
}
.ticker-item .ticker-quote {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 8px;
}
.ticker-item .ticker-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════ 15. LIVE PROJECT COUNTER DASHBOARD ══════ */
.live-counter-strip {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  padding: 24px 16px;
}
.live-counter-item {
  text-align: center;
}
.live-counter-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #2dd4bf;
  line-height: 1;
}
.live-counter-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.live-counter-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: #2dd4bf;
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
  margin-right: 6px;
}

/* ══════ 16. RENOVATION JOURNEY TIMELINE ══════ */
.journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journey-step {
  position: relative;
  padding: 24px 24px 24px 64px;
  border-left: 2px solid rgba(255,255,255,0.06);
  margin-left: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.journey-step:hover,
.journey-step.active {
  border-left-color: #2dd4bf;
  background: rgba(45,212,191,0.03);
  border-radius: 0 12px 12px 0;
}
.journey-step .step-marker {
  position: absolute;
  left: -13px;
  top: 28px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #06080b;
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}
.journey-step:hover .step-marker,
.journey-step.active .step-marker {
  border-color: #2dd4bf;
  background: rgba(45,212,191,0.1);
  color: #2dd4bf;
}
.journey-step .step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 4px;
}
.journey-step .step-time {
  font-size: 12px;
  color: #2dd4bf;
  margin-bottom: 8px;
}
.journey-step .step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.journey-step .step-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.16,1,.3,1), opacity 0.3s ease;
  opacity: 0;
}
.journey-step.active .step-detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}
.step-detail-inner {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) {
  .journey-timeline {
    flex-direction: row;
    gap: 0;
  }
  .journey-step {
    flex: 1;
    padding: 64px 20px 20px 20px;
    border-left: none;
    border-top: 2px solid rgba(255,255,255,0.06);
    margin-left: 0;
  }
  .journey-step:hover,
  .journey-step.active {
    border-top-color: #2dd4bf;
    border-radius: 0 0 12px 12px;
  }
  .journey-step .step-marker {
    left: 20px;
    top: -13px;
  }
}

/* ══════ 17. FAQ ACCORDION ══════ */
.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  background: rgba(255,255,255,0.02);
}
.faq-item:hover,
.faq-item.open {
  border-color: rgba(45,212,191,0.15);
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
}
.faq-question:hover { color: #fff; }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(45,212,191,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #2dd4bf;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.16,1,.3,1);
}
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ══════ 18. "WHY NOT US?" CONFIDENCE SECTION ══════ */
.confidence-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.confidence-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #2dd4bf;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.confidence-text {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ══════ 19. MATERIAL BRANDS SHOWCASE ══════ */
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 28px);
  color: rgba(255,255,255,0.15);
  transition: color 0.4s ease;
  white-space: nowrap;
}
.brand-name:hover {
  color: rgba(45,212,191,0.4);
}

/* ══════ 20. FLOATING SCHEDULE BUTTON ══════ */
.floating-schedule-btn {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9990;
  opacity: 0;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.floating-schedule-btn.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-schedule-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(45,212,191,0.9);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(45,212,191,0.3), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.floating-schedule-btn a:hover {
  background: #2dd4bf;
  box-shadow: 0 12px 40px rgba(45,212,191,0.4), 0 4px 12px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* ══════ 22. SECTION TRANSITION WIPE ══════ */
.section-wipe {
  position: relative;
  overflow: hidden;
}
.section-wipe::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45,212,191,0.04), transparent);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 0;
}
.section-wipe.wiped::after {
  transform: translateX(100%);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}

/* ══════ 24. MICRO-REWARD PULSE ══════ */
@keyframes sectionPulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,212,191,0.3); }
  70%  { box-shadow: 0 0 0 20px rgba(45,212,191,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,191,0); }
}
.section-pulse {
  animation: sectionPulse 0.8s ease-out;
}

/* ══════ 25. APS VS INDUSTRY STATS ══════ */
.stat-compare {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-compare-label {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
}
.stat-compare-label:first-child {
  background: rgba(255,255,255,0.02);
}
.stat-compare-label:last-child {
  background: rgba(45,212,191,0.06);
  border-left: 1px solid rgba(45,212,191,0.1);
}
.stat-compare-label .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-compare-label:first-child .stat-value {
  color: rgba(255,255,255,0.3);
}
.stat-compare-label:last-child .stat-value {
  color: #2dd4bf;
}
.stat-compare-label .stat-entity {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ══════ 26. EASTER EGG ══════ */
.easter-egg-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.easter-egg-section.revealed {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ══════ 27. CONTENT VISIBILITY FOR PERFORMANCE ══════ */
.cv-auto {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ══════ 29. SKIP TO CONTENT ══════ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: #2dd4bf;
  color: #000;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999999;
  transition: top 0.3s ease;
  text-decoration: none;
}
.skip-to-content:focus {
  top: 0;
}

/* ══════ 30. SOCIAL PROOF ESCALATION COUNTER ══════ */
.escalation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(45,212,191,0.08);
  border: 1px solid rgba(45,212,191,0.15);
  color: #2dd4bf;
}

/* ══════ ADDITIONAL: PROJECT COUNTER BADGE GLOW ══════ */
@keyframes counterGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(45,212,191,0.1); }
  50%      { box-shadow: 0 0 40px rgba(45,212,191,0.2); }
}
.counter-glow {
  animation: counterGlow 3s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════════════════
   ENHANCEMENT CSS — 10 New Sections & Features
   ═══════════════════════════════════════════════════════════ */

/* ══════ ENHANCEMENT 1: ROI CALCULATOR ══════ */
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  outline: none;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2dd4bf;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(45,212,191,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.roi-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(45,212,191,0.6), 0 2px 12px rgba(0,0,0,0.4);
  transform: scale(1.1);
}
.roi-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2dd4bf;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(45,212,191,0.4), 0 2px 8px rgba(0,0,0,0.3);
}
@keyframes roiPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.roi-number-animate {
  animation: roiPulse 0.4s ease;
}

/* ══════ ENHANCEMENT 2: VIRTUAL PROJECT TIMELINE ══════ */
.timeline-scroll-container {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 16px;
}
.timeline-scroll-container::-webkit-scrollbar { display: none; }
.timeline-track {
  display: flex;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding: 20px 0 0 0;
}
.timeline-line {
  position: absolute;
  top: 30px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(45,212,191,0.1), rgba(45,212,191,0.3), rgba(45,212,191,0.1));
}
.timeline-week {
  flex: 0 0 auto;
  width: 200px;
  padding: 0 12px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(45,212,191,0.15);
  border: 2px solid rgba(45,212,191,0.3);
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.timeline-week.active .timeline-dot,
.timeline-week:hover .timeline-dot {
  background: #2dd4bf;
  border-color: #2dd4bf;
  box-shadow: 0 0 16px rgba(45,212,191,0.5);
}
@keyframes timelinePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,212,191,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(45,212,191,0); }
}
.timeline-week.active .timeline-dot {
  animation: timelinePulse 2s ease infinite;
}
.timeline-week-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(45,212,191,0.5);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.timeline-week.active .timeline-week-label,
.timeline-week:hover .timeline-week-label {
  color: #2dd4bf;
}
.timeline-week-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}
.timeline-week.active .timeline-week-title {
  color: #fff;
}
.timeline-week-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.16,1,.3,1), opacity 0.3s ease;
  opacity: 0;
}
.timeline-week.active .timeline-week-detail {
  max-height: 200px;
  opacity: 1;
}
.timeline-week-detail p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  padding-top: 8px;
  text-align: left;
}

/* ══════ ENHANCEMENT 3: NEIGHBORHOOD MAP CARDS ══════ */
.map-city-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.map-city-card:hover {
  background: rgba(45,212,191,0.05);
  border-color: rgba(45,212,191,0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.map-pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  margin: 0 auto 10px;
  position: relative;
}
.map-pin-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(45,212,191,0.3);
  animation: timelinePulse 2.5s ease infinite;
}

/* ══════ ENHANCEMENT 4: MATERIAL QUALITY SHOWCASE ══════ */
.material-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.material-card:hover {
  border-color: rgba(45,212,191,0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.material-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.material-card:hover .material-bg {
  transform: scale(1.08);
}
.material-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
  background: linear-gradient(to top, rgba(6,8,11,0.95) 30%, rgba(6,8,11,0.4) 80%, transparent);
}

/* ══════ ENHANCEMENT 5: AWARD BADGES ══════ */
.award-badge {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.award-badge:hover {
  background: rgba(45,212,191,0.04);
  border-color: rgba(45,212,191,0.15);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(45,212,191,0.08);
}
.award-shield {
  margin-bottom: 4px;
}

/* ══════ ENHANCEMENT 6: FINANCING CARDS ══════ */
.financing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.financing-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
.financing-card-featured {
  background: rgba(212,168,45,0.04);
  border-color: rgba(212,168,45,0.2);
}
.financing-card-featured:hover {
  background: rgba(212,168,45,0.08);
  border-color: rgba(212,168,45,0.35);
  box-shadow: 0 12px 36px rgba(212,168,45,0.1);
}
.financing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: #d4a82d;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ══════ ENHANCEMENT 7: SOCIAL PROOF NOTIFICATIONS ══════ */
.social-proof-notif {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(11,13,18,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), opacity 0.4s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.social-proof-notif.visible {
  transform: translateX(0);
  opacity: 1;
}
.social-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  flex-shrink: 0;
  animation: pulseDot 2s ease infinite;
}
@media (max-width: 640px) {
  .social-proof-notif {
    bottom: 80px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* ══════ ENHANCEMENT 8: STICKY MOBILE CTA BAR ══════ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  background: rgba(6,8,11,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.mobile-sticky-bar.visible {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }
}
.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-sticky-call {
  background: #2dd4bf;
  color: #000;
}
.mobile-sticky-call:hover {
  background: #14b8a6;
}
.mobile-sticky-estimate {
  background: rgba(212,168,45,0.9);
  color: #000;
}
.mobile-sticky-estimate:hover {
  background: #d4a82d;
}

/* ══════ ENHANCEMENT 9: GUARANTEE CARDS ══════ */
.guarantee-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.guarantee-card:hover {
  background: rgba(45,212,191,0.04);
  border-color: rgba(45,212,191,0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.guarantee-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

/* ══════ ENHANCEMENT 10: EXIT INTENT MODAL GLOW ══════ */
.exit-modal-inner {
  border-color: rgba(45,212,191,0.2) !important;
}
@keyframes exitGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(45,212,191,0.08); }
  50% { box-shadow: 0 0 80px rgba(45,212,191,0.15); }
}
.exit-modal-inner {
  animation: modalIn 0.4s ease, exitGlow 3s ease-in-out infinite;
}
