/* ================================================================
   DAÑOS POR AGUA USA — Production Styles
   ================================================================ */

:root {
  /* Core palette — deep ocean meets electric emergency */
  --abyss: #02060f;
  --midnight: #061327;
  --deep: #0a1e3d;
  --ocean: #0f3460;
  --steel: #1e4a7a;
  
  --cyan: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.4);
  --aqua: #4fd1c5;
  --ice: #a8e6ff;
  
  --emergency: #ff3838;
  --emergency-bright: #ff5252;
  --emergency-glow: rgba(255, 56, 56, 0.5);
  --warn: #ffb800;
  
  --white: #ffffff;
  --paper: #f0f6ff;
  --muted: #8aa1c1;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --container: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--abyss);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ========== ANIMATED WATER BACKGROUND ========== */
.water-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(ellipse at top, var(--ocean) 0%, var(--midnight) 50%, var(--abyss) 100%);
  overflow: hidden;
}

.water-bg::before, .water-bg::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  mix-blend-mode: screen;
}

.water-bg::before {
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: float-blob-1 20s ease-in-out infinite;
}

.water-bg::after {
  background: radial-gradient(circle, var(--aqua) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
  animation: float-blob-2 25s ease-in-out infinite;
}

@keyframes float-blob-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(200px, 100px) scale(1.1); }
  66% { transform: translate(-100px, 200px) scale(0.9); }
}

@keyframes float-blob-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-200px, -150px) scale(1.2); }
}

/* Animated ripples canvas */
#ripple-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

/* Floating bubbles */
.bubbles { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(0,212,255,0.05) 60%, transparent);
  border: 1px solid rgba(255,255,255,0.06);
  animation: rise linear infinite;
}

@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(var(--drift, 50px)); opacity: 0; }
}

/* ========== TOP STRIP ========== */
.top-strip {
  background: linear-gradient(90deg, var(--emergency) 0%, var(--emergency-bright) 50%, var(--emergency) 100%);
  background-size: 200% 100%;
  animation: gradient-slide 4s linear infinite;
  color: white;
  font-size: 0.85rem;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
}

@keyframes gradient-slide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.top-strip a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-strip .pulse-emoji {
  display: inline-block;
  animation: pulse-emoji 1.5s ease-in-out infinite;
}

@keyframes pulse-emoji {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 19, 39, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px var(--cyan-glow);
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--cyan-glow); }
  50% { box-shadow: 0 0 35px var(--cyan-glow), 0 0 60px rgba(0,212,255,0.3); }
}

.logo-mark svg { color: var(--abyss); }

.logo .usa-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active { color: var(--cyan); }

/* Nav call button — SHINING */
.nav-call {
  position: relative;
  background: linear-gradient(135deg, var(--emergency) 0%, var(--emergency-bright) 100%);
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
  overflow: hidden;
  transition: transform 0.2s;
  box-shadow: 0 4px 20px var(--emergency-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.nav-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.nav-call:hover { transform: translateY(-2px) scale(1.02); }

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ========== HERO — CINEMATIC ========== */
.hero {
  position: relative;
  padding: 100px 32px 140px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background photo layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  animation: hero-zoom 20s ease-in-out infinite;
  filter: contrast(1.1) brightness(0.85) saturate(1.2);
}

@keyframes hero-zoom {
  0%, 100% { transform: scale(1.05); }
  50% { transform: scale(1.12); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(2,6,15,0.92) 0%, rgba(6,19,39,0.75) 35%, rgba(10,30,61,0.4) 65%, rgba(2,6,15,0.7) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(0,212,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,56,56,0.1) 0%, transparent 50%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.6;
}

/* Floating water drop SVG */
.hero-drop {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 180px;
  height: 240px;
  z-index: 2;
  filter: drop-shadow(0 0 40px var(--cyan-glow));
  animation: drop-float 6s ease-in-out infinite;
  opacity: 0.8;
  pointer-events: none;
}

@keyframes drop-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* Rain droplets falling */
.rain-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.raindrop {
  position: absolute;
  left: var(--x);
  top: -20px;
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--cyan));
  opacity: 0;
  animation: rain-fall var(--d) linear var(--dl) infinite;
  filter: drop-shadow(0 0 4px var(--cyan));
}

@keyframes rain-fall {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(110vh); opacity: 0; }
}

/* Hero inner grid */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  position: relative;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.eyebrow-hero {
  background: rgba(2, 6, 15, 0.6);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  animation: dot-pulse 1.5s infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Kinetic headline with split-word reveal */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: word-rise 0.9s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

.hero-headline em {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--ice) 50%, var(--aqua) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: word-rise 0.9s cubic-bezier(0.2, 0.8, 0.3, 1) forwards, text-shimmer 4s ease-in-out infinite;
  opacity: 0;
  transform: translateY(100%);
}

