/* ── HERO — full-height split, edge-to-edge image ── */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  padding-top: 72px; /* nav height */
  overflow: hidden;
}

/* LEFT — copy */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  background: var(--white);
}

/* Pill tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-100);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 28px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(63,169,217,.4); }
  50%      { box-shadow: 0 0 0 7px rgba(63,169,217,0); }
}

/* Headline */
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--sky);
  font-weight: 300;
}

/* Lede */
.hero-lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-700);
  max-width: 440px;
  margin-bottom: 36px;
}

/* Buttons */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; }
.trust-num {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.trust-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
}
.trust-sep {
  color: var(--line);
  font-size: 18px;
  line-height: 1;
}

/* RIGHT — full-bleed image */
.hero-right {
  position: relative;
  overflow: visible; /* allow float cards to extend left */
  background: var(--sky-100);
}

/* Image stays clipped, cards can overflow */
.hero-img-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  z-index: 2;
}
.hero-float-card--rating {
  bottom: 48px;
  left: -28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
}
.fc-stars { color: #F5A623; font-size: 13px; letter-spacing: 2px; }
.fc-num {
  font-family: var(--font-d);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.fc-lbl {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--slate);
}

.hero-float-card--emergency {
  top: 40px;
  left: -20px;
  background: var(--deep);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
}
.fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.fc-text { white-space: nowrap; }

/* ── STAT BAR ─────────────────────────────────────── */
.stat-bar {
  background: var(--deep);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: background var(--ease-f);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--deep-600); }
.stat-n {
  font-family: var(--font-d);
  font-size: 38px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.sfx {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--sky);
  font-style: italic;
}
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-left { padding: 64px 48px 64px 48px; }
  .hero-float-card--rating { left: -14px; }
  .hero-float-card--emergency { left: -8px; }
}
@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 48px 32px 40px;
    order: 1;
  }
  .hero-right {
    order: 0;
    height: 60vw;
    min-height: 280px;
    max-height: 420px;
  }
  .hero-float-card--rating { left: 16px; bottom: 16px; }
  .hero-float-card--emergency { top: 16px; left: 16px; }
  .hero-lede { max-width: 100%; }
  .hero-h1 { font-size: clamp(36px, 9vw, 52px); }
}
@media (max-width: 480px) {
  .hero-left { padding: 36px 20px 32px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-cell:nth-child(2n) { border-right: none; }
}
