/* =========================================================================
   LIMPIEZA DE INUNDACIONES — Stylesheet
   Clean, professional, contractor-focused. Light theme with navy + blue accents.
   ========================================================================= */

:root {
  /* Brand colors from logo */
  --navy: #0a2540;
  --navy-deep: #061a2e;
  --navy-light: #1a3a5c;
  --blue: #0596d4;
  --blue-bright: #1ab5f5;
  --blue-light: #e6f4fd;
  --blue-pale: #f4faff;

  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  /* Accents */
  --danger: #dc2626;
  --success: #16a34a;
  --warn: #f59e0b;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1240px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 12px 28px rgba(5, 150, 212, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

/* =========================================================================
   HEADER + NAV
   ========================================================================= */

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 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: 800;
  color: var(--navy); font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.logo img { width: 40px; height: 40px; object-fit: contain; }
.logo strong { color: var(--navy); }
.logo .accent { color: var(--blue); }

.nav-menu {
  display: flex; gap: 36px; list-style: none;
}
.nav-menu a {
  font-weight: 500; font-size: 0.94rem; color: var(--text-soft);
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blue); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white; font-weight: 700;
  padding: 12px 22px; border-radius: 999px;
  font-size: 0.92rem; box-shadow: var(--shadow-blue);
  transition: all 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  color: var(--navy);
}

/* =========================================================================
   BREADCRUMBS
   ========================================================================= */

.breadcrumbs {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumbs-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-soft); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs .sep { color: var(--border-strong); }
.breadcrumbs .current { color: var(--text); font-weight: 500; }

/* =========================================================================
   HERO — Split layout (text left, image right)
   ========================================================================= */

.hero {
  background: linear-gradient(180deg, var(--blue-pale) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--blue-light);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.84rem; font-weight: 600;
  color: var(--blue); letter-spacing: 0.01em;
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.05); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero h1 .underline {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 8px;
  background: var(--blue-light);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  font-size: 1.1rem; color: var(--text-soft);
  margin-bottom: 36px; max-width: 560px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex; gap: 14px; margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 50%, var(--blue) 100%);
  background-size: 200% 200%;
  color: white;
  padding: 16px 28px; border-radius: 12px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 12px 28px rgba(5, 150, 212, 0.35), 0 0 0 4px rgba(5, 150, 212, 0.1);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  animation: btn-gradient-shift 4s ease infinite, btn-pulse 2.5s ease-in-out infinite;
}
@keyframes btn-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(5, 150, 212, 0.35), 0 0 0 0 rgba(5, 150, 212, 0.4); }
  50% { box-shadow: 0 12px 28px rgba(5, 150, 212, 0.45), 0 0 0 8px rgba(5, 150, 212, 0); }
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(5,150,212,0.5); }
.btn-primary svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn-primary span, .btn-primary { position: relative; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--navy);
  padding: 16px 28px; border-radius: 12px;
  font-weight: 700; font-size: 1rem;
  border: 1.5px solid var(--border-strong);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 14px;
  background: white;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
  animation: trust-float 6s ease-in-out infinite;
}
.hero-trust-item:nth-child(1) { animation-delay: 0s; }
.hero-trust-item:nth-child(2) { animation-delay: 1.5s; }
.hero-trust-item:nth-child(3) { animation-delay: 3s; }
.hero-trust-item:nth-child(4) { animation-delay: 4.5s; }
@keyframes trust-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.hero-trust-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-pale) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.hero-trust-item:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(5, 150, 212, 0.15);
}
.hero-trust-item:hover::before {
  opacity: 1;
}
.hero-trust-item > * { position: relative; z-index: 1; }

.hero-trust-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(5, 150, 212, 0.3);
  transition: transform 0.3s;
}
.hero-trust-item:hover .hero-trust-icon {
  transform: rotate(-8deg) scale(1.1);
}
.hero-trust-icon svg { width: 22px; height: 22px; }

.hero-trust-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.hero-trust-item .num-unit {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}
.hero-trust-item .lbl {
  font-size: 0.74rem;
  color: var(--text-soft);
  line-height: 1.25;
  font-weight: 500;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/3;
}
.hero-image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}
.hero-image-inner img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-image-card {
  position: absolute;
  bottom: -28px;
  left: 24px;
  right: 24px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.hero-image-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: white;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(5,150,212,0.4);
}
.hero-image-card-icon svg { width: 22px; height: 22px; }
.hero-image-card-text strong {
  display: block; font-family: var(--font-display);
  color: var(--navy); font-size: 0.96rem; margin-bottom: 2px;
}
.hero-image-card-text span {
  font-size: 0.82rem; color: var(--text-muted);
}
.hero-image-card-text .live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #16a34a;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* =========================================================================
   COVERAGE BAND (replaces ticker)
   ========================================================================= */