@keyframes word-rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes text-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Stagger word delays */
.line-1 .word:nth-child(1) { animation-delay: 0.1s; }
.line-1 .word:nth-child(2) { animation-delay: 0.18s; }
.line-1 .word:nth-child(3) { animation-delay: 0.26s; }
.line-2 .word:nth-child(1) { animation-delay: 0.34s; }
.line-2 .word:nth-child(2) { animation-delay: 0.42s; }
.line-3 em { animation-delay: 0.55s, 0s; }
.line-3 .word:nth-child(2) { animation-delay: 0.68s; }

/* Lead text */
.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  animation: slide-up 0.8s 0.9s forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-lead strong { color: var(--cyan); font-weight: 600; }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA row */
.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: slide-up 0.8s 1.1s forwards;
}

/* MEGA CALL BUTTON */
.btn-call-mega {
  position: relative;
  background: linear-gradient(135deg, var(--emergency) 0%, var(--emergency-bright) 100%);
  color: white;
  padding: 22px 36px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.01em;
  overflow: hidden;
  box-shadow: 
    0 10px 40px var(--emergency-glow),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.15);
  animation: mega-pulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}

@keyframes mega-pulse {
  0%, 100% { 
    box-shadow: 0 10px 40px var(--emergency-glow), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -2px 0 rgba(0,0,0,0.15);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 15px 60px var(--emergency-glow), 0 0 80px var(--emergency-glow), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -2px 0 rgba(0,0,0,0.15);
    transform: scale(1.02);
  }
}

.btn-call-mega::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: rotate(20deg);
  animation: mega-shine 3s infinite;
}

@keyframes mega-shine {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

.btn-call-mega:hover { transform: translateY(-3px) scale(1.03); }

.btn-call-mega .phone-icon {
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-ring 1.5s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

.btn-ghost {
  color: white;
  padding: 22px 28px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  background: rgba(2,6,15,0.5);
  backdrop-filter: blur(20px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Floating glass stat chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(2, 6, 15, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  opacity: 0;
  animation: chip-in 0.7s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
  transition: transform 0.25s, border-color 0.25s;
}

.chip:hover {
  transform: translateY(-3px);
  border-color: rgba(0,212,255,0.5);
}

.chip-1 { animation-delay: 1.3s; }
.chip-2 { animation-delay: 1.45s; }
.chip-3 { animation-delay: 1.6s; }
.chip-4 { animation-delay: 1.75s; }

@keyframes chip-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chip-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,212,255,0.05));
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.chip-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
}

.chip-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.chip-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Hero side (floating card area) */
.hero-side {
  position: relative;
  opacity: 0;
  animation: slide-in-right 1s 0.7s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-card {
  position: relative;
  margin: 0 auto;
  max-width: 380px;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(0,212,255,0.5), transparent 40%, rgba(0,212,255,0.3));
  border-radius: 24px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(15px);
  animation: card-glow 4s ease-in-out infinite;
}

@keyframes card-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.ec-pulse-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
}

.ec-pulse-strip .live-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80;
  position: relative;
}

.ec-pulse-strip .live-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0.6;
  animation: live-ping 1.5s infinite;
}

/* Live ticker bar at bottom of hero */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(180deg, transparent, rgba(2,6,15,0.9));
  padding-top: 40px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-label {
  flex-shrink: 0;
  background: var(--emergency);
  color: white;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 32px;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.ticker-label .live-dot {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.ticker-label .live-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  animation: live-ping 1.5s infinite;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255,56,56,0.4);
  background: rgba(2,6,15,0.6);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  position: relative;
}

.ticker-track::before,
.ticker-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-track::before {
  left: 0;
  background: linear-gradient(90deg, var(--abyss), transparent);
}

.ticker-track::after {
  right: 0;
  background: linear-gradient(270deg, var(--abyss), transparent);
}

.ticker-row {
  display: inline-flex;
  gap: 40px;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-block;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Override floating-emergency-card position rules for hero-card variant */
.hero-card.floating-emergency-card {
  position: relative;
  width: auto;
  right: auto;
  bottom: auto;
}

.hero-card .ec-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.hero-card .ec-phone {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, white, var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  line-height: 1;
}

.hero-card .ec-cta {
  display: block;
  background: linear-gradient(135deg, var(--emergency), var(--emergency-bright));
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--emergency-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  margin-bottom: 20px;
  transition: transform 0.2s;
}

.hero-card .ec-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 2.5s infinite;
}

.hero-card .ec-cta:hover { transform: translateY(-2px); }

