/* ============================================================
   Odentz 24h — Landing Page de Emergência
   Production stylesheet (vanilla CSS)
   ============================================================ */

:root {
  --odz-lime: #d9df38;
  --odz-lime-600: #c4ca28;
  --odz-lime-100: #f6f8c8;
  --odz-graphite: #2a2a2a;
  --odz-gray-700: #5a5a5a;
  --odz-gray-600: #747474;
  --odz-gray-500: #8a8a8a;
  --odz-gray-300: #cfd4db;
  --odz-gray-200: #e3e6ea;
  --odz-gray-100: #f3f4f6;
  --odz-gray-50:  #fafbfc;
  --odz-white: #ffffff;
  --odz-bg-muted: var(--odz-gray-50);
  --odz-fg-1: var(--odz-graphite);
  --odz-fg-2: var(--odz-gray-700);
  --odz-fg-3: var(--odz-gray-500);
  --odz-border: var(--odz-gray-200);
  --odz-border-strong: var(--odz-gray-300);
  --odz-emergency: #e63946;
  --odz-success: #2f9e69;
  --odz-whatsapp: #25D366;
  --odz-whatsapp-600: #1ebc59;

  --odz-font-display: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --odz-font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --odz-font-accent: 'Barlow Condensed', 'Barlow', sans-serif;

  --odz-shadow-1: 0 1px 2px rgba(20,20,20,.06), 0 1px 1px rgba(20,20,20,.04);
  --odz-shadow-2: 0 4px 12px rgba(20,20,20,.08), 0 1px 2px rgba(20,20,20,.04);
  --odz-ring-focus: 0 0 0 3px rgba(217, 223, 56, .55);

  --container-max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  font-family: var(--odz-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--odz-fg-1);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#unidades { scroll-margin-top: 84px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

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

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--odz-font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.h2.center { text-align: center; }
.h2.on-dark { color: #fff; }
.h3 {
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 8px 0 4px;
}
.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--odz-fg-2);
  margin: 18px 0 24px;
  text-wrap: pretty;
}
.lead.center { text-align: center; margin-left: auto; margin-right: auto; }
.lead.on-dark { color: rgba(255,255,255,.78); }
.lead.narrow { max-width: 56ch; }
.lead.narrow-42 { max-width: 42ch; }
.lead strong, .display strong { color: var(--odz-fg-1); }
.lead.on-dark strong, .white { color: #fff; }
.dim { color: rgb(15, 14, 14); }
.lime-mark {
  background: var(--odz-lime);
  color: var(--odz-graphite);
  padding: 0 10px;
  margin-left: -10px;
  border-radius: 8px;
  display: inline-block;
}
.eyebrow {
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--odz-gray-600);
}
.eyebrow.center { text-align: center; display: block; }
.eyebrow--lime { color: var(--odz-lime); }
.center-block { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 10px 16px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn:focus-visible { outline: none; box-shadow: var(--odz-ring-focus); }

.btn--whatsapp {
  background: var(--odz-whatsapp);
  color: #fff;
}
.btn--whatsapp:hover { background: var(--odz-whatsapp-600); }

.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* Hero unit CTAs — two-line, full width of the stack */
.cta-unit {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 18px 12px 12px;
  border-radius: 16px;
  background: var(--odz-whatsapp);
  color: #fff;
  text-decoration: none;
  font-family: var(--odz-font-display);
  box-shadow: 0 8px 22px rgba(37,211,102,.28);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}
.cta-unit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.cta-unit:hover {
  background: var(--odz-whatsapp-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37,211,102,.34);
}
.cta-unit:active { transform: translateY(0); }
.cta-unit:focus-visible { outline: none; box-shadow: var(--odz-ring-focus); }

.cta-unit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-unit-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.cta-unit-title {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
}
.cta-unit-sub {
  font-family: var(--odz-font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.85);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cta-unit-arrow {
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .2s ease;
  opacity: .9;
}
.cta-unit:hover .cta-unit-arrow {
  transform: translateX(3px);
  opacity: 1;
}

@media (max-width: 640px) {
  .cta-unit { padding: 10px 16px 10px 10px; gap: 12px; border-radius: 14px; }
  .cta-unit-icon { width: 40px; height: 40px; border-radius: 10px; }
  .cta-unit-title { font-size: 15.5px; }
  .cta-unit-sub { font-size: 12px; }
}

/* WhatsApp green-circle logo (CSS art using inline svg via background works,
   but we use a span with mask for crispness). */
/* WhatsApp glyph — white-only, no background disc.
   Sits directly on the green button so the silhouette of the speech-bubble
   with phone-handset reads as the WhatsApp mark. */
.wa-logo {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23ffffff'%3E%3Cpath d='M16.04 4C9.39 4 4 9.39 4 16.04c0 2.12.55 4.19 1.6 6.02L4 28l6.13-1.6a12.04 12.04 0 0 0 5.91 1.51h.01c6.65 0 12.04-5.39 12.04-12.04 0-3.22-1.25-6.24-3.53-8.52A11.99 11.99 0 0 0 16.04 4Zm0 21.92h-.01a10.02 10.02 0 0 1-5.1-1.4l-.37-.22-3.66.96.98-3.57-.24-.38a9.98 9.98 0 0 1-1.53-5.32c0-5.53 4.5-10.03 10.03-10.03 2.68 0 5.2 1.04 7.09 2.94a9.95 9.95 0 0 1 2.94 7.09c0 5.53-4.5 10.03-10.03 10.03Zm5.5-7.51c-.3-.15-1.78-.88-2.06-.98-.28-.1-.48-.15-.68.15-.2.3-.78.98-.95 1.18-.18.2-.35.23-.65.08-.3-.15-1.27-.47-2.42-1.49-.9-.8-1.5-1.79-1.67-2.09-.18-.3-.02-.46.13-.61.13-.13.3-.35.45-.53.15-.18.2-.3.3-.5.1-.2.05-.38-.03-.53-.08-.15-.68-1.64-.93-2.24-.24-.59-.49-.51-.68-.52l-.58-.01c-.2 0-.53.07-.8.38-.28.3-1.05 1.03-1.05 2.51 0 1.48 1.08 2.91 1.23 3.11.15.2 2.13 3.25 5.16 4.55.72.31 1.28.5 1.72.64.72.23 1.38.2 1.9.12.58-.09 1.78-.73 2.03-1.43.25-.7.25-1.31.18-1.43-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.wa-logo--lg { width: 24px; height: 24px; }

/* ---------- Top brand strip ---------- */
.strip {
  background: var(--odz-graphite);
  color: #fff;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
}
.strip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--odz-lime);
  box-shadow: 0 0 0 4px rgba(217,223,56,.25);
}

/* ---------- Header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--odz-border);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.94);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
}
.header-logo img { height: 44px; }
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-status {
  font-size: 13px;
  color: var(--odz-fg-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--odz-success);
  box-shadow: 0 0 0 4px rgba(47,158,105,.18);
}

/* ---------- Hero ---------- */
.hero {
  padding: 56px 24px 40px;
  background: linear-gradient(180deg, #fff 0%, var(--odz-bg-muted) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: stretch;
  padding: 0;
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
/* Push the CTA cluster (buttons + micro-trust) to the bottom of the column
   so it lines up with the base of the photo on the right. */
.hero-copy .cta-stack { margin-top: auto; }
.pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: var(--odz-graphite);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--odz-font-display);
  letter-spacing: .04em;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.06);
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--odz-emergency);
  animation: odz-pulse 1.4s infinite;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.micro-trust {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--odz-fg-3);
}
.micro-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #cfd4db 100%);
  border: 1px solid var(--odz-border);
}
.hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.45) 100%);
}
.live-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--odz-graphite);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.live-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--odz-lime);
  animation: odz-pulse 1.4s infinite;
}
.hero-photo-card {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  background: rgba(26,26,26,.92);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-photo-card-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--odz-lime);
  color: var(--odz-graphite);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--odz-font-display);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.hero-photo-card-title {
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 14px;
}
.hero-photo-card-sub {
  font-size: 12px;
  opacity: .75;
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--odz-border);
  border-bottom: 1px solid var(--odz-border);
  background: #fff;
  padding: 18px 24px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
}
.trust-item { text-align: center; }
.trust-n {
  font-family: var(--odz-font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--odz-fg-1);
  line-height: 1;
}
.trust-l {
  font-size: 12px;
  color: var(--odz-fg-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* ---------- Emergencies ---------- */
.emerg { padding: 72px 24px; background: #fff; }
.emerg .h2 { margin: 10px 0 8px; }
.emerg .lead.center { margin: 0 auto 36px; }
.emerg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: #fff;
  border: 1px solid var(--odz-border);
  border-radius: 20px;
  box-shadow: var(--odz-shadow-1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card h4 {
  font-family: var(--odz-font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0;
}
.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--odz-fg-2);
}

.midcta {
  margin-top: 36px;
  padding: 28px 32px;
  border-radius: 20px;
  background: var(--odz-graphite);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.midcta-title {
  font-family: var(--odz-font-display);
  font-weight: 800;
  font-size: 24px;
}
.midcta-sub {
  opacity: .78;
  font-size: 14px;
  margin-top: 4px;
}
.midcta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Differentials ---------- */
.diff {
  background: var(--odz-graphite);
  color: #fff;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.diff-glow {
  position: absolute;
  right: -100px; top: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--odz-lime);
  opacity: .12;
  filter: blur(20px);
}
.diff-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 0;
}
.diff .h2 { margin: 10px 0 14px; }
.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 36px;
}
.diff-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.92);
  margin-bottom: 18px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.diff-list li:last-child { margin-bottom: 0; }
