/* =========================================================================
   EXTRACCIÓN DE AGUA — design system
   Bold tech/utility · deep blue + electric yellow + dark slate
   Fonts: Sora (body), Space Grotesk (display), JetBrains Mono (accents)
   ========================================================================= */

:root {
  /* Core palette */
  --bg-deep: #050a14;
  --bg: #0b1929;
  --bg-soft: #0f1f33;
  --bg-card: #142840;
  --bg-card-hover: #1a3252;
  --border: #1e3a5f;
  --border-soft: rgba(59, 130, 246, 0.15);

  /* Brand accents */
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --blue-deep: #1d4ed8;
  --yellow: #facc15;
  --yellow-bright: #fde047;
  --yellow-deep: #ca8a04;

  /* Text */
  --text: #f1f5f9;
  --text-soft: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Status */
  --success: #10b981;
  --danger: #ef4444;

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

  /* Sizes */
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --container: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-yellow: 0 12px 32px rgba(250,204,21,0.35);
  --shadow-blue: 0 12px 32px rgba(59,130,246,0.4);
}

/* =========================================================================
   RESET
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
strong { font-weight: 700; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-yellow { color: var(--yellow); }

/* =========================================================================
   LIVE DOT
   ========================================================================= */

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7);
  animation: live-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(250, 204, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

/* =========================================================================
   TOP STRIP
   ========================================================================= */

.top-strip {
  background: linear-gradient(90deg, var(--yellow-deep) 0%, var(--yellow) 50%, var(--yellow-deep) 100%);
  color: var(--bg-deep);
  padding: 10px 16px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.top-strip a { color: var(--bg-deep); border-bottom: 1px dashed rgba(0,0,0,0.3); }
.top-strip .live-dot { background: var(--bg-deep); }
@keyframes live-pulse-dark {
  0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}
.top-strip .live-dot { animation-name: live-pulse-dark; }

/* =========================================================================
   HEADER
   ========================================================================= */

.site-header {
  background: rgba(11, 25, 41, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--yellow);
  letter-spacing: 0.18em;
  margin-top: 4px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-menu a {
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
}
.nav-menu a:hover { color: var(--yellow); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.2s;
}
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--font-display);
  border: 1px solid rgba(96, 165, 250, 0.4);
  transition: all 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}
.nav-cta svg { width: 16px; height: 16px; }

.nav-burger {
  display: none;
  color: var(--text);
}
.nav-burger svg { width: 28px; height: 28px; }

/* =========================================================================
   HERO
   ========================================================================= */

.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-bg-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
  filter: blur(60px);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.4);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-h1-accent {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 50%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-size: 1.08rem;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-lede strong { color: var(--yellow); font-weight: 700; }

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

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 50%, var(--yellow) 100%);
  background-size: 200% 200%;
  color: var(--bg-deep);
  padding: 16px 28px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 30px rgba(250, 204, 21, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  animation: btn-shimmer 4s ease infinite, btn-pulse 2s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(250, 204, 21, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.1); }
  50% { box-shadow: 0 14px 40px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.1); }
}
.btn-primary::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: btn-shine 3s ease-in-out infinite;
}
@keyframes btn-shine {
  0%, 100% { left: -60%; }
  50% { left: 110%; }
}
.btn-primary svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); }

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

/* =========================================================================
   HERO TRUST CARDS
   ========================================================================= */

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  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;
  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:hover {
  border-color: var(--yellow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(250, 204, 21, 0.15);
}
.hero-trust-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s;
}
.hero-trust-item:hover .hero-trust-icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, var(--yellow-deep) 0%, var(--yellow) 100%);
  color: var(--bg-deep);
}
.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(--text);
  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);
}
.hero-trust-item .lbl {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.25;
  font-weight: 500;
}

/* =========================================================================
   HERO VISUAL — equipment dashboard
   ========================================================================= */

