/* ============================================================
   HERO.CSS — Hero Section (Prototype Exact Match)
   ============================================================ */

.hero {
  margin-top: var(--header-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  max-height: 680px;
  overflow: hidden;
  background: var(--white);
}

/* ── Left column — content ──────────────────────────────── */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl) var(--container-px);
  max-width: 640px;
}

.hero-content .section-label {
  margin-bottom: 18px;
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-bold);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: var(--space-md);
}

.hero-title span {
  color: var(--blue);
}

.hero-desc {
  font-size: var(--text-md);
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ── Right column — image ───────────────────────────────── */
.hero-visual {
  position: relative;
  overflow: hidden;
}

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

/* ── Stats card (overlay on image) ─────────────────────── */
.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 38px;
  height: 38px;
  background: rgba(111, 169, 214, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-text {}

.stat-value {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.2;
}

.stat-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}