/* =============================================
   GUÍA FEDERAL DESIGN SYSTEM — v1.0
   Font: Space Grotesk (headings) + Inter (body)
   ============================================= */
:root {
  --bg:         #F8F9FA;
  --bg-alt:     #EEEEF0;
  --surface:    #FFFFFF;
  --primary:    #0F0F0F;
  --accent:     #7F1D1D;
  --accent-hi:  #DC2626;
  --accent-rgb: 220, 38, 38;

  --text:       #0F0F0F;
  --text-dim:   #4B5563;
  --text-faint: #9CA3AF;

  --border:     rgba(0,0,0,0.07);
  --border-hi:  rgba(0,0,0,0.13);

  --glass-bg:   rgba(248,249,250,0.88);
  --glass-blur: blur(16px);
  --shadow:     0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.10);

  --radius:     16px;
  --radius-lg:  28px;
  --radius-pill:100px;
}

[data-theme="dark"] {
  --bg:         #0A0A0A;
  --bg-alt:     #111111;
  --surface:    #1A1A1A;
  --primary:    #F5F5F5;
  --accent:     #EF4444;
  --accent-hi:  #F87171;
  --text:       #F0F0F0;
  --text-dim:   #A3A3A3;
  --text-faint: #404040;
  --border:     rgba(255,255,255,0.07);
  --border-hi:  rgba(255,255,255,0.13);
  --glass-bg:   rgba(10,10,10,0.92);
  --shadow:     0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a { color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   FLOATING PILL NAV
   ============================================= */
nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  padding: 0 0.5rem 0 1.5rem;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  white-space: nowrap;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  margin-right: 1rem;
  letter-spacing: -0.03em;
}
.nav-brand span { color: var(--accent-hi); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-links a:not(.btn-cta) {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  transition: all 0.18s;
}
.nav-links a:not(.btn-cta):hover {
  color: var(--text);
  background: var(--bg-alt);
}


.theme-toggle-svg {
  cursor: pointer;
  stroke: var(--text);
  padding: 0.35rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-toggle-svg:hover { stroke: var(--accent-hi); background: var(--bg-alt); transform: rotate(15deg); }

/* Parallax Utility */
.parallax-section {
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.bg-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
  width: 100%;
  padding: 8rem 0 6rem;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .parallax-section { background-attachment: scroll; }
}

/* Article Hero Standard */
.article-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-attachment: scroll; /* Fixed is buggy on widescreen */
}

@media (min-width: 2560px) {
  .article-hero { min-height: 450px; }
}

.article-hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 12rem 0 8rem;
  background: linear-gradient(rgba(11, 17, 32, 0.88) 0%, rgba(11, 17, 32, 0.4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.article-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
  max-width: 900px;
}

.article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.btn-cta {
  background: var(--accent-hi);
  color: #FFFFFF !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  white-space: nowrap;
  margin-left: 0.375rem;
}
.btn-cta:hover { background: var(--accent); transform: translateY(-1px); }

.btn-cta-secondary {
  background: transparent;
  color: #FFFFFF !important;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.btn-cta-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.18s;
}
.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  nav {
    top: 0.75rem;
    width: calc(100% - 2rem);
    height: 52px;
    border-radius: var(--radius-pill);
    padding: 0 0.75rem 0 1.25rem;
    overflow: visible;
    flex-wrap: nowrap;
    gap: 0;
  }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.625rem);
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-hi);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.25rem;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links a:not(.btn-cta) {
    font-size: 0.95rem;
    padding: 0.625rem 0.875rem;
    border-radius: 12px;
  }
  .btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 0.25rem;
    padding: 0.75rem 1.25rem;
  }
  .theme-toggle-svg { display: none; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
  text-align: center;
  background: #0B1120;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-visual {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: brightness(0.9) saturate(1.1);
  will-change: transform;
  transform: translateY(0);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11,17,32,0.2) 0%, rgba(11,17,32,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 2rem;
  width: 100%;
  background: rgba(220, 38, 38, 0.12);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-cta {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
}

/* =============================================
   POLICE SIREN ANIMATION
   ============================================= */
.siren-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
  mix-blend-mode: screen;
}

.siren-light {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: blur(80px);
}

.siren-light.red {
  background: radial-gradient(circle at 15% 45%, rgba(255, 0, 0, 0.6) 0%, transparent 75%);
  animation: siren-pulse-red 4s infinite ease-in-out;
}

.siren-light.blue {
  background: radial-gradient(circle at 85% 45%, rgba(0, 100, 255, 0.6) 0%, transparent 75%);
  animation: siren-pulse-blue 4s infinite ease-in-out;
}

@keyframes siren-pulse-red {
  0%, 100% { opacity: 0; transform: scale(1); }
  15% { opacity: 1; transform: scale(1.1); }
  30% { opacity: 0; transform: scale(1); }
}