.hero-visual {
  position: relative;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: -80px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-photo-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 25, 41, 0.85) 100%);
  pointer-events: none;
}

/* Inner-page hero photo (team) — uses 4:3 to fit team composition naturally */
.hero-photo-inner {
  aspect-ratio: 4/3;
}
.hero-photo-inner img {
  object-position: center top;
}
.hero-visual-card {
  position: relative;
  z-index: 2;
  margin-left: 32px;
  margin-right: 32px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--yellow), transparent 50%, var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-visual-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.hero-visual-card-header strong { color: var(--text); font-weight: 700; }
.hero-visual-card-count {
  margin-left: auto;
  background: var(--yellow);
  color: var(--bg-deep);
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.84rem;
}

.hero-visual-pumps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pump-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-deep);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
}
.pump-svg { width: 56px; height: 56px; flex-shrink: 0; }
.pump-svg svg { width: 100%; height: 100%; }
.pump-svg svg circle:nth-child(2) {
  transform-origin: 40px 44px;
  animation: pump-spin 2s linear infinite;
}
@keyframes pump-spin { to { transform: rotate(360deg); } }
.pump-info { flex: 1; min-width: 0; }
.pump-info strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.pump-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pump-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.pump-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--yellow) 100%);
  border-radius: 4px;
  animation: pump-pulse 2s ease-in-out infinite;
}
@keyframes pump-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-visual-card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

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

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

.live-ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 50s 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;
  font-family: var(--font-mono);
}
.live-ticker-item strong { color: var(--yellow); }

/* =========================================================================
   COVERAGE STATS BAND
   ========================================================================= */

.coverage-band {
  padding: 60px 0;
  background:
    linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--border);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.coverage-item .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coverage-item .num .suffix {
  font-size: 1.4rem;
  -webkit-text-fill-color: var(--yellow);
  margin-left: 2px;
}
.coverage-item .lbl {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* =========================================================================
   SECTIONS
   ========================================================================= */

.section {
  padding: 96px 0;
  position: relative;
}
.section-dark { background: var(--bg-soft); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yellow);
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.3);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================================================
   SERVICE CARDS
   ========================================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.service-card:hover {
  border-color: var(--yellow);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: translateX(0); }
.service-card-featured {
  border: 1px solid var(--yellow);
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.08) 0%, transparent 50%),
    var(--bg-card);
}
.service-card-featured::before { transform: translateX(0); }

.service-card-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--danger), #dc2626);
  color: white;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(239, 68, 68, 0.7); }
}

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--yellow-deep) 0%, var(--yellow) 100%);
  color: var(--bg-deep);
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 12px 28px rgba(250, 204, 21, 0.4);
}
.service-icon svg { width: 32px; height: 32px; }

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.92rem;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 14px; }
.service-link svg { width: 14px; height: 14px; }

/* =========================================================================
   PROCESS
   ========================================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s;
}
.process-step:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.process-step p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* =========================================================================
   WHY US
   ========================================================================= */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content .eyebrow { margin-bottom: 20px; }
.why-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
  text-align: left;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.why-content .section-lead {
  margin: 0 0 32px 0;
  text-align: left;
}
.why-list {
  margin-bottom: 32px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}
.why-list li svg {
  width: 22px; height: 22px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list li strong { color: var(--text); font-weight: 700; }

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.why-stat-card-yellow {
  background: linear-gradient(135deg, var(--yellow-deep) 0%, var(--yellow) 100%);
  border-color: var(--yellow);
}
.why-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.why-stat-card-yellow:hover { border-color: var(--yellow-bright); }
.why-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.why-stat-card-yellow .why-stat-num {
  -webkit-text-fill-color: var(--bg-deep);
  background: none;
}
.why-stat-lbl {
  font-size: 0.86rem;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.4;
}
.why-stat-card-yellow .why-stat-lbl { color: var(--bg-deep); }

/* =========================================================================
   ACTION GRID (Equipo en Acción — photo gallery section)
   ========================================================================= */

.action-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.action-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.action-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}
.action-card-big {
  grid-row: span 2;
}
.action-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--bg-soft);
}
.action-card-big .action-img {
  aspect-ratio: 4/5;
}
.action-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.action-card:hover .action-img img {
  transform: scale(1.04);
}
.action-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.action-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
}
.action-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
.action-card-big h3 { font-size: 1.55rem; }
.action-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================================
   STATES GRID
   ========================================================================= */

