/* ============================================================
   HERO.CSS — Full-height hero section
   Vidai AG · vidai.ch
   ============================================================ */

#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

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

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 24px;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-left p {
  font-size: 17px;
  color: var(--mid);
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ── RIGHT PANEL ── */
.hero-right {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}

/* Flag stripe — Switzerland · India · Latin America */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--red) 33%,
    #fff 33% 66%,
    var(--green) 66%
  );
}

/* ── STATS ── */
.stat-row {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.45);
  margin-top: 6px;
}

.stat-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #home {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 80px 24px 60px;
  }

  .hero-right {
    padding: 60px 24px;
  }
}