@keyframes siren-pulse-blue {
  0%, 50%, 100% { opacity: 0; transform: scale(1); }
  65% { opacity: 1; transform: scale(1.1); }
  80% { opacity: 0; transform: scale(1); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-hi);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* =============================================
   BENTO GRID
   ============================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento-item {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
}

.bento-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-hi);
  box-shadow: var(--shadow-lg);
}

.bento-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.bento-item p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

.btn-mini {
  margin-top: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent-hi);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bento-span-2 { grid-column: span 2; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-span-2 { grid-column: span 2; }
}

@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .wz-options { grid-template-columns: 1fr !important; }
}

/* =============================================
   SECTION DEFAULTS
   ============================================= */
section { padding: 6rem 0; }

.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-hi);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  max-width: 640px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* =============================================
   HOW IT WORKS STEPS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow);
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bg-alt);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-text-stroke: 2px var(--border-hi);
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.step-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* =============================================
   CHECKLIST / ELIGIBILITY ITEMS
   ============================================= */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.checklist-icon {
  width: 24px; height: 24px;
  background: rgba(220,38,38,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-hi);
  font-weight: 700;
  font-size: 0.8rem;
}

.checklist-item p { font-size: 0.95rem; color: var(--text-dim); margin: 0; }
.checklist-item strong { color: var(--text); }

/* =============================================
   FACILITY INFO CARD
   ============================================= */
.facility-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-card .info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-hi);
  margin-bottom: 0.375rem;
}

.info-card .info-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

@media (max-width: 640px) { .facility-info-grid { grid-template-columns: 1fr; } }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { background: var(--bg-alt); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.faq-item h4::before {
  content: 'P';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--accent-hi);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.faq-item p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.65; }

@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-alt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-alt a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.925rem;
  transition: all 0.2s;
}

.contact-alt a:hover { border-color: var(--accent-hi); color: var(--accent-hi); }

.contact-alt .alt-icon {
  width: 36px; height: 36px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-hi);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-textarea { min-height: 110px; resize: vertical; margin-bottom: 0.875rem; }

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--accent-hi);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.btn-submit:hover { background: var(--accent); transform: translateY(-1px); }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   LEGAL DISCLAIMER
   ============================================= */
.legal-disclaimer {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.disclaimer-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.legal-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

.legal-disclaimer strong { color: var(--text); }

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 998;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* =============================================
   SPOKE / FACILITY PAGES
   ============================================= */
.spoke-main {
  max-width: 900px;
  margin: 8rem auto 0;
  padding: 3rem 2rem 0;
}
.spoke-title { font-size: clamp(2rem,5vw,3.5rem); margin-bottom: 1.5rem; }

.spoke-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 2.5rem 0;
  box-shadow: var(--shadow);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #0F0F0F;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

[data-theme="dark"] footer { background: #080808; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.footer-brand span { color: var(--accent-hi); }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.5);
}

.footer-email {
  color: var(--accent-hi);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-hi); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.25); max-width: 500px; text-align: right; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; max-width: 100%; }
}

/* =============================================
   ANIMATION
   ============================================= */
.reveal-mask {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-mask.visible { opacity:1; transform:translateY(0); }

/* =============================================
   SECTION EYEBROW (reusable)
   ============================================= */
.section-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-hi);
  margin-bottom: 0.75rem;
}

/* =============================================
   BENTO CARDS (module-style grid)
   ============================================= */
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent-hi);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bento-span-2 { grid-column: span 2; }

.bento-icon { display: none; }

.bento-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
}

.bento-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) { .bento-span-2 { grid-column: span 1; } }

/* =============================================
   FACILITY DIRECTORY CARDS
   ============================================= */
.facility-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  box-shadow: var(--shadow);
}

.facility-card:hover {
  border-color: var(--accent-hi);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.facility-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.25rem;
  width: fit-content;
}

/* Theme-safe status badges */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
.badge-green  { background: rgba(220,38,38,0.12); color: var(--accent-hi); }
.badge-blue   { background: rgba(59,130,246,0.12);  color: #60a5fa; }
.badge-amber  { background: rgba(245,158,11,0.12);  color: #d97706; }
.badge-red    { background: rgba(220,38,38,0.12);   color: #f87171; }

/* Theme-safe tip/info blocks inside cards */
.tip-block {
  background: rgba(220,38,38,0.06);
  border-left: 3px solid var(--accent-hi);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 0.75rem;
}
.tip-block strong { color: var(--text); }

/* Urgency alert inside content sections */
.urgency-alert {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.urgency-alert strong { color: var(--text); }

.facility-card h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
}

.facility-card > p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

.facility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  list-style: none;
  margin: 0.5rem 0 0.25rem;
}

.facility-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-dim);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.facility-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-hi);
  margin-top: 0.5rem;
}

/* =============================================
   CONTACT FORM STANDALONE
   ============================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

/* .check mark inside checklist */
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-hi);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

/* =============================================
   SITE FOOTER (alias for base footer)
   ============================================= */
