/* ==========================================================================
   PanicZA marketing site — shared stylesheet
   Design tokens mirror panicsa-dashboard/src/theme/* so the public site
   reads as the same product as the control-room dashboard.
   ========================================================================== */

:root {
  --pza-bg: #0B0F14;
  --pza-surface: #151A21;
  --pza-surface-elevated: #1E242C;
  --pza-border: #2A323C;
  --pza-border-subtle: #1E252E;

  --pza-text: #F4F6F8;
  --pza-text-secondary: #9AA3AE;
  --pza-text-muted: #5C6670;

  --pza-primary: #E11D2E;
  --pza-primary-pressed: #B5111F;
  --pza-primary-glow: rgba(225, 29, 46, 0.35);

  --pza-accent: #C7CDD6;
  --pza-accent-subtle: rgba(199, 205, 214, 0.12);

  --pza-success: #2BB673;
  --pza-warning: #F5A524;

  --pza-radius-md: 12px;
  --pza-radius-lg: 20px;

  --pza-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --pza-max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--pza-font);
  font-weight: 500;
  background: var(--pza-bg);
  color: var(--pza-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.01em; }

h1 { font-size: clamp(34px, 5.5vw, 52px); font-weight: 800; }
h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }

.lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--pza-text-secondary);
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--pza-primary);
  margin-bottom: 12px;
}

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-head p {
  color: var(--pza-text-secondary);
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--pza-radius-md);
  font-family: var(--pza-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--pza-primary);
  color: #fff;
  box-shadow: 0 0 24px var(--pza-primary-glow);
}
.btn-primary:hover { background: var(--pza-primary-pressed); }

.btn-ghost {
  background: transparent;
  color: var(--pza-text);
  border-color: var(--pza-border);
}
.btn-ghost:hover { border-color: var(--pza-accent); background: var(--pza-accent-subtle); }

.btn-sm { padding: 9px 16px; font-size: 14px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pza-border-subtle);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

/* The <b> exists so the flex gap doesn't split the wordmark — weight stays the brand's own */
.brand b { font-weight: inherit; }

.brand span { color: var(--pza-primary); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pza-text-secondary);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav a:hover { color: var(--pza-text); background: var(--pza-accent-subtle); }
.site-nav a.active { color: var(--pza-text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--pza-border);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--pza-text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--pza-surface);
    border-bottom: 1px solid var(--pza-border);
    padding: 12px 24px 20px;
    gap: 2px;
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 12px; font-size: 16px; }

  .site-nav .nav-cta {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .header-actions .btn { display: none; }
}

@media (min-width: 901px) {
  .site-nav .nav-cta { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, var(--pza-primary-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-copy .lead { margin: 20px 0 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--pza-text-muted);
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: flex; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--pza-surface);
  border: 1px solid var(--pza-border-subtle);
  border-radius: var(--pza-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 { display: flex; align-items: center; gap: 10px; }

.card p { color: var(--pza-text-secondary); font-size: 15px; flex-grow: 1; }

.card .btn { align-self: flex-start; }

.card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pza-radius-md);
  background: var(--pza-accent-subtle);
  font-size: 20px;
}

/* --------------------------------------------------------------------------
   Steps (How It Works)
   -------------------------------------------------------------------------- */

.step {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--pza-border-subtle);
}

.step:last-of-type { border-bottom: none; }

.step:nth-of-type(even) .step-copy { order: 2; }
.step:nth-of-type(even) .step-visual { order: 1; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pza-primary);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.step-copy h3 { font-size: 24px; margin-bottom: 12px; }

.step-copy p { color: var(--pza-text-secondary); max-width: 480px; }

.step-copy .fineprint {
  margin-top: 12px;
  font-size: 13px;
  color: var(--pza-text-muted);
}

@media (max-width: 800px) {
  .step { grid-template-columns: 1fr; gap: 28px; }
  .step:nth-of-type(even) .step-copy { order: 1; }
  .step:nth-of-type(even) .step-visual { order: 2; }
  .step-visual { display: flex; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Phone mockup frame
   -------------------------------------------------------------------------- */

.phone {
  width: 270px;
  aspect-ratio: 9 / 19;
  background: #05080C;
  border: 3px solid #262E38;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--pza-bg);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--pza-text-secondary);
  flex-shrink: 0;
}

.statusbar .sb-icons { letter-spacing: 2px; }

.screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 16px;
  min-height: 0;
}

.screen-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Mock form fields */
.mock-field {
  background: var(--pza-surface);
  border: 1px solid var(--pza-border-subtle);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 8px;
}

.mock-field label {
  display: block;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--pza-text-muted);
}

.mock-field div {
  font-size: 11px;
  font-weight: 600;
  color: var(--pza-text);
}

.mock-btn {
  background: var(--pza-primary);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 10px;
  padding: 10px;
  margin-top: auto;
}