.hero-card .ec-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 0.85rem;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-card .ec-meta-item .lbl {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.hero-card .ec-meta-item .val { color: white; font-weight: 500; font-size: 0.9rem; }

.emergency-card {
  position: relative;
  background: rgba(15, 52, 96, 0.4);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 
    0 25px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0.6;
  animation: live-ping 1.5s infinite;
}

@keyframes live-ping {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.ec-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.ec-phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, white, var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
  line-height: 1;
}

.ec-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.ec-cta {
  display: block;
  background: linear-gradient(135deg, var(--emergency), var(--emergency-bright));
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--emergency-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s;
}

.ec-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 2.5s infinite;
}

.ec-cta:hover { transform: translateY(-2px); }

.ec-divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

.ec-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-size: 0.85rem;
}

.ec-meta-item .lbl {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.ec-meta-item .val { color: white; font-weight: 500; }

/* ========== VAN STAGE (hero image) ========== */
.van-stage {
  position: relative;
  width: 100%;
}

.van-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
  background: var(--midnight);
  aspect-ratio: 16/10;
}

.van-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: van-breathe 8s ease-in-out infinite;
}

@keyframes van-breathe {
  0%, 100% { transform: scale(1.02); }
  50% { transform: scale(1.06); }
}

.van-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, transparent 40%, rgba(2,6,15,0.7) 100%),
    linear-gradient(90deg, rgba(2,6,15,0.3) 0%, transparent 30%);
  pointer-events: none;
}

.van-overlay-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 6, 15, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
}

/* Floating card sits offset to the right of the van */
.floating-emergency-card {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 320px;
  background: rgba(6, 19, 39, 0.85);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0, 212, 255, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.1);
  z-index: 3;
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.floating-emergency-card .ec-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.floating-emergency-card .ec-phone {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, white, var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 18px;
  text-decoration: none;
  line-height: 1;
}

.floating-emergency-card .ec-cta {
  display: block;
  background: linear-gradient(135deg, var(--emergency), var(--emergency-bright));
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--emergency-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  margin-bottom: 18px;
  transition: transform 0.2s;
}

.floating-emergency-card .ec-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 2.5s infinite;
}

.floating-emergency-card .ec-cta:hover { transform: translateY(-2px); }

.floating-emergency-card .ec-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 0.8rem;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.floating-emergency-card .ec-meta-item .lbl {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.floating-emergency-card .ec-meta-item .val { color: white; font-weight: 500; font-size: 0.85rem; }

/* ========== SECTIONS ========== */
section { position: relative; padding: 100px 32px; }

.section-inner { max-width: var(--container); margin: 0 auto; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

/* ========== STATS / COUNTERS ========== */
.stats-band {
  padding: 60px 32px;
  background: 
    linear-gradient(180deg, transparent, rgba(0,212,255,0.03)),
    rgba(0,0,0,0.2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-item .counter {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
}

.counter-item .counter-suffix {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
}

.counter-item .label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 16px;
}

/* ========== MAP ========== */
.map-section {
  padding: 120px 32px;
}

.map-wrapper {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(15, 52, 96, 0.25);
  backdrop-filter: blur(30px);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 60px;
  overflow: hidden;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
}

#us-map {
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
}

#us-map .state {
  fill: rgba(0, 212, 255, 0.08);
  stroke: rgba(0, 212, 255, 0.4);
  stroke-width: 0.8;
  transition: all 0.25s;
  cursor: pointer;
}

#us-map .state:hover {
  fill: var(--cyan);
  stroke: var(--white);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 20px var(--cyan-glow));
}

#us-map .state-label {
  fill: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  pointer-events: none;
  text-anchor: middle;
}

.map-tooltip {
  position: fixed;
  background: var(--abyss);
  border: 1px solid var(--cyan);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 500; /* Below modal (1000) — never overlap a modal */
  white-space: nowrap;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px var(--cyan-glow);
}

.map-tooltip.visible { opacity: 1; }

/* On touch devices, tooltip is useless — tap opens modal directly */
@media (hover: none), (pointer: coarse) {
  .map-tooltip { display: none !important; }
}

/* When modal is open, hide tooltip even on desktop */
body.modal-open .map-tooltip { opacity: 0 !important; visibility: hidden !important; }

.map-tooltip .tt-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 400;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legend-item { display: flex; align-items: center; gap: 10px; }

.legend-swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  background: rgba(15, 52, 96, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(15, 52, 96, 0.4);
}

.process-card:hover::before { transform: scaleX(1); }

.process-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: rgba(6, 19, 39, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.4);
}

.service-card:hover::after { opacity: 0.6; }

.service-icon {
  position: relative;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,212,255,0.05));
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--cyan);
  z-index: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.service-card:hover .arrow svg { transform: translateX(4px); }
.service-card .arrow svg { transition: transform 0.2s; }