.coverage-band {
  background: var(--navy);
  color: white;
  padding: 56px 0;
}
.coverage-grid {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.coverage-item .lbl {
  font-size: 0.92rem; color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* =========================================================================
   LIVE ACTIVITY TICKER
   ========================================================================= */

.live-ticker {
  background: var(--navy);
  color: white;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
.live-ticker::before, .live-ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.live-ticker::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.live-ticker::after { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }

.live-ticker-track {
  display: flex; gap: 48px;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  width: fit-content;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.live-ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.live-ticker-item .live-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.live-ticker-item strong {
  color: var(--blue-bright);
  font-weight: 700;
}

/* =========================================================================
   ANIMATED COUNTERS (in coverage band)
   ========================================================================= */

.coverage-item {
  position: relative;
  padding: 0 12px;
}
.coverage-item .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue-bright) 0%, #5ce6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coverage-item .suffix {
  font-size: 1.4rem; opacity: 0.7;
}

/* =========================================================================
   SECTIONS — general
   ========================================================================= */

section {
  padding: 96px 0;
  position: relative;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--blue);
  padding: 6px 14px;
  background: var(--blue-light);
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-header h2 .accent { color: var(--blue); }
.section-header p {
  font-size: 1.08rem; color: var(--text-soft);
  line-height: 1.55;
}

/* =========================================================================
   SERVICES — Photo-led cards with hover zoom
   ========================================================================= */

.services {
  background: var(--bg-soft);
}

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

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
}

.service-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-photo img {
  transform: scale(1.08);
}
.service-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.7) 100%);
}

.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(220, 38, 38, 0.7); }
}

.service-card-body {
  padding: 28px 26px;
  display: flex; flex-direction: column;
  flex-grow: 1;
}

.service-icon-mini {
  position: absolute;
  top: -22px; left: 22px;
  width: 44px; height: 44px;
  background: white;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  z-index: 2;
}
.service-icon-mini svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 12px; }
.service-link svg { width: 14px; height: 14px; }

/* =========================================================================
   PROCESS — Timeline horizontal
   ========================================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 24px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 48px; height: 48px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 6px white, var(--shadow-blue);
}
.process-step h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* =========================================================================
   TEAM SECTION — Two column
   ========================================================================= */

.team {
  background: var(--bg-soft);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.team-content h2 .accent { color: var(--blue); }
.team-content p.lead {
  color: var(--text-soft);
  font-size: 1.04rem;
  margin-bottom: 28px;
  line-height: 1.6;
}
.team-features {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
}
.team-features li {
  list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text);
  font-size: 0.98rem;
}
.team-features li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px;
  border-radius: 6px;
  margin-top: 2px;
}
.team-features strong { color: var(--navy); }

/* =========================================================================
   REVIEWS — Grid of cards
   ========================================================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
}
.review-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.review-stars {
  display: flex; gap: 2px; margin-bottom: 16px;
}
.review-stars svg { width: 18px; height: 18px; color: #f59e0b; fill: #f59e0b; }
.review-text {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.review-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.review-author .name {
  font-weight: 600; color: var(--navy);
  font-size: 0.94rem;
  font-family: var(--font-display);
}
.review-author .loc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =========================================================================
   FAQ — Accordion style
   ========================================================================= */

.faq {
  background: var(--bg-soft);
}
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 28px; height: 28px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--blue);
  color: white;
}
.faq-answer {
  padding: 0 28px 24px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.96rem;
}

/* =========================================================================
   NEARBY CITIES — Card grid
   ========================================================================= */

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 920px; margin: 0 auto;
}
.nearby-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  color: var(--text);
}
.nearby-card:hover {
  border-color: var(--blue);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.nearby-card-info { display: flex; flex-direction: column; gap: 3px; }
.nearby-card .name {
  font-family: var(--font-display);
  font-weight: 600; color: var(--navy);
  font-size: 0.98rem;
}
.nearby-card .meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nearby-card svg {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nearby-card:hover svg { transform: translateX(4px); }

.nearby-cta {
  text-align: center;
  margin-top: 40px;
}
.nearby-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 600;
  padding: 12px 24px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  transition: all 0.2s;
}
.nearby-cta a:hover {
  background: var(--blue); color: white;
}

/* State page cities grid */
.state-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1100px; margin: 0 auto;
}
.state-city-link {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}
.state-city-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateX(3px);
}
.state-city-link svg { width: 14px; height: 14px; color: var(--blue); }

