/* =========================================================================
   REMOCIÓN DE MOHO MIAMI — Stylesheet
   Dark + health + emergency. Navy/cyan/green/red palette.
   ========================================================================= */

:root {
  /* Brand palette — pulled from logo */
  --bg: #0a1628;
  --bg-deep: #050d1a;
  --bg-card: #11203a;
  --bg-elev: #15294a;

  --cyan: #06b6d4;
  --cyan-bright: #22d3ee;
  --cyan-glow: rgba(34, 211, 238, 0.45);

  --green: #4ade80;
  --green-bright: #86efac;
  --green-glow: rgba(74, 222, 128, 0.45);

  --emergency: #ef4444;
  --emergency-bright: #f87171;
  --emergency-glow: rgba(239, 68, 68, 0.5);

  --text: #f0f9ff;
  --text-soft: #cbd5e1;
  --text-muted: #94a3b8;
  --text-faint: #64748b;

  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

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

  --container: 1240px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* { 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;
  overflow-x: hidden;
}

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

/* Background mesh */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(at 20% 10%, rgba(34, 211, 238, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 60%, rgba(74, 222, 128, 0.06) 0px, transparent 50%),
    radial-gradient(at 60% 90%, rgba(239, 68, 68, 0.04) 0px, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* =========================================================================
   TOP STRIP — Emergency banner
   ========================================================================= */

.top-strip {
  background: linear-gradient(90deg, var(--emergency) 0%, #dc2626 50%, var(--emergency) 100%);
  background-size: 200% 100%;
  animation: strip-gradient 3s linear infinite;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
@keyframes strip-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.top-strip-dot {
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  animation: top-strip-pulse 1.2s ease-in-out infinite;
}
@keyframes top-strip-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.top-strip a { color: white; text-decoration: underline; font-weight: 800; }

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

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.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: 700;
  color: var(--text); font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.logo img { width: 44px; height: 44px; object-fit: contain; }
.logo .lblock { display: flex; flex-direction: column; }
.logo .lmain { color: var(--text); }
.logo .lmiami {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-top: 1px;
}

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

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--emergency) 0%, #dc2626 100%);
  color: white; font-weight: 700;
  padding: 12px 22px; border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px var(--emergency-glow), 0 0 0 0 var(--emergency-glow);
  transition: transform 0.2s;
  white-space: nowrap;
  animation: nav-cta-pulse 2s ease-in-out infinite;
}
@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: 0 10px 24px var(--emergency-glow), 0 0 0 0 var(--emergency-glow); }
  50% { box-shadow: 0 10px 24px var(--emergency-glow), 0 0 0 10px rgba(239, 68, 68, 0); }
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  color: var(--text);
  align-items: center; justify-content: center;
}

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

.breadcrumbs {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  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; padding: 6px 0; }
.breadcrumbs a:hover { color: var(--cyan-bright); }
.breadcrumbs .sep { color: var(--text-faint); }
.breadcrumbs .current { color: var(--text); font-weight: 500; }

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

.hero {
  position: relative;
  padding: 70px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 8px 16px; border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 600;
  color: var(--emergency-bright);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emergency);
  box-shadow: 0 0 0 0 var(--emergency-glow);
  animation: badge-pulse 1.4s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--emergency-glow); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .danger {
  color: var(--emergency-bright);
}

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

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

.btn-emergency {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--emergency) 0%, var(--emergency-bright) 50%, var(--emergency) 100%);
  background-size: 200% 200%;
  color: white;
  padding: 18px 32px; border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.04rem;
  letter-spacing: -0.005em;
  box-shadow:
    0 14px 32px var(--emergency-glow),
    0 0 50px var(--emergency-glow),
    inset 0 2px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  animation: btn-em-breathe 1.8s ease-in-out infinite, btn-em-gradient 4s ease infinite;
  isolation: isolate;
}
@keyframes btn-em-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); box-shadow: 0 18px 40px var(--emergency-glow), 0 0 80px var(--emergency-glow), inset 0 2px 0 rgba(255,255,255,0.3), inset 0 -2px 0 rgba(0,0,0,0.15); }
}
@keyframes btn-em-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-emergency::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-em-shine 2.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes btn-em-shine {
  0% { left: -60%; }
  60%, 100% { left: 110%; }
}
.btn-emergency:hover {
  transform: translateY(-3px) scale(1.02);
  animation-play-state: paused;
}
.btn-emergency > * { position: relative; z-index: 2; }
.btn-emergency svg { width: 20px; height: 20px; animation: phone-ring 1.5s ease-in-out infinite; }
@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0deg); }
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 18px 28px; border-radius: 14px;
  font-weight: 600; font-size: 1rem;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--cyan-bright); }