.site-footer {
  background: #0F0F0F;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

[data-theme="dark"] footer { background: #080808; }
[data-theme="dark"] .site-footer { background: #080808; }

.site-footer .nav-brand { color: #fff !important; text-decoration: none; }
.site-footer .nav-brand span { color: var(--accent-hi); }

/* =============================================
   STEP CARD H3 (for 3-step modules)
   ============================================= */
.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

/* =============================================
   WIZARD
   ============================================= */
#wizard {
  max-width: 620px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.wz-progress {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-hi);
  margin-bottom: 1rem;
}

.wz-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.4;
}

.wz-options {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.wz-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  width: 100%;
}

.wz-btn:hover {
  border-color: var(--accent-hi);
  background: rgba(220, 38, 38, 0.08);
  color: var(--accent-hi);
}

.wz-btn-primary {
  background: var(--accent-hi);
  border-color: var(--accent-hi);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: opacity 0.18s;
}

.wz-btn-primary:hover { opacity: 0.88; }

.wz-reset {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 1rem;
  padding: 0.25rem 0;
  font-family: 'Inter', sans-serif;
  text-decoration: underline;
}

.wz-reset:hover { color: var(--text); }

.wz-result-summary {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */
/* =============================================
   ARTICLE BODY (Premium Typography)
   ============================================= */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--text-dim);
}

.article-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.85rem;
  color: var(--text);
  margin: 3.5rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: 1.35rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}

.article-body p { margin-bottom: 1.75rem; }

.article-body strong { color: var(--text); font-weight: 600; }

.article-body ul, .article-body ol {
  margin: 1.5rem 0 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-body blockquote, .info-box, .warn-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent-hi);
  padding: 2rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 3rem 0;
  font-style: italic;
  color: var(--text);
}

.warn-box { border-left-color: #f59e0b; background: rgba(245,158,11,0.05); }

.article-cta {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin: 4rem 0;
  box-shadow: var(--shadow-lg);
}

/* =============================================
   ULTRA WIDESCREEN OPTIMIZATION
   ============================================= */
@media (min-width: 2560px) {
  .container { max-width: 1800px; }
  .article-body { font-size: 1.25rem; max-width: 1000px; }
  .hero { min-height: 70vh; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .hero { padding: 10rem 1.5rem 5rem; min-height: 85vh; }
  .steps-grid { grid-template-columns: 1fr; }
  #wizard { padding: 1.75rem 1.25rem; }
}
/* =============================================
   PRICING & SERVICES SECTION
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border: 2px solid var(--accent-hi);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: 1.25rem;
  right: -2rem;
  background: var(--accent-hi);
  color: #fff;
  padding: 0.25rem 3rem;
  font-size: 0.7rem;
  font-weight: 800;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.price-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-hi);
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-tag span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-faint);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-hi);
  font-weight: 900;
}

.cta-banner {
  background: #0F0F0F; /* Consistent dark background for both themes */
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  color: #fff;
  margin: 4rem 0;
  border: 1px solid var(--border);
}

.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .pricing-card.popular { transform: none; }
  .pricing-grid { gap: 1.5rem; }
}

/* Added by hardening script */
.warning-card {
  background: rgba(220, 38, 38, 0.05);
  border-left: 4px solid var(--accent-hi);
  padding: 2rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2.5rem 0;
  animation: warning-pulse 4s infinite ease-in-out;
  font-size: 1.05rem;
  line-height: 1.7;
}

@keyframes warning-pulse {
  0%, 100% { border-left-color: var(--accent-hi); box-shadow: none; }
  50% { border-left-color: #ef4444; box-shadow: inset 5px 0 15px rgba(220,38,38,0.05); }
}
.warning-card strong {
  color: var(--accent-hi);
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Global Blog Tag Aesthetic */
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-hi);
  background: rgba(220, 38, 38, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background: var(--accent-hi);
  color: #fff;
  border-color: var(--accent-hi);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
}

/* =============================================
   BLOG LEAD CAPTURE CARD
   ============================================= */
.blog-cta-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 3rem 3.5rem;
  margin: 4rem 0;
  text-align: center;
  border: 1px solid var(--border-hi);
  border-top: 5px solid var(--accent-hi);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

.blog-cta-card .section-label {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: var(--accent-hi);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.blog-cta-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.blog-cta-card > p {
  color: var(--text-dim);
  max-width: 460px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.blog-cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.blog-cta-form input,
.blog-cta-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-hi);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.blog-cta-form input::placeholder,
.blog-cta-form textarea::placeholder { color: var(--text-faint); }

.blog-cta-form input:focus,
.blog-cta-form textarea:focus {
  outline: none;
  border-color: var(--accent-hi);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}

.blog-cta-form textarea {
  grid-column: 1 / -1;
  height: 110px;
  resize: vertical;
}

.blog-cta-form button {
  grid-column: 1 / -1;
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0;
}

.blog-cta-whatsapp {
  display: block;
  margin-top: 1.25rem;
  color: var(--accent-hi);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.blog-cta-whatsapp:hover { text-decoration: underline; }

@media (max-width: 620px) {
  .blog-cta-card { padding: 2rem 1.5rem; }
  .blog-cta-form { grid-template-columns: 1fr; }
}