/* =========================================================================
   FINAL CTA — Big blue band
   ========================================================================= */

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,181,245,0.15) 0%, transparent 70%);
}
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.cta-inner h2 .accent { color: var(--blue-bright); }
.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.btn-cta-large {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, #5ce6ff 50%, var(--blue-bright) 100%);
  background-size: 200% 200%;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  padding: 22px 44px;
  border-radius: 14px;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 40px rgba(26,181,245,0.4), 0 0 0 0 rgba(26,181,245,0.6);
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
  animation: cta-gradient 4s ease infinite, cta-pulse 2.5s ease-in-out infinite;
}
@keyframes cta-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(26,181,245,0.4), 0 0 0 0 rgba(26,181,245,0.5); }
  50% { box-shadow: 0 16px 40px rgba(26,181,245,0.5), 0 0 0 12px rgba(26,181,245,0); }
}
.btn-cta-large::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: cta-shimmer 3s ease-in-out infinite;
}
@keyframes cta-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.btn-cta-large:hover {
  transform: translateY(-3px) scale(1.02);
}
.btn-cta-large svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.btn-cta-large span { position: relative; z-index: 1; }

/* =========================================================================
   FOOTER
   ========================================================================= */

.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo strong { color: white; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 380px;
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 8px;
  padding: 8px 0;
  min-height: 44px;
}
.footer-phone svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 16px;
}

/* =========================================================================
   FLOATING CALL BUTTON
   ========================================================================= */

.floating-call {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 50%, var(--blue) 100%);
  background-size: 200% 200%;
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 12px 30px rgba(5,150,212,0.4), 0 0 0 0 rgba(5,150,212,0.6);
  transition: transform 0.2s;
  cursor: pointer;
  overflow: hidden;
  animation: fc-gradient 4s ease infinite, fc-pulse 2s ease-in-out infinite;
}
@keyframes fc-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes fc-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(5,150,212,0.4), 0 0 0 0 rgba(5,150,212,0.6); }
  50% { box-shadow: 0 12px 30px rgba(5,150,212,0.4), 0 0 0 14px rgba(5,150,212,0); }
}
.floating-call::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  border-radius: 999px;
  animation: fc-shimmer 3s ease-in-out infinite;
}
@keyframes fc-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.floating-call:hover {
  transform: translateY(-3px);
}
.floating-call-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-call-icon svg { width: 16px; height: 16px; }
.floating-call-text { display: flex; flex-direction: column; line-height: 1.1; }
.floating-call-text .tiny { font-size: 0.72rem; font-weight: 500; opacity: 0.85; letter-spacing: 0.05em; text-transform: uppercase; }
.floating-call-text .big { font-size: 1rem; font-weight: 800; }

/* =========================================================================
   MODAL (similar concept, light theme)
   ========================================================================= */

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  height: 100vh; height: 100dvh;
  animation: fade-in 0.2s ease;
}
.modal-backdrop.open { display: flex; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: white;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  animation: modal-pop 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
  display: flex; flex-direction: column;
  max-height: calc(100dvh - 40px);
  overflow: hidden;
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-body {
  padding: 36px 32px 16px;
  overflow-y: visible;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--navy); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  padding-right: 36px;
}
.modal h3 .accent { color: var(--blue); }

.modal-disclaimer {
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.modal-features {
  background: var(--blue-pale);
  border-radius: 10px;
  padding: 16px 20px;
  list-style: none;
}
.modal-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.modal-features li:last-child { margin-bottom: 0; }
.modal-features li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--blue);
  margin-top: 2px;
}
.modal-features strong { color: var(--navy); font-weight: 700; }

.modal-footer {
  flex-shrink: 0;
  padding: 16px 32px calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}
.modal-actions { display: flex; flex-direction: column; gap: 10px; }