.btn-ghost svg { width: 18px; height: 18px; }

.hero-quick {
  display: flex; align-items: center; gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-quick-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-soft);
}
.hero-quick-item svg {
  width: 18px; height: 18px;
  color: var(--green-bright);
  flex-shrink: 0;
}

/* Hero image */
.hero-image {
  position: relative;
}
.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--line);
  aspect-ratio: 16/10;
  position: relative;
}
.hero-image-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-image-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 22, 40, 0.7) 100%);
  pointer-events: none;
}

/* Floating cards */
.hero-floater {
  position: absolute;
  background: rgba(17, 32, 58, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  z-index: 2;
}
.hero-floater-tl {
  top: 24px; left: -28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-floater-br {
  bottom: 28px; right: -28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-floater-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-floater-tl .hero-floater-icon {
  background: rgba(74, 222, 128, 0.15);
  color: var(--green-bright);
}
.hero-floater-br .hero-floater-icon {
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan-bright);
}
.hero-floater-icon svg { width: 22px; height: 22px; }
.hero-floater-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text);
  font-size: 0.94rem;
  margin-bottom: 2px;
}
.hero-floater-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================================================================
   SYMPTOMS SECTION — fear/urgency driver
   ========================================================================= */

.symptoms {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  position: relative;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.symptoms-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--emergency-bright);
  padding: 6px 14px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-tag.tag-cyan { color: var(--cyan-bright); background: rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.25); }
.section-tag.tag-green { color: var(--green-bright); background: rgba(74, 222, 128, 0.1); border-color: rgba(74, 222, 128, 0.25); }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-header h2 .accent-cyan { color: var(--cyan-bright); }
.section-header h2 .accent-green { color: var(--green-bright); }
.section-header h2 .accent-red { color: var(--emergency-bright); }
.section-header p {
  font-size: 1.06rem; color: var(--text-soft);
  line-height: 1.6;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.symptom-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: all 0.3s;
}
.symptom-card:hover {
  border-color: var(--emergency);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.12);
}
.symptom-icon {
  width: 42px; height: 42px;
  background: rgba(239, 68, 68, 0.12);
  color: var(--emergency-bright);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.symptom-icon svg { width: 22px; height: 22px; }
.symptom-card h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 600;
}
.symptom-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.symptoms-cta {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.symptoms-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
}
.symptoms-cta-content { position: relative; z-index: 1; }
.symptoms-cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 700;
}
.symptoms-cta h3 .accent-red { color: var(--emergency-bright); }
.symptoms-cta p {
  color: var(--text-soft);
  margin-bottom: 24px;
  font-size: 1rem;
}

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

.stats-band {
  background: var(--bg-deep);
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  position: relative;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.04) 0%, rgba(17, 32, 58, 0.4) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s;
}
.stat-item:hover {
  border-color: var(--cyan-bright);
  transform: translateY(-3px);
}
.stat-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34, 211, 238, 0.12);
  border-radius: 10px;
  color: var(--cyan-bright);
  flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cyan-bright);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  white-space: nowrap;
}
.stat-item .num .suffix {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cyan-bright);
  opacity: 0.85;
}
.stat-item .lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

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

.live-ticker {
  background: linear-gradient(90deg, var(--bg-card) 0%, var(--bg-elev) 50%, var(--bg-card) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  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(--bg-card), transparent); }
.live-ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg-card), transparent); }

.live-ticker-track {
  display: flex; gap: 48px;
  animation: ticker-scroll 50s linear infinite;
  width: fit-content;
  white-space: nowrap;
}
@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;
  color: var(--text-soft);
  font-weight: 500;
}
.live-ticker-item .ld {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ld-pulse 1.5s ease-in-out infinite;
}
.live-ticker-item .ld-green { background: var(--green-bright); box-shadow: 0 0 0 0 var(--green-glow); }
.live-ticker-item .ld-cyan { background: var(--cyan-bright); box-shadow: 0 0 0 0 var(--cyan-glow); }
.live-ticker-item .ld-red { background: var(--emergency); box-shadow: 0 0 0 0 var(--emergency-glow); }
@keyframes ld-pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.live-ticker-item strong {
  color: var(--cyan-bright);
  font-weight: 700;
}