/* English subtitle for each service */
.service-en {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

/* Featured service card (24/7) */
.service-card-featured {
  background: linear-gradient(135deg, rgba(255, 56, 56, 0.12), rgba(15, 52, 96, 0.4));
  border-color: rgba(255, 56, 56, 0.3);
  position: relative;
}

.service-card-featured::after {
  background: radial-gradient(circle, rgba(255, 56, 56, 0.3) 0%, transparent 70%);
}

.service-card-featured:hover {
  border-color: var(--emergency-bright);
  box-shadow: 0 20px 50px rgba(255, 56, 56, 0.2);
}

.service-card-featured .service-icon {
  background: linear-gradient(135deg, rgba(255, 56, 56, 0.2), rgba(255, 56, 56, 0.05));
  border-color: rgba(255, 56, 56, 0.4);
  color: var(--emergency-bright);
}

.service-card-featured .service-en {
  color: var(--emergency-bright);
}

.service-card-featured .arrow {
  color: var(--emergency-bright);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--emergency);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.12em;
  z-index: 2;
  box-shadow: 0 4px 12px var(--emergency-glow);
  animation: badge-pulse 2s ease-in-out infinite;
}

/* Service card with photo header */
.service-card-photo {
  padding-top: 0;
  overflow: hidden;
}

.service-photo {
  position: relative;
  margin: -36px -32px 24px;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.service-photo-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, transparent 50%, rgba(6, 19, 39, 0.95) 100%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.service-card-photo .service-icon {
  margin-top: -28px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  border-color: var(--cyan);
  color: var(--abyss);
  box-shadow: 0 8px 25px var(--cyan-glow);
}

/* When a card is BOTH featured (24/7) AND has a photo, use the emergency red treatment */
.service-card-featured.service-card-photo .service-photo-overlay {
  background: 
    linear-gradient(180deg, transparent 50%, rgba(6, 19, 39, 0.95) 100%),
    linear-gradient(135deg, rgba(255, 56, 56, 0.18), transparent 60%);
}

.service-card-featured.service-card-photo .service-icon {
  background: linear-gradient(135deg, var(--emergency), var(--emergency-bright));
  border-color: var(--emergency);
  color: white;
  box-shadow: 0 8px 25px var(--emergency-glow);
}

/* Badge position when on a photo card */
.service-card-photo .service-badge {
  top: 16px;
  right: 16px;
  z-index: 3;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ========== TRUST / TESTIMONIALS ========== */
.trust-section {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ========== TEAM BLOCK ========== */
.team-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 40px;
}

.team-photo-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(0,212,255,0.15),
    0 0 80px rgba(0,212,255,0.1);
  aspect-ratio: 1;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.team-photo-wrap:hover .team-photo { transform: scale(1.04); }

.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, transparent 60%, rgba(2,6,15,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.team-photo-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 6, 15, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.team-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.team-content h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.team-lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.team-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.check-item svg {
  flex-shrink: 0;
  color: var(--cyan);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  padding: 4px;
  margin-top: 2px;
}

.check-item strong { color: white; font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.review-card {
  background: rgba(15, 52, 96, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 5rem;
  color: var(--cyan);
  opacity: 0.2;
  line-height: 1;
}

.stars {
  color: var(--warn);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--abyss);
  font-family: var(--font-display);
}

.review-author .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author .name { color: white; font-weight: 600; }
.review-author .loc { color: var(--muted); font-size: 0.75rem; }

/* ========== FAQ ========== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(15, 52, 96, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:hover { border-color: rgba(0,212,255,0.3); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: white;
  text-align: left;
  padding: 26px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cyan); color: var(--abyss); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
  line-height: 1.7;
  padding: 0 32px;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 32px 26px;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 120px 32px;
  text-align: center;
  position: relative;
  background: 
    radial-gradient(ellipse at center, rgba(255,56,56,0.15), transparent 60%);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--emergency-bright);
}

.final-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-call-titan {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--emergency), var(--emergency-bright));
  color: white;
  padding: 28px 56px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 60px var(--emergency-glow),
    0 0 100px var(--emergency-glow),
    inset 0 2px 0 rgba(255,255,255,0.25),
    inset 0 -3px 0 rgba(0,0,0,0.2);
  animation: titan-pulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}

@keyframes titan-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.btn-call-titan::before {
  content: '';
  position: absolute;
  top: -100%; left: -100%;
  width: 60%; height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: rotate(20deg);
  animation: titan-shine 3s infinite;
}

@keyframes titan-shine {
  0% { left: -100%; }
  60%, 100% { left: 200%; }
}

.btn-call-titan:hover { transform: scale(1.05); }

.btn-call-titan .phone-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-ring 1.5s ease-in-out infinite;
}

/* ========== FLOATING TAP-TO-CALL ========== */
/* ========== FLOATING TAP-TO-CALL — IMPRESSIVE EDITION ========== */
.floating-call-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.floating-call-wrap > * { pointer-events: auto; }

/* Animated tooltip/label that sits above the button */
.floating-call-badge {
  background: var(--abyss);
  border: 1px solid rgba(255, 56, 56, 0.4);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: badge-slide 4s ease-in-out infinite;
  position: relative;
  transform-origin: bottom right;
}

.floating-call-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 30px;
  width: 12px;
  height: 12px;
  background: var(--abyss);
  border-right: 1px solid rgba(255, 56, 56, 0.4);
  border-bottom: 1px solid rgba(255, 56, 56, 0.4);
  transform: rotate(45deg);
}

@keyframes badge-slide {
  0%, 90%, 100% { opacity: 1; transform: translateY(0) scale(1); }
  95% { opacity: 0.85; transform: translateY(-4px) scale(1.03); }
}

.floating-call-badge .live-dot {
  width: 7px;
  height: 7px;
  background: var(--emergency-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emergency-bright);
}

.floating-call-badge .live-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--emergency-bright);
  opacity: 0.5;
  animation: live-ping 1.5s infinite;
}

/* Main button container */
.floating-call {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--emergency) 0%, var(--emergency-bright) 100%);
  color: white;
  padding: 14px 24px 14px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 
    0 16px 50px rgba(255, 56, 56, 0.5),
    0 0 60px rgba(255, 56, 56, 0.4),
    inset 0 2px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
  overflow: visible;
  letter-spacing: -0.01em;
}