.btn-modal-call {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 50%, var(--blue) 100%);
  background-size: 200% 200%;
  color: white;
  padding: 18px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 12px 28px rgba(5, 150, 212, 0.4), 0 0 0 0 rgba(5, 150, 212, 0.6);
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
  animation: modal-btn-gradient 4s ease infinite, modal-btn-pulse 1.8s ease-in-out infinite;
}
@keyframes modal-btn-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes modal-btn-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(5, 150, 212, 0.4), 0 0 0 0 rgba(5, 150, 212, 0.55); }
  50% { box-shadow: 0 12px 28px rgba(5, 150, 212, 0.5), 0 0 0 14px rgba(5, 150, 212, 0); }
}
.btn-modal-call::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: modal-btn-shimmer 2.5s ease-in-out infinite;
}
@keyframes modal-btn-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.btn-modal-call:hover {
  transform: translateY(-2px) scale(1.01);
}
.btn-modal-call svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.btn-modal-call span { position: relative; z-index: 1; }

.btn-modal-cancel {
  background: transparent;
  color: var(--text-muted);
  padding: 12px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.94rem;
  text-align: center;
  transition: color 0.2s;
}
.btn-modal-cancel:hover { color: var(--navy); }

/* =========================================================================
   REVEAL ON SCROLL
   ========================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================================
   RESPONSIVE — Mobile
   ========================================================================= */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { order: -1; max-height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .state-cities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav { padding: 14px 20px; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white;
    padding: 20px; gap: 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open a { padding: 8px 0; min-height: 40px; display: flex; align-items: center; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-cta { padding: 10px 16px; font-size: 0.85rem; }
  .nav-cta span { display: none; }
  
  /* Bigger tap targets for breadcrumbs and footer */
  .breadcrumbs { padding: 18px 0; }
  .breadcrumbs a { padding: 6px 0; min-height: 36px; display: inline-flex; align-items: center; }
  .footer-col a { padding: 6px 0; min-height: 36px; display: inline-flex; align-items: center; }
  
  .hero { padding: 48px 0 80px; }
  .hero-inner { padding: 0 20px; gap: 32px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 24px; }
  .hero-trust-item { padding: 12px 14px; gap: 10px; }
  .hero-trust-icon { width: 38px; height: 38px; }
  .hero-trust-icon svg { width: 20px; height: 20px; }
  .hero-trust-item .num { font-size: 1.2rem; }
  .hero-trust-item .lbl { font-size: 0.7rem; }
  /* Move card below image on mobile so it doesn't cover the van */
  .hero-image-card {
    position: static;
    margin-top: 16px;
    left: auto; right: auto; bottom: auto;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  }
  .hero-image-card-icon { width: 38px; height: 38px; }
  
  .section-header { margin-bottom: 40px; }
  .section-inner { padding: 0 20px; }
  
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .nearby-grid { grid-template-columns: 1fr; }
  .state-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .state-city-link { padding: 14px 16px; min-height: 48px; }
  .coverage-grid { gap: 20px; padding: 0 20px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .footer-bottom { padding: 24px 20px 0; flex-direction: column; text-align: center; }
  
  .breadcrumbs-inner { padding: 0 20px; font-size: 0.88rem; }
  
  /* Mobile modal */
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal {
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    animation: modal-slide 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
  }
  @keyframes modal-slide {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
  }
  .modal-body { padding: 32px 22px 16px; }
  .modal h3 { font-size: 1.25rem; }
  .modal-footer { padding: 14px 22px calc(20px + env(safe-area-inset-bottom, 0px)); }
  
  /* Mobile floating call - smaller but readable */
  .floating-call {
    bottom: 16px; right: 16px;
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  .floating-call-icon { width: 28px; height: 28px; }
  .floating-call-text .tiny { font-size: 0.75rem; }
  .floating-call-text .big { font-size: 0.92rem; }
  
  .cta-band { padding: 56px 0; }
  .btn-cta-large { font-size: 1.05rem; padding: 18px 32px; }
}

/* ============ ALL CITIES SECTION (Internal SEO linking) ============ */
.all-cities-section {
  background: var(--bg-soft);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.all-cities-inner {
  max-width: var(--container, 1280px);
  margin: 0 auto;
}
.all-cities-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.all-cities-lead {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 0 40px;
}
.all-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px 24px;
}
.state-cities-block {
  break-inside: avoid;
}
.state-cities-h {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.state-cities-h a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.state-cities-h a:hover {
  color: var(--navy);
}
.state-cities-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.state-cities-list li {
  margin: 0;
  padding: 2px 0;
}
.state-cities-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.5;
  transition: color 0.15s;
  display: inline-block;
}
.state-cities-list a:hover {
  color: var(--navy);
}
@media (max-width: 600px) {
  .all-cities-section { padding: 56px 16px; }
  .all-cities-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px 16px; }
  .state-cities-list a { font-size: 0.86rem; }
}