/* =========================================================================
   SERVICES
   ========================================================================= */

.services {
  padding: 96px 0;
}
.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--cyan-glow);
}

.service-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-deep);
}
.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 40%, rgba(10, 22, 40, 0.7) 100%);
}

.service-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emergency), #dc2626);
  color: white;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px var(--emergency-glow);
  animation: badge-pulse 1.8s ease-in-out infinite;
}
.service-badge.badge-green {
  background: linear-gradient(135deg, var(--green), #22c55e);
  color: var(--bg-deep);
  box-shadow: 0 4px 12px var(--green-glow);
}

.service-card-body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.service-icon-mini {
  position: absolute;
  top: -22px; right: 22px;
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-bright);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  z-index: 2;
}
.service-icon-mini svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.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(--cyan-bright);
  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
   ========================================================================= */

.process {
  padding: 96px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--green) 50%, var(--cyan) 100%);
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  color: var(--bg-deep);
  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.2rem;
  box-shadow: 0 0 0 6px var(--bg-deep), 0 12px 28px var(--cyan-glow);
}
.process-step:nth-child(5) .process-num {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  box-shadow: 0 0 0 6px var(--bg-deep), 0 12px 28px var(--green-glow);
}
.process-step h3 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================================
   TEAM SECTION
   ========================================================================= */

.team {
  padding: 96px 0;
}
.team-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
}
.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: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--line);
  aspect-ratio: 4/3;
  position: relative;
}
.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: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.team-content h2 .accent { color: var(--green-bright); }
.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: 12px;
  margin-bottom: 32px;
  list-style: none;
}
.team-features li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-soft);
  font-size: 0.98rem;
}
.team-features li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--green-bright);
  background: rgba(74, 222, 128, 0.12);
  padding: 3px;
  border-radius: 6px;
  margin-top: 2px;
}
.team-features strong { color: var(--text); }

/* =========================================================================
   REVIEWS
   ========================================================================= */

.reviews {
  padding: 96px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}
.review-stars {
  display: flex; gap: 2px; margin-bottom: 16px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--green-bright); fill: var(--green-bright); }
.review-text {
  color: var(--text-soft);
  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(--line);
  padding-top: 20px;
}
.review-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  color: var(--bg-deep);
  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(--text);
  font-size: 0.94rem;
  font-family: var(--font-display);
}
.review-author .loc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.faq {
  padding: 96px 0;
}
.faq-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
}
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.08);
}
.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(--text);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 28px; height: 28px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan-bright);
  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(--cyan);
  color: var(--bg-deep);
}
.faq-answer {
  padding: 0 28px 24px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.96rem;
}
.faq-answer strong { color: var(--text); }

/* =========================================================================
   AREAS WE COVER
   ========================================================================= */

.areas {
  padding: 96px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.areas-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1080px; margin: 0 auto;
}
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.area-card:hover {
  border-color: var(--cyan);
  background: var(--bg-elev);
  transform: translateX(3px);
}
.area-card svg {
  width: 14px; height: 14px;
  color: var(--cyan-bright);
  flex-shrink: 0;
}

/* Nearby areas (on area pages) */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 920px; margin: 0 auto;
}
.nearby-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  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(--cyan);
  transform: translateX(4px);
}
.nearby-card-info { display: flex; flex-direction: column; gap: 3px; }
.nearby-card .name {
  font-family: var(--font-display);
  font-weight: 600; color: var(--text);
  font-size: 0.98rem;
}
.nearby-card .meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.nearby-card svg {
  width: 16px; height: 16px;
  color: var(--cyan-bright);
}

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