.floating-call:hover { transform: scale(1.04); }
.floating-call:active { transform: scale(0.98); }

/* Multiple expanding rings */
.floating-call::before,
.floating-call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid var(--emergency);
  pointer-events: none;
}

.floating-call::before {
  animation: ring-expand 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.floating-call::after {
  animation: ring-expand 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite 1.25s;
}

@keyframes ring-expand {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Shine sweep */
.floating-call .shine-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  border-radius: 100px;
  animation: float-shine 3s infinite;
  pointer-events: none;
}

@keyframes float-shine {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

/* Icon orb with ringing phone */
.floating-call .icon-orb {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.2);
}

.floating-call .icon-orb svg {
  animation: phone-ring 1.5s ease-in-out infinite;
}

/* Animated sound waves emanating from icon */
.floating-call .icon-orb .sound-wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  opacity: 0;
  animation: sound-wave 1.5s ease-out infinite;
}

.floating-call .icon-orb .sound-wave:nth-child(2) { animation-delay: 0.5s; }
.floating-call .icon-orb .sound-wave:nth-child(3) { animation-delay: 1s; }

@keyframes sound-wave {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Text label structure */
.floating-call .text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.floating-call .text-block .tiny {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.floating-call .text-block .big {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ========== CALL MODAL ========== */
.call-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 15, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: backdrop-in 0.2s ease;
  /* Use dynamic viewport for proper mobile sizing */
  height: 100vh;
  height: 100dvh;
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.call-modal-backdrop.open { display: flex; }

.call-modal {
  background: linear-gradient(180deg, var(--ocean) 0%, var(--midnight) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px var(--cyan-glow);
  animation: modal-in 0.3s ease;
  /* Modal becomes a flex column so we can pin the CTA to bottom */
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow: hidden;
}

/* Scrollable body */
.modal-body {
  padding: 48px 40px 24px;
  overflow-y: visible;
  flex: 1 1 auto;
  min-height: 0;
}

/* Sticky footer with the CTAs — always visible */
.modal-footer {
  flex-shrink: 0;
  padding: 20px 40px calc(20px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, var(--midnight) 30%);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 3;
}

.modal-close:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }

.modal-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,184,0,0.2), rgba(255,184,0,0.05));
  border: 1px solid rgba(255,184,0,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warn);
  margin: 0 auto 20px;
}

.call-modal h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
}

.call-modal h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--warn);
}

.call-modal p {
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.modal-disclaimer {
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 12px;
  padding: 16px 18px !important;
  text-align: left !important;
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.88) !important;
  position: relative;
  line-height: 1.55 !important;
}

.modal-features {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 8px;
}

.modal-features li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  line-height: 1.5;
}

.modal-features li:last-child { margin-bottom: 0; }

.modal-features li svg {
  flex-shrink: 0;
  color: var(--cyan);
  margin-top: 2px;
}

.modal-features li strong { color: white; }

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}

.modal-call-btn {
  background: linear-gradient(135deg, var(--emergency) 0%, var(--emergency-bright) 50%, var(--emergency) 100%);
  background-size: 200% 200%;
  color: white;
  padding: 20px 22px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 
    0 14px 40px var(--emergency-glow), 
    0 0 60px var(--emergency-glow),
    inset 0 2px 0 rgba(255,255,255,0.3),
    inset 0 -2px 0 rgba(0,0,0,0.15);
  position: relative;
  overflow: visible;
  transition: transform 0.2s;
  white-space: nowrap;
  animation: modal-btn-breathe 1.6s ease-in-out infinite, modal-btn-gradient 4s ease infinite;
  isolation: isolate;
}