.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.state-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.state-card::after {
  content: '→';
  color: var(--yellow);
  font-weight: 700;
  transition: transform 0.2s;
}
.state-card:hover {
  border-color: var(--yellow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.state-card:hover::after { transform: translateX(4px); }

.cities-cta {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.cities-cta a {
  color: var(--yellow);
  font-weight: 700;
  border-bottom: 1px dashed var(--yellow);
}

/* =========================================================================
   FAQ
   ========================================================================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--yellow); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--yellow);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--yellow); color: var(--bg-deep); }
.faq-body {
  padding: 0 26px 24px;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-body strong { color: var(--text); }

/* =========================================================================
   FINAL CTA
   ========================================================================= */

.final-cta {
  padding: 96px 0;
  background:
    radial-gradient(ellipse at top, rgba(250, 204, 21, 0.12) 0%, transparent 60%),
    var(--bg-deep);
  border-top: 1px solid var(--border);
}
.final-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.final-cta p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 36px;
}
.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 50%, var(--yellow) 100%);
  background-size: 200% 200%;
  color: var(--bg-deep);
  padding: 24px 48px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(250, 204, 21, 0.5),
    0 0 80px rgba(250, 204, 21, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  animation: cta-large-pulse 2s ease-in-out infinite, btn-shimmer 4s ease infinite;
  transition: transform 0.2s;
}
@keyframes cta-large-pulse {
  0%, 100% {
    box-shadow: 0 16px 40px rgba(250, 204, 21, 0.5), 0 0 80px rgba(250, 204, 21, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 20px 50px rgba(250, 204, 21, 0.6), 0 0 120px rgba(250, 204, 21, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.5), inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  }
}
.btn-cta-large::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: btn-shine 2.5s ease-in-out infinite;
}
.btn-cta-large svg, .btn-cta-large span { position: relative; z-index: 1; }
.btn-cta-large svg { width: 26px; height: 26px; }
.btn-cta-large:hover { transform: translateY(-3px) scale(1.02); }
.final-cta-sub {
  display: block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

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

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 20px 0;
  max-width: 380px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.footer-phone svg { width: 18px; height: 18px; }
.footer-phone:hover { color: var(--yellow-bright); }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-soft); font-size: 0.94rem; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.86rem;
}
.footer-cert {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
}

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

.floating-call {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 50%, var(--yellow) 100%);
  background-size: 200% 200%;
  color: var(--bg-deep);
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow:
    0 12px 30px rgba(250, 204, 21, 0.5),
    0 0 60px rgba(250, 204, 21, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  animation: fc-shimmer 4s ease infinite, fc-pulse 2s ease-in-out infinite;
  transition: transform 0.2s;
  overflow: hidden;
}
@keyframes fc-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes fc-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(250, 204, 21, 0.5), 0 0 60px rgba(250, 204, 21, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 16px 40px rgba(250, 204, 21, 0.6), 0 0 100px rgba(250, 204, 21, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.4); }
}
.floating-call::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  animation: btn-shine 2.5s ease-in-out infinite;
}
.floating-call svg { width: 20px; height: 20px; position: relative; z-index: 1; 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); }
}
.floating-call-ring {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--yellow);
  animation: fc-ring 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes fc-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}
.floating-call-text {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.floating-call-text small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bg-deep);
  opacity: 0.7;
}
.floating-call-text strong {
  font-size: 0.95rem;
  font-weight: 800;
}
.floating-call:hover { transform: translateY(-3px); }