.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-deep) 0%, #061425 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}
.cta-final-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.cta-final h2 .accent { color: var(--emergency-bright); }
.cta-final p {
  font-size: 1.12rem;
  color: var(--text-soft);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.btn-cta-huge {
  display: inline-flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--emergency) 0%, var(--emergency-bright) 50%, var(--emergency) 100%);
  background-size: 200% 200%;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  padding: 26px 52px;
  border-radius: 16px;
  letter-spacing: -0.01em;
  box-shadow:
    0 20px 60px var(--emergency-glow),
    0 0 80px 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: hidden;
  transition: transform 0.2s;
  animation: btn-em-breathe 1.6s ease-in-out infinite, btn-em-gradient 4s ease infinite;
  isolation: isolate;
}
.btn-cta-huge::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-em-shine 2.5s ease-in-out infinite;
}
.btn-cta-huge:hover {
  transform: translateY(-4px) scale(1.03);
}
.btn-cta-huge > * { position: relative; z-index: 2; }
.btn-cta-huge svg {
  width: 28px; height: 28px;
  animation: phone-ring 1.5s ease-in-out infinite;
}

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

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
  color: var(--text-muted);
}
.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 { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 380px;
  color: var(--text-soft);
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--emergency-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 8px;
  padding: 8px 0;
  min-height: 44px;
}
.footer-phone svg { width: 20px; height: 20px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  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: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan-bright); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text-faint);
  flex-wrap: wrap; gap: 16px;
}

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

.floating-call {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  background: linear-gradient(135deg, var(--emergency) 0%, var(--emergency-bright) 50%, var(--emergency) 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 14px 32px var(--emergency-glow), 0 0 0 0 var(--emergency-glow);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s;
  animation: fc-gradient 4s ease infinite, fc-pulse 1.8s 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 14px 32px var(--emergency-glow), 0 0 0 0 var(--emergency-glow); }
  50% { box-shadow: 0 14px 32px var(--emergency-glow), 0 0 0 14px rgba(239, 68, 68, 0); }
}
.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-em-shine 2.5s ease-in-out infinite;
}
.floating-call > * { position: relative; z-index: 1; }
.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;
  animation: phone-ring 1.5s ease-in-out infinite;
}
.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 (same pattern as sites 1&2, dark theme)
   ========================================================================= */

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(10px);
  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: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  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: rgba(255,255,255,0.05);
  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: rgba(255,255,255,0.1); color: var(--text); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-right: 36px;
  line-height: 1.2;
}
.modal h3 .accent { color: var(--cyan-bright); }

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

.modal-features {
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.15);
  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-soft);
  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(--cyan-bright);
  margin-top: 2px;
}
.modal-features strong { color: var(--text); font-weight: 700; }

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

.btn-modal-call {
  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: 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 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: btn-modal-breathe 1.6s ease-in-out infinite, btn-modal-gradient 4s ease infinite;
  isolation: isolate;
}
.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(--emergency-bright);
  animation: btn-modal-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none; z-index: -1;
}
.btn-modal-call > * { position: relative; z-index: 2; }
@keyframes btn-modal-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); box-shadow: 0 18px 50px var(--emergency-glow), 0 0 100px var(--emergency-glow), 0 0 140px rgba(239, 68, 68, 0.3), inset 0 2px 0 rgba(255,255,255,0.4), 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%; }
}
@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: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 {
  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(--text); }

/* =========================================================================
   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
   ========================================================================= */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { order: -1; max-width: 640px; margin: 0 auto; width: 100%; }
  .hero-image-frame { aspect-ratio: 16/9; }
  .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(3, 1fr); }
  .process-grid::before { display: none; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-strip { font-size: 0.8rem; gap: 8px; padding: 8px 16px; }
  
  .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: var(--bg-card);
    padding: 20px; gap: 14px;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.open a { padding: 8px 0; min-height: 40px; display: flex; align-items: center; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 10px 16px; font-size: 0.85rem; }
  .nav-cta span { display: none; }
  
  .breadcrumbs { padding: 14px 0; }
  .breadcrumbs-inner { padding: 0 20px; font-size: 0.86rem; }
  
  .hero { padding: 48px 0 64px; }
  .hero-inner { padding: 0 20px; gap: 36px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .hero-quick { gap: 14px; }
  .hero-floater { display: none; }
  
  .symptoms { padding: 64px 0; }
  .symptoms-inner { padding: 0 20px; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 36px; }
  
  .stats-grid { padding: 0 20px; gap: 16px; }
  
  .services { padding: 64px 0; }
  .services-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  
  .process { padding: 64px 0; }
  .process-inner { padding: 0 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .team { padding: 64px 0; }
  .team-inner { padding: 0 20px; }
  
  .reviews { padding: 64px 0; }
  .reviews-inner { padding: 0 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  
  .faq { padding: 64px 0; }
  .faq-inner { padding: 0 20px; }
  
  .areas { padding: 64px 0; }
  .areas-inner { padding: 0 20px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-card { padding: 14px 16px; min-height: 48px; }
  .nearby-grid { grid-template-columns: 1fr; }
  
  .cta-final { padding: 64px 0; }
  .cta-final-inner { padding: 0 20px; }
  .btn-cta-huge { font-size: 1.1rem; padding: 22px 36px; gap: 10px; }
  
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .footer-bottom { padding: 24px 20px 0; flex-direction: column; text-align: center; }
  .footer-col a { padding: 6px 0; min-height: 36px; display: inline-flex; align-items: center; }
  
  .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)); }
  
  .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.7rem; }
  .floating-call-text .big { font-size: 0.92rem; }
}