.diff-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--odz-lime);
  color: var(--odz-graphite);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--odz-font-display);
  font-weight: 900;
  font-size: 12px;
  margin-top: 1px;
  line-height: 1;
}

/* ---------- Reviews / Google ---------- */
.reviews {
  background: linear-gradient(180deg, #fff 0%, var(--odz-bg-muted) 100%);
  padding: 72px 24px;
}
.reviews-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}
.reviews-head .h2 { margin: 10px 0 0; font-size: 36px; }
.reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  text-align: right;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-rating-num {
  font-family: var(--odz-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--odz-graphite);
  letter-spacing: -0.02em;
}
.reviews-stars,
.review-stars {
  display: inline-flex;
  gap: 3px;
}
.reviews-stars span,
.review-stars span {
  width: 18px;
  height: 18px;
  background: #fabb05;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
}
.review-stars span { width: 14px; height: 14px; }
.reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--odz-fg-2);
}
.reviews-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--odz-font-display);
  font-weight: 700;
  color: var(--odz-graphite);
}
.reviews-count::before {
  content: "·";
  margin-right: 6px;
  color: var(--odz-fg-3);
}
.reviews-link {
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: var(--odz-graphite);
  border-bottom: 1.5px solid var(--odz-lime);
  padding-bottom: 2px;
}
.reviews-link:hover { color: var(--odz-lime-600); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.review {
  background: #fff;
  border: 1px solid var(--odz-border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--odz-shadow-1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: -6px;
  right: 18px;
  font-family: 'Barlow', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--odz-lime);
  opacity: .35;
  pointer-events: none;
}
.review-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--odz-fg-1);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--odz-border);
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--odz-graphite);
  color: var(--odz-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--odz-font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--odz-fg-1);
}
.review-when {
  font-size: 12px;
  color: var(--odz-fg-3);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .reviews-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .reviews-summary { align-items: flex-start; text-align: left; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews { padding: 56px 16px; }
  .reviews-head .h2 { font-size: 28px; }
  .reviews-rating-num { font-size: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Insurance wall ---------- */
.ins { padding: 64px 24px; background: #fff; }
.ins .h2 { margin: 10px 0 6px; font-size: 32px; }
.ins .lead { margin: 0 auto 28px; font-size: 15px; max-width: 52ch; }
.ins-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.ins-cell {
  position: relative;
  padding: 14px 12px;
  border: 1px solid var(--odz-border);
  border-radius: 12px;
  background: #fff;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ins-cell img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .78;
  transition: filter .25s ease, opacity .25s ease;
}
.ins-cell:hover {
  border-color: var(--odz-border-strong);
  box-shadow: var(--odz-shadow-1);
  transform: translateY(-1px);
}
.ins-cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.ins-cell--badge .ins-cell-tag {
  position: absolute;
  top: 6px;
  right: 6px;
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--odz-lime-100);
  color: #6a6f10;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(217,223,56,.5);
}
.ins-foot {
  font-size: 12px;
  color: var(--odz-fg-3);
  margin-top: 16px;
}

/* ---------- Units / maps ---------- */
.units { background: var(--odz-bg-muted); padding: 64px 24px; }
.units .h2 { margin: 10px 0 32px; font-size: 32px; }
.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.unit {
  background: #fff;
  border: 1px solid var(--odz-border);
  border-radius: 20px;
  box-shadow: var(--odz-shadow-1);
  overflow: hidden;
}
.unit-map {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e3e6ea;
  overflow: hidden;
}
.map-svg,
.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.map-pill {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  color: var(--odz-fg-1);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--odz-font-display);
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.unit-body { padding: 24px; }
.unit-meta {
  font-size: 14px;
  color: var(--odz-fg-2);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.unit-meta + .unit-meta { margin-bottom: 18px; }

/* ---------- Final CTA ---------- */
.final {
  padding: 72px 24px;
  background: var(--odz-graphite);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  left: -120px; bottom: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--odz-lime);
  opacity: .12;
  filter: blur(20px);
}
.final-inner { position: relative; padding: 0; }
.final-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,223,56,.15);
  color: var(--odz-lime);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--odz-font-display);
  letter-spacing: .08em;
  margin-bottom: 14px;
  border: 1px solid rgba(217,223,56,.3);
}
.final-pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--odz-emergency);
  animation: odz-pulse 1.4s infinite;
}
.final .h2 { font-size: 40px; margin: 0 0 6px; letter-spacing: -0.02em; }
.final .lead { font-size: 18px; margin: 0 0 28px; }
.final-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: #1b1b1b;
  color: rgba(255,255,255,.7);
  padding: 40px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 0;
}
.footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer p {
  font-size: 13px;
  margin: 12px 0 0;
  max-width: 34ch;
  line-height: 1.6;
}
.footer h5 {
  font-family: var(--odz-font-display);
  color: #fff;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.footer-meta {
  font-size: 13px;
  line-height: 1.7;
}
.footer-link {
  color: var(--odz-lime);
  text-decoration: none;
}
.footer-link:hover { text-decoration: underline; }
.footer-phone {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-family: var(--odz-font-display);
  font-weight: 600;
  letter-spacing: .01em;
}
.footer-phone:hover { color: #fff; }
.footer-bottom {
  margin: 32px auto 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  color: rgba(255,255,255,.45);
  display: flex;
  justify-content: space-between;
}

/* ---------- Animation ---------- */
@keyframes odz-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}