/* Main shine sweep */
.modal-call-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
  animation: modal-btn-shine 2s ease-in-out infinite;
  border-radius: 14px;
  pointer-events: none;
  z-index: 1;
}

/* Pulsing outer ring */
.modal-call-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  border: 2px solid var(--emergency-bright);
  animation: modal-btn-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
  z-index: -1;
}

.modal-call-btn > * { position: relative; z-index: 2; }

@keyframes modal-btn-breathe {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 14px 40px var(--emergency-glow), 0 0 60px var(--emergency-glow), inset 0 2px 0 rgba(255,255,255,0.3), inset 0 -2px 0 rgba(0,0,0,0.15);
  }
  50% { 
    transform: scale(1.025);
    box-shadow: 0 18px 50px var(--emergency-glow), 0 0 100px var(--emergency-glow), 0 0 140px rgba(255,56,56,0.3), inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.15);
  }
}

@keyframes modal-btn-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes modal-btn-shine {
  0% { left: -60%; }
  60%, 100% { left: 110%; }
}

@keyframes modal-btn-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.12); opacity: 0; }
}

.modal-call-btn:hover { 
  transform: translateY(-2px) scale(1.03);
  animation-play-state: paused;
}

.modal-call-btn:active { transform: scale(0.98); }

/* Ringing phone icon inside button */
.modal-call-btn svg {
  animation: phone-ring 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

.modal-cancel {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  border: 1px solid var(--line-strong);
  padding: 12px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-cancel:hover { background: rgba(255,255,255,0.08); color: white; }

/* ========== FOOTER ========== */
footer {
  background: var(--abyss);
  border-top: 1px solid var(--line);
  padding: 80px 32px 40px;
  position: relative;
}

.footer-inner { max-width: var(--container); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  max-width: 360px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white !important;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.02em;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { min-height: auto; padding: 80px 32px 200px; }
  .hero-drop { width: 120px; height: 160px; top: 60px; right: 20px; }
  .hero-side { max-width: 480px; margin: 0 auto; }
  .process-grid, .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .map-wrapper { padding: 40px 24px; }
  .floating-emergency-card { right: 20px; bottom: -30px; }
  .team-block { grid-template-columns: 1fr; gap: 50px; }
  .team-photo-wrap { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 720px) {
  /* Body gets bottom padding so floating call doesn't cover content */
  body { padding-bottom: 120px; }
  
  .nav-inner { padding: 14px 20px; gap: 8px; }
  .logo { font-size: 1.1rem; gap: 8px; }
  .logo-mark { width: 34px; height: 34px; }
  .logo .usa-tag { font-size: 0.62rem; padding: 2px 6px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(6, 19, 39, 0.98);
    backdrop-filter: blur(30px);
    padding: 24px 32px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
  }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-call { display: none; }
  
  /* Hero mobile */
  .hero { padding: 50px 20px 180px; min-height: auto; }
  .hero-headline { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .hero-lead { font-size: 1.02rem; margin-bottom: 32px; }
  .hero-cta-row { gap: 12px; margin-bottom: 32px; }
  .btn-call-mega { padding: 18px 26px; font-size: 1.05rem; width: 100%; justify-content: center; }
  .btn-ghost { padding: 16px 20px; width: 100%; justify-content: center; }
  .hero-drop { display: none; }
  .hero-chips { gap: 10px; }
  .chip { padding: 10px 14px 10px 12px; }
  .chip-icon { width: 30px; height: 30px; }
  .chip-num { font-size: 0.9rem; }
  .chip-label { font-size: 0.58rem; }
  
  /* Hero ticker mobile — small LIVE pill, scrolling text gets the rest */
  .hero-ticker { 
    padding-top: 24px; 
    align-items: center;
    gap: 0;
  }
  .ticker-label { 
    margin-left: 12px;
    padding: 5px 10px; 
    font-size: 0.58rem;
    border-radius: 6px;
    gap: 6px;
    flex-shrink: 0;
  }
  .ticker-label .label-text { display: none; }
  .ticker-label::after {
    content: 'LIVE';
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .ticker-track { 
    padding: 10px 0;
    margin-left: 8px;
  }
  .ticker-track::before,
  .ticker-track::after { width: 30px; }
  .ticker-item { font-size: 0.78rem; }
  .ticker-row { animation-duration: 30s; gap: 28px; }
  
  /* Hero card mobile */
  .hero-card .ec-phone { font-size: 1.8rem; }
  
  section, .map-section { padding: 70px 20px; }
  .section-head { margin-bottom: 50px; }
  .map-wrapper { padding: 24px 16px; border-radius: 20px; }
  .process-grid, .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  
  /* Floating call — mobile is a wide bar */
  .floating-call-wrap { bottom: 16px; right: 12px; left: 12px; align-items: stretch; }
  .floating-call { 
    width: 100%; 
    justify-content: center; 
    padding: 16px 22px 16px 16px; 
    font-size: 1rem;
    gap: 14px;
  }
  .floating-call .icon-orb { width: 44px; height: 44px; }
  .floating-call .text-block .big { font-size: 1.1rem; }
  .floating-call .text-block .tiny { font-size: 0.62rem; }
  .floating-call-badge { 
    align-self: center; 
    padding: 6px 14px;
    font-size: 0.65rem;
  }
  .floating-call-badge::after { right: 50%; transform: translateX(50%) rotate(45deg); }
  
  .btn-call-titan { padding: 22px 28px; gap: 14px; font-size: 1.4rem; }
  .btn-call-titan .phone-icon { width: 38px; height: 38px; }
  .final-cta { padding: 80px 20px; }
  
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .counter-item .counter { font-size: clamp(2.2rem, 8vw, 3rem); }
  
  /* ============================
     MOBILE MODAL — full-screen bottom-sheet redesign
     ============================ */
  .call-modal-backdrop { 
    padding: 0; 
    align-items: flex-end;
  }
  .call-modal {
    border-radius: 24px 24px 0 0;
    max-height: 92vh;
    max-height: 92dvh;
    max-width: 100%;
    width: 100%;
    animation: modal-slide-up 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
    /* Prevent any horizontal overflow */
    overflow-x: hidden;
  }
  /* Body padding tight on sides — no more cutoff */
  .modal-body { 
    padding: 36px 20px 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .modal-footer { 
    padding: 14px 20px calc(18px + env(safe-area-inset-bottom, 0px));
    width: 100%;
    box-sizing: border-box;
  }
  /* Modal title shrinks and uses available width */
  .call-modal h3 { 
    font-size: 1.3rem; 
    padding: 0 28px; /* leave room for close button */
    margin-bottom: 14px;
  }
  /* Disclaimer — proper padding inside, no cutoff */
  .modal-disclaimer { 
    font-size: 0.86rem !important; 
    padding: 14px 16px !important;
    line-height: 1.55 !important;
    margin: 0 0 14px 0 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
    max-width: 100%;
  }
  /* Features list — also constrained properly */
  .modal-features { 
    padding: 14px 16px;
    box-sizing: border-box;
    max-width: 100%;
  }
  .modal-features li {
    font-size: 0.86rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .modal-icon { width: 52px; height: 52px; margin-bottom: 14px; }
  .modal-close { top: 14px; right: 14px; width: 34px; height: 34px; }
  .modal-call-btn { padding: 16px; font-size: 1rem; }
  .modal-cancel { padding: 11px; }
  
  @keyframes modal-slide-up {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .floating-emergency-card {
    position: relative;
    width: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
  .van-frame { aspect-ratio: 16/11; }
  
  /* Better tap target for FAQ */
  .faq-q { padding: 22px 24px; font-size: 1rem; }
  .faq-a { font-size: 0.92rem; }
  
  /* Top strip wraps better */
  .top-strip { font-size: 0.75rem; padding: 10px 16px; line-height: 1.4; }
  
  /* Service cards more breathable */
  .service-card { padding: 28px 24px; }
  .service-card-photo { padding-top: 0; }
  .service-photo { margin: -28px -24px 24px; }
  
  /* Review cards full width */
  .review-card { padding: 28px 24px; }
  
  /* Reduce blob backgrounds on mobile for perf */
  .water-bg::before, .water-bg::after { filter: blur(60px); opacity: 0.3; }
}

@media (max-width: 480px) {
  body { padding-bottom: 130px; }
  .hero { padding: 40px 16px 200px; }
  .hero-headline { font-size: clamp(2rem, 12vw, 3rem); line-height: 1.02; }
  .hero-lead { font-size: 0.96rem; }
  .chip { padding: 8px 12px 8px 10px; gap: 8px; }
  .chip-icon { width: 26px; height: 26px; }
  .chip-icon svg { width: 14px; height: 14px; }
  .chip-num { font-size: 0.82rem; }
  .chip-label { font-size: 0.56rem; }
  .section-head h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .team-content h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .final-cta h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .btn-call-titan { 
    font-size: 1.2rem; 
    padding: 20px 24px; 
    flex-direction: column;
    gap: 10px;
    border-radius: 24px;
  }
  .floating-call { padding: 14px 18px 14px 14px; gap: 12px; }
  .floating-call .icon-orb { width: 40px; height: 40px; }
  .floating-call .text-block .big { font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .floating-emergency-card { padding: 22px; }
  .hero-card .ec-phone { font-size: 1.7rem; }
  .map-wrapper { padding: 20px 12px; }
  #us-map { max-height: 400px; }
  .nav-inner { padding: 12px 14px; }
  .logo { font-size: 1rem; gap: 6px; }
  .logo-mark { width: 30px; height: 30px; }
  .logo .usa-tag { font-size: 0.58rem; padding: 2px 5px; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CITY & STATE PAGE STYLES ========== */
.city-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.city-breadcrumbs {
  background: rgba(2,6,15,0.5);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}
.city-breadcrumbs a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.city-breadcrumbs a:hover { color: var(--cyan); }
.city-breadcrumbs .bc-sep { margin: 0 8px; opacity: 0.5; }
.city-breadcrumbs span:last-child { color: white; }

.city-hero {
  position: relative;
  padding: 80px 32px 100px;
  background: 
    radial-gradient(ellipse at top right, rgba(0,212,255,0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255,56,56,0.06), transparent 50%);
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.4;
}
.city-hero > * { position: relative; z-index: 1; }

.city-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.city-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.city-h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--cyan), var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.city-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}
.city-lead strong { color: var(--cyan); font-weight: 600; }

.city-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(2,6,15,0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-badge span {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.city-hero-card {
  background: rgba(15,52,96,0.3);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,255,0.1);
}

.city-section {
  padding: 80px 32px;
  position: relative;
}
.city-section-alt { background: rgba(0,0,0,0.25); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.city-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}
.city-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.city-section-lead {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 50px;
}

.city-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.city-service {
  background: rgba(15,52,96,0.2);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}
.city-service:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.3);
}
.city-service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,212,255,0.05));
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan);
}
.city-service h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: white;
}
.city-service p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.65;
}

.city-trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.city-trust-content h2 { text-align: left; margin-bottom: 20px; }
.city-trust-content > p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.city-checks { list-style: none; padding: 0; margin: 0; }
.city-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.city-checks li svg {
  flex-shrink: 0;
  color: var(--cyan);
  background: rgba(0,212,255,0.1);
  border-radius: 50%;
  padding: 3px;
  margin-top: 2px;
}

.city-trust-card {
  background: rgba(15,52,96,0.25);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
}
.city-trust-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: white;
}
.city-process-list {
  padding-left: 22px;
  margin: 0;
}
.city-process-list li {
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  line-height: 1.55;
  font-size: 0.92rem;
}
.city-process-list li strong { color: var(--cyan); font-weight: 600; }
.city-process-list li::marker {
  color: var(--cyan);
  font-weight: 700;
}

.city-nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.nearby-city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,52,96,0.25);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}
.nearby-city:hover {
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.4);
  transform: translateX(3px);
}
.nc-info { display: flex; flex-direction: column; gap: 2px; }
.nc-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: white;
}
.nc-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.nc-arrow { color: var(--cyan); opacity: 0.6; flex-shrink: 0; }
.nearby-city:hover .nc-arrow { opacity: 1; }