/* =========================================================================
   MODAL
   ========================================================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.75);
  backdrop-filter: blur(8px);
  animation: overlay-in 0.3s ease;
}
@keyframes overlay-in { from { opacity: 0; } }

.modal-content {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  animation: modal-up 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modal-up { from { transform: translateY(100%); } }

@media (min-width: 720px) {
  .modal { align-items: center; padding: 32px; }
  .modal-content { border-radius: 20px; border-bottom: 1px solid var(--border); animation: modal-pop 0.3s ease; }
  @keyframes modal-pop { from { opacity: 0; transform: scale(0.94); } }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--bg-soft);
  border-radius: 50%;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--bg-deep); color: var(--yellow); }
.modal-close svg { width: 18px; height: 18px; }

.modal-body {
  padding: 32px 32px 16px;
  overflow-y: auto;
  flex: 1;
}
.modal-body h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-right: 40px;
}
.modal-info {
  background: var(--bg-soft);
  border-left: 3px solid var(--yellow);
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.modal-info p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.modal-checklist {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 16px 22px;
}
.modal-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}
.modal-checklist li svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; margin-top: 1px; }
.modal-checklist li strong { color: var(--text); }

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

.btn-modal-call {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 50%, var(--yellow) 100%);
  background-size: 200% 200%;
  color: var(--bg-deep);
  padding: 20px 22px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  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 rgba(250, 204, 21, 0.5),
    0 0 60px rgba(250, 204, 21, 0.4),
    inset 0 2px 0 rgba(255,255,255,0.4),
    inset 0 -2px 0 rgba(0,0,0,0.15);
  position: relative;
  overflow: visible;
  transition: transform 0.2s;
  animation: btn-modal-breathe 1.6s ease-in-out infinite, btn-modal-gradient 4s ease infinite;
  isolation: isolate;
}
@keyframes btn-modal-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 14px 40px rgba(250, 204, 21, 0.5), 0 0 60px rgba(250, 204, 21, 0.4), inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.15);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 18px 50px rgba(250, 204, 21, 0.6), 0 0 100px rgba(250, 204, 21, 0.5), 0 0 140px rgba(250, 204, 21, 0.3), inset 0 2px 0 rgba(255,255,255,0.5), inset 0 -2px 0 rgba(0,0,0,0.15);
  }
}
@keyframes btn-modal-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-modal-call::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: btn-modal-shine 2s ease-in-out infinite;
  border-radius: 14px;
  pointer-events: none;
  z-index: 1;
}
.btn-modal-call::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  border: 2px solid var(--yellow-bright);
  animation: btn-modal-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes btn-modal-shine { 0% { left: -60%; } 60%, 100% { left: 110%; } }
@keyframes btn-modal-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.12); opacity: 0; }
}
.btn-modal-call > * { position: relative; z-index: 2; }
.btn-modal-call:hover { transform: translateY(-2px) scale(1.03); animation-play-state: paused; }
.btn-modal-call svg {
  width: 22px; height: 22px;
  animation: phone-ring 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

.btn-modal-cancel {
  padding: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: transparent;
  border-radius: 12px;
  font-weight: 600;
  transition: color 0.2s;
}
.btn-modal-cancel:hover { color: var(--text); }

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================================
   BREADCRUMBS (used on city/state pages)
   ========================================================================= */

