/* Hero – Produkt-Telefon */

.hero {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 3rem;
  background: linear-gradient(160deg, #fff 55%, #F2F2F2 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semi);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: var(--font-weight-extra);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-5);
}

.hero__desc {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.hero__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero__price {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extra);
  color: var(--color-text);
}

.hero__price-old {
  font-size: var(--font-size-xl);
  color: var(--color-text-dim);
  text-decoration: line-through;
}

.hero__price-badge {
  background: var(--color-text);
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Media */
.hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__phone {
  max-height: 70vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.2));
  transition: transform var(--transition-slow);
}
.hero__phone:hover { transform: scale(1.02) rotate(-1deg); }

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-block: var(--space-12);
  }
  .hero__desc { margin-inline: auto; }
  .hero__price-row { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__media { order: -1; }
  .hero__phone { max-height: 320px; }
}