.mock-caption {
  font-size: 9px;
  color: var(--pza-text-muted);
  text-align: center;
  margin-top: 8px;
}

/* Home-screen mock — mirrors panicsa-mobile HomeScreen.tsx */
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mock-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pza-surface-elevated);
  border: 1px solid var(--pza-border);
  color: var(--pza-text);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-greeting { flex: 1; line-height: 1.25; }
.mock-greeting small { display: block; font-size: 8px; color: var(--pza-text-secondary); }
.mock-greeting strong { font-size: 12px; font-weight: 700; }

.mock-info {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--pza-border);
  color: var(--pza-text-secondary);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.spill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 3px 7px;
  border-radius: 999px;
}

.spill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.spill.ok { color: var(--pza-success); background: rgba(43, 182, 115, 0.12); }
.spill.warn { color: var(--pza-warning); background: rgba(245, 165, 36, 0.12); }

.home-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: radial-gradient(circle at 50% 45%, var(--pza-primary-glow) 0%, transparent 62%);
  min-height: 0;
}

.home-center h5 { font-size: 15px; font-weight: 800; line-height: 1.2; }
.home-center .home-sub { font-size: 9px; color: var(--pza-text-secondary); max-width: 190px; }

/* Slide-to-confirm mock — mirrors SlideToConfirm.tsx */
.slide-track {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: var(--pza-surface-elevated);
  border: 1px solid var(--pza-border);
  display: flex;
  align-items: center;
  padding: 3px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.slide-handle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pza-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px var(--pza-primary-glow);
}

.slide-label {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--pza-text-secondary);
}

.slide-label .chev { color: var(--pza-text-muted); letter-spacing: -1px; }

.slide-track.mid .slide-handle { margin-left: 52%; }
.slide-track.mid .slide-label { opacity: 0.35; }

.hold-fallback {
  width: 100%;
  height: 26px;
  border-radius: 999px;
  background: var(--pza-surface-elevated);
  border: 1px solid var(--pza-border-subtle);
  color: var(--pza-text-muted);
  font-size: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-hint { font-size: 8px; color: var(--pza-text-muted); }

/* Bottom tab bar mock — mirrors BottomTabBar.tsx (Home / Community / Chat) */
.tabbar {
  display: flex;
  border-top: 1px solid var(--pza-border-subtle);
  background: var(--pza-surface);
  padding: 6px 0 8px;
  flex-shrink: 0;
}

.tabbar .tab {
  flex: 1;
  text-align: center;
  font-size: 7px;
  font-weight: 600;
  color: var(--pza-text-secondary);
  line-height: 1.4;
}

.tabbar .tab i { display: block; font-style: normal; font-size: 12px; }
.tabbar .tab.active { color: var(--pza-primary); }

/* Active-alert card mock — mirrors ActiveAlertCard.tsx (PENDING / DISPATCHED) */
.alert-card {
  flex: 1;
  min-height: 0;
  margin: 4px 0;
  background: var(--pza-surface);
  border: 1px solid var(--pza-border-subtle);
  border-radius: 14px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.alert-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-badge.amber { color: var(--pza-warning); background: rgba(245, 165, 36, 0.14); }
.alert-badge.green { color: var(--pza-success); background: rgba(43, 182, 115, 0.14); }

.alert-heading { font-size: 19px; font-weight: 800; letter-spacing: 1.5px; }
.alert-heading.amber { color: var(--pza-warning); }
.alert-heading.green { color: var(--pza-success); }

.alert-sub { font-size: 9px; color: var(--pza-text-secondary); }

.timer-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pza-surface-elevated);
  border-radius: 999px;
  padding: 6px 12px;
}

.timer-row span { font-size: 8px; color: var(--pza-text-secondary); }
.timer-row strong { font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; }