/* ============================================================
   Responsive — collapse to mobile (Variation C patterns)
   ============================================================ */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-photo { aspect-ratio: 5 / 4; max-width: 560px; margin: 0 auto; }
  .diff-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ins-grid { grid-template-columns: repeat(4, 1fr); }
  .emerg-grid { grid-template-columns: repeat(2, 1fr); }
  .units-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .strip { font-size: 12px; padding: 9px 16px; letter-spacing: .04em; text-align: center; }
  .header { padding: 12px 16px; }
  .header-logo img { height: 38px; }
  .header-status { display: none; }
  .container { padding-left: 16px; padding-right: 16px; }

  .hero { padding: 36px 16px 28px; }
  .display { font-size: clamp(34px, 8vw, 44px); }
  .lead { font-size: 16px; margin-top: 14px; margin-bottom: 22px; }

  .btn--unit { width: 100%; padding: 12px 16px; }
  .micro-trust { gap: 14px 18px; font-size: 12px; }

  .trust { padding: 22px 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust-n { font-size: 24px; }

  .emerg { padding: 56px 16px; }
  .emerg .h2 { font-size: 30px; }
  .emerg-grid { grid-template-columns: 1fr; }

  .midcta {
    padding: 22px 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .midcta-title { font-size: 20px; }
  .midcta-actions { width: 100%; }
  .midcta-actions .btn { flex: 1 1 0; min-width: 0; }

  .diff { padding: 56px 16px; }
  .diff .h2 { font-size: 30px; }
  .diff-list { columns: 1; }

  .ins { padding: 48px 16px; }
  .ins .h2 { font-size: 26px; }
  .ins-grid { grid-template-columns: repeat(2, 1fr); }

  .units { padding: 48px 16px; }
  .units .h2 { font-size: 26px; margin-bottom: 22px; }
  .unit-body { padding: 18px; }

  .final { padding: 56px 16px; }
  .final .h2 { font-size: 28px; }
  .final .lead { font-size: 16px; }
  .final-actions { display: flex; width: 100%; }
  .final-actions .btn { flex: 1 1 0; }

  .footer { padding: 32px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }
}

/* Sticky mobile WhatsApp bar (Variation C signature pattern) */
@media (max-width: 640px) {
  body { padding-bottom: 76px; }
  .mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 40;
    background: var(--odz-graphite);
    color: #fff;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  }
  .mobile-cta-text {
    flex: 1;
    font-family: var(--odz-font-display);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
  }
  .mobile-cta-text small {
    display: block;
    font-weight: 500;
    font-size: 11px;
    color: rgba(255,255,255,.65);
    margin-top: 2px;
  }
}

@media (min-width: 641px) {
  .mobile-cta { display: none; }
}