/* =========================================================================
   INNER PAGES — Breadcrumbs, content sections, article styles, etc.
   ========================================================================= */

.breadcrumbs {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
}
.breadcrumbs-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumbs a { color: rgba(255,255,255,0.65); transition: color 0.2s; min-height: 36px; display: inline-flex; align-items: center; padding: 4px 0; }
.breadcrumbs a:hover { color: var(--cyan-bright); }
.breadcrumbs .sep { color: rgba(255,255,255,0.25); }
.breadcrumbs .current { color: white; font-weight: 500; }

/* Hero quick row (inner page hero) */
.hero-quick {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 24px;
}
.hero-quick-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.hero-quick-item svg {
  width: 18px; height: 18px;
  color: var(--green);
  background: rgba(74,222,128,0.12);
  padding: 2px;
  border-radius: 5px;
}

/* Content sections (inner pages) */
.content-section {
  padding: 80px 0;
  background: var(--bg-deep);
}
.content-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.content-block, .article-content {
  color: rgba(255,255,255,0.85);
  font-size: 1.04rem;
  line-height: 1.75;
}
.content-block h2, .article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: white;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.content-block h3, .article-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin: 36px 0 16px;
  letter-spacing: -0.01em;
}
.content-block h4, .article-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan-bright);
  margin: 28px 0 12px;
}
.content-block p, .article-content p {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.78);
}
.content-block strong, .article-content strong { color: white; font-weight: 700; }
.article-content a { color: var(--cyan-bright); text-decoration: underline; }
.article-content a:hover { color: white; }

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border-left: 3px solid var(--cyan);
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
  line-height: 1.55;
}
.feature-list li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--green);
  background: rgba(74,222,128,0.15);
  padding: 3px;
  border-radius: 6px;
  margin-top: 1px;
}
.feature-list strong { color: white; font-weight: 700; }

/* Service mini links */
.service-list-mini {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}
.service-mini {
  display: inline-flex;
  padding: 10px 18px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 999px;
  color: var(--cyan-bright);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s;
}
.service-mini:hover {
  background: var(--cyan);
  color: white;
  border-color: var(--cyan);
  transform: translateY(-2px);
}

/* Blog mini list */
.blog-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.blog-mini {
  display: block;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: white;
  font-weight: 500;
  font-size: 0.96rem;
  transition: all 0.2s;
}
.blog-mini:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
  background: rgba(34, 211, 238, 0.06);
}

/* Content CTA box */
.content-cta {
  margin-top: 48px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 18px;
  text-align: center;
}
.content-cta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.content-cta p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.content-cta .btn-primary { display: inline-flex; }

/* Nearby section (for area pages) */
.nearby-section {
  padding: 72px 0;
  background: var(--bg);
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 880px;
  margin: 32px auto 0;
}
.nearby-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  color: white;
  font-weight: 500;
  transition: all 0.2s;
}
.nearby-card:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
  background: rgba(34, 211, 238, 0.06);
}
.nearby-card svg {
  width: 16px; height: 16px;
  color: var(--cyan-bright);
  flex-shrink: 0;
}

/* Article hero */
.article-hero {
  background: var(--bg);
  padding: 72px 0 56px;
  text-align: center;
}
.article-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.article-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(--cyan-bright);
  padding: 6px 14px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 999px;
  margin-bottom: 24px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: white;
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.article-summary {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
}