.breadcrumbs {
  background: var(--bg-soft);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.breadcrumbs .container { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs .sep { color: var(--text-dim); }
.breadcrumbs strong { color: var(--text); font-weight: 600; }

/* =========================================================================
   STATE PAGES — cities grid
   ========================================================================= */

.state-cities {
  padding: 64px 0;
}
.state-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.state-cities-grid a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.state-cities-grid a::after {
  content: '→';
  color: var(--yellow);
  transition: transform 0.2s;
}
.state-cities-grid a:hover {
  border-color: var(--yellow);
  background: var(--bg-card-hover);
}
.state-cities-grid a:hover::after { transform: translateX(3px); }

/* =========================================================================
   NEARBY CITIES
   ========================================================================= */

.nearby-cities {
  padding: 64px 0;
  background: var(--bg-soft);
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.nearby-grid a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-soft);
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s;
}
.nearby-grid a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 640px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .state-cities-grid { grid-template-columns: repeat(3, 1fr); }
  .nearby-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .action-grid { grid-template-columns: 1fr 1fr; }
  .action-card-big { grid-row: span 1; grid-column: span 2; }
  .action-card-big .action-img { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { padding: 14px 20px; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta span { display: none; }
  .nav-cta { padding: 12px; }
  .nav-cta svg { width: 18px; height: 18px; }
  .nav-burger { display: block; }

  .hero { padding: 40px 0 64px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .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; }

  /* Hero photo: stack cleanly, no overlap on mobile */
  .hero-photo { margin-bottom: 24px; aspect-ratio: 16/9; }
  /* Inner-page hero photo uses square on mobile (picture element serves square crop) */
  .hero-photo-inner { aspect-ratio: 1/1; }
  .hero-photo-inner img { object-position: center center; }
  .hero-visual-card { margin-left: 0; margin-right: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .states-grid { grid-template-columns: 1fr 1fr; }
  .state-cities-grid { grid-template-columns: 1fr 1fr; }
  .nearby-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }

  /* Action grid: stack to single column */
  .action-grid { grid-template-columns: 1fr; gap: 16px; }
  .action-card-big { grid-column: span 1; }
  .action-card-big h3 { font-size: 1.3rem; }
  .action-body { padding: 20px 18px; }

  .floating-call { padding: 12px 18px; bottom: 16px; right: 16px; }
  .floating-call-text small { display: none; }

  .modal-body { padding: 24px 22px 16px; }
  .modal-footer { padding: 14px 22px calc(18px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.1rem; }
  .top-strip { font-size: 0.78rem; padding: 8px 12px; }
  .nav .logo-text strong { font-size: 1.05rem; }
  .nav .logo-sub { font-size: 0.6rem; }
  .hero-photo { aspect-ratio: 4/3; border-radius: 12px; }
  .hero-photo-inner { aspect-ratio: 1/1; }
  .hero-visual-card { padding: 18px 16px; }
  .action-card h3 { font-size: 1.1rem; }
  .action-card p { font-size: 0.9rem; }
}

/* Global image fluidity safety net */
img { max-width: 100%; height: auto; }

/* === USA-only modal notice (added) === */
.modal-info-usa {
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid var(--danger, #ef4444);
}
.modal-info-usa p { color: var(--text, #f1f5f9); }
.modal-info-usa strong { color: #fca5a5; }
.modal-note {
  color: var(--text-muted, #94a3b8);
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0;
}

/* ============ ALL CITIES SECTION (Internal SEO linking) ============ */
.all-cities-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.all-cities-inner { max-width: 1280px; margin: 0 auto; }
.all-cities-section h2 {
  font-family: var(--font-display, system-ui);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text, #f1f5f9);
  margin: 0 0 12px;
  font-weight: 800;
}
.all-cities-lead {
  color: var(--text-muted, #94a3b8);
  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, system-ui);
  font-size: 1.05rem; font-weight: 700;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.state-cities-h a {
  color: var(--yellow, #facc15);
  text-decoration: none;
  transition: color 0.2s;
}
.state-cities-h a:hover { color: var(--blue-bright, #60a5fa); }
.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, #94a3b8);
  text-decoration: none;
  font-size: 0.88rem; line-height: 1.5;
  transition: color 0.15s;
}
.state-cities-list a:hover { color: var(--text, #f1f5f9); }
@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; }
}