.acard-btn {
  width: 100%;
  border-radius: 9px;
  padding: 7px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.acard-btn.ghost {
  background: var(--pza-surface-elevated);
  border: 1px solid var(--pza-border);
  color: var(--pza-text);
}

.acard-btn.danger {
  border: 1px solid var(--pza-primary);
  color: var(--pza-primary);
}

.alert-footnote { font-size: 7.5px; color: var(--pza-text-muted); margin-top: auto; }

/* Native alert dialog mock (the "Resolved" popup) */
.dialog-dim {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dialog-card {
  width: 100%;
  background: var(--pza-surface-elevated);
  border: 1px solid var(--pza-border);
  border-radius: 14px;
  padding: 14px 12px 8px;
  text-align: center;
}

.dialog-card h6 { font-size: 12px; font-weight: 800; margin-bottom: 5px; }
.dialog-card p { font-size: 9px; color: var(--pza-text-secondary); margin-bottom: 10px; }

.dialog-ok {
  border-top: 1px solid var(--pza-border-subtle);
  padding-top: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--pza-primary);
}

/* Emergency-type sheet */
.sheet-dim {
  flex: 1;
  background: rgba(5, 8, 12, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sheet {
  background: var(--pza-surface);
  border-radius: 18px 18px 0 0;
  padding: 14px 12px 16px;
}

.sheet h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.sheet-option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pza-surface-elevated);
  border: 1px solid var(--pza-border-subtle);
  border-radius: 10px;
  padding: 6px 8px;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
}

.sheet-option .opt-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(225, 29, 46, 0.14);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sheet-option .opt-chev {
  margin-left: auto;
  color: var(--pza-text-muted);
  font-size: 10px;
  font-weight: 600;
}

.sheet-skip {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--pza-text-secondary);
  border: 1px solid var(--pza-border);
  border-radius: 10px;
  padding: 7px;
  margin-top: 7px;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list { max-width: 760px; }

.faq-list details {
  background: var(--pza-surface);
  border: 1px solid var(--pza-border-subtle);
  border-radius: var(--pza-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 600;
  color: var(--pza-text-muted);
  flex-shrink: 0;
}

.faq-list details[open] summary::after { content: '\2212'; }

.faq-list details p {
  padding: 0 22px 18px;
  color: var(--pza-text-secondary);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   Numbered list (onboarding steps)
   -------------------------------------------------------------------------- */

.numbered-steps {
  counter-reset: nstep;
  list-style: none;
  max-width: 720px;
}

.numbered-steps li {
  counter-increment: nstep;
  position: relative;
  padding: 0 0 32px 60px;
}

.numbered-steps li::before {
  content: counter(nstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pza-surface-elevated);
  border: 1px solid var(--pza-border);
  color: var(--pza-primary);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numbered-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 4px;
  width: 1px;
  background: var(--pza-border-subtle);
}

.numbered-steps h3 { margin-bottom: 6px; font-size: 18px; }

.numbered-steps p { color: var(--pza-text-secondary); font-size: 15px; }

/* --------------------------------------------------------------------------
   Store badges (coming soon)
   -------------------------------------------------------------------------- */

.store-badges { display: flex; flex-wrap: wrap; gap: 14px; }

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pza-surface);
  border: 1px solid var(--pza-border);
  border-radius: var(--pza-radius-md);
  padding: 12px 22px;
  opacity: 0.65;
  cursor: default;
  user-select: none;
}

.store-badge .sb-logo { font-size: 26px; }

.store-badge .sb-text small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--pza-warning);
}

.store-badge .sb-text strong { font-size: 17px; font-weight: 700; }

/* --------------------------------------------------------------------------
   Callout / banner
   -------------------------------------------------------------------------- */

.callout {
  background: var(--pza-surface);
  border: 1px solid var(--pza-border-subtle);
  border-left: 4px solid var(--pza-primary);
  border-radius: var(--pza-radius-md);
  padding: 20px 24px;
  color: var(--pza-text-secondary);
  font-size: 15px;
  max-width: 760px;
}

.callout strong { color: var(--pza-text); }

.cta-band {
  background: var(--pza-surface);
  border-top: 1px solid var(--pza-border-subtle);
  border-bottom: 1px solid var(--pza-border-subtle);
  text-align: center;
  padding: 64px 0;
}

.cta-band p {
  color: var(--pza-text-secondary);
  margin: 12px auto 28px;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 760px;
}

.contact-card {
  background: var(--pza-surface);
  border: 1px solid var(--pza-border-subtle);
  border-radius: var(--pza-radius-lg);
  padding: 28px;
}

.contact-card h3 { margin-bottom: 8px; }

.contact-card p { color: var(--pza-text-secondary); font-size: 15px; margin-bottom: 16px; }

.contact-card a.email {
  font-size: 17px;
  font-weight: 700;
  color: var(--pza-primary);
  text-decoration: none;
}

.contact-card a.email:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--pza-border-subtle);
  padding: 48px 0 32px;
  margin-top: 72px;
}

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

.footer-brand .brand { margin-bottom: 12px; }

.footer-brand p {
  color: var(--pza-text-muted);
  font-size: 13px;
  max-width: 340px;
}

.site-footer h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--pza-text-muted);
  margin-bottom: 12px;
}

.site-footer ul { list-style: none; }

.site-footer ul li { margin-bottom: 8px; }

.site-footer ul a {
  color: var(--pza-text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.site-footer ul a:hover { color: var(--pza-text); }

.emergency-note {
  background: var(--pza-surface);
  border: 1px solid var(--pza-border-subtle);
  border-radius: var(--pza-radius-md);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--pza-text-secondary);
  margin-bottom: 24px;
}

.emergency-note strong { color: var(--pza-text); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--pza-text-muted);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