/* Contact page grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.contact-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  color: white;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card h3 { color: white; font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font-display); }
.contact-card p { color: rgba(255,255,255,0.7); margin-bottom: 6px; font-size: 0.95rem; }
.contact-card .contact-link {
  color: var(--cyan-bright);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Reviews grid for /resenas page (reuse existing review-card) */

/* Mobile inner pages */
@media (max-width: 768px) {
  .content-section { padding: 56px 0; }
  .content-inner { padding: 0 20px; }
  .content-block h2, .article-content h2 { font-size: 1.6rem; }
  .article-hero { padding: 48px 0 36px; }
  .article-inner { padding: 0 20px; }
  .article-hero h1 { font-size: 1.8rem; }
  .article-summary { font-size: 1.02rem; }
  .nearby-grid { grid-template-columns: 1fr; }
  .blog-grid-mini { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .content-cta { padding: 28px 20px; }
  .content-cta h3 { font-size: 1.3rem; }
  .breadcrumbs-inner { padding: 0 20px; font-size: 0.82rem; flex-wrap: wrap; }
}

/* =========================================================================
   SMALL PHONES (≤480px) — typography & spacing tightening
   ========================================================================= */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero { padding: 36px 0 48px; }
  .hero-inner { padding: 0 16px; gap: 28px; }
  .hero h1 { font-size: 1.75rem; line-height: 1.15; }
  .hero-lead { font-size: 0.98rem; }
  .hero-badge { font-size: 0.72rem; padding: 6px 10px; }
  .hero-image { max-width: 100%; }
  .hero-image-frame { border-radius: 16px; aspect-ratio: 16/9; }
  .hero-image-frame::after { display: none; }
  .hero-floater { display: none; }

  .top-strip { font-size: 0.74rem; padding: 6px 12px; }
  .top-strip a { white-space: nowrap; }

  .nav { padding: 12px 16px; }
  .logo .lmain { font-size: 0.92rem; }
  .logo .lmiami { font-size: 0.68rem; }
  .nav-cta { padding: 8px 12px; font-size: 0.8rem; }

  .section-header h2 { font-size: 1.55rem; line-height: 1.2; }
  .section-header p { font-size: 0.94rem; }
  .section-tag { font-size: 0.7rem; padding: 5px 10px; }

  .services, .process, .team, .reviews, .faq, .areas, .symptoms { padding: 48px 0; }
  .services-inner, .process-inner, .team-inner, .reviews-inner,
  .faq-inner, .areas-inner, .symptoms-inner { padding: 0 16px; }

  .service-card-body { padding: 18px; }
  .service-card-body h3 { font-size: 1.15rem; }
  .service-card-body p { font-size: 0.92rem; }

  .areas-grid { grid-template-columns: 1fr; }
  .stats-band { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 16px; }
  .stat-item { padding: 20px 14px; gap: 10px; }
  .stat-icon { width: 36px; height: 36px; }
  .stat-icon svg { width: 18px; height: 18px; }
  .stat-item .num { font-size: 2rem; }
  .stat-item .num .suffix { font-size: 0.95rem; }
  .stat-item .lbl { font-size: 0.78rem; line-height: 1.35; }

  .btn-emergency, .btn-ghost, .btn-cta-huge {
    font-size: 0.95rem; padding: 14px 20px;
  }
  .btn-cta-huge { font-size: 1rem; padding: 18px 24px; }

  .footer-grid { padding: 0 16px; }
  .footer-bottom { padding: 20px 16px 0; font-size: 0.82rem; }

  .floating-call { bottom: 12px; right: 12px; padding: 10px 14px; }
  .floating-call-text .tiny { font-size: 0.65rem; }
  .floating-call-text .big { font-size: 0.85rem; }

  .article-hero h1 { font-size: 1.55rem; }
  .content-block h2 { font-size: 1.35rem; }
  .content-block h3 { font-size: 1.1rem; }
}

/* =========================================================================
   GLOBAL — keep images responsive and prevent overflow on any viewport
   ========================================================================= */
img { max-width: 100%; height: auto; }

/* General-purpose accent colors (for inner-page h1/h2/h3 spans) */
.accent-cyan { color: var(--cyan-bright); }
.accent-green { color: var(--green-bright); }
.accent-red { color: var(--emergency-bright); }