.city-state-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.1);
  color: var(--cyan);
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.city-state-link:hover {
  background: rgba(0,212,255,0.2);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.state-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.state-city-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,52,96,0.25);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}
.state-city-link:hover {
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.4);
  transform: translateX(3px);
}
.state-city-link svg { color: var(--cyan); opacity: 0.5; }
.state-city-link:hover svg { opacity: 1; }

.city-final-cta {
  text-align: center;
  padding: 100px 32px;
  background: radial-gradient(ellipse at center, rgba(255,56,56,0.15), transparent 60%);
  position: relative;
}
.city-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.city-final-cta h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--emergency-bright);
}
.city-final-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.city-footer {
  background: var(--abyss);
  border-top: 1px solid var(--line);
  padding: 60px 32px 30px;
  color: rgba(255,255,255,0.7);
}
.city-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.city-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.city-footer ul { list-style: none; padding: 0; margin: 0; }
.city-footer li { margin-bottom: 10px; }
.city-footer a { color: rgba(255,255,255,0.65); text-decoration: none; }
.city-footer a:hover { color: var(--cyan); }
.city-footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .city-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .city-hero-card { max-width: 480px; margin: 0 auto; }
  .city-trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .city-footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .city-container { padding: 0 20px; }
  .city-hero { padding: 50px 20px 70px; }
  .city-section { padding: 60px 20px; }
  .city-final-cta { padding: 70px 20px; }
  .city-footer { padding: 50px 20px 30px; }
  .btn-call-mega { width: 100%; justify-content: center; }
  .city-services-grid { grid-template-columns: 1fr; }
  .state-cities-grid { grid-template-columns: 1fr 1fr; }
  .city-nearby-grid { grid-template-columns: 1fr; }
  .city-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .state-cities-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 8px; }
  .trust-badge { padding: 8px 12px; font-size: 0.65rem; }
}
