.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Video Background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 46, 0.78) 0%,
    rgba(30, 30, 46, 0.55) 50%,
    rgba(232, 180, 184, 0.18) 100%
  );
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,180,184,0.18);
  border: 1px solid rgba(232,180,184,0.4);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s ease 0.2s both;
}
.hero-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--roz-deschis);
  font-weight: 500;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--roz);
  animation: pulse 1.5s ease infinite;
}

.hero h1 {
  color: var(--alb);
  margin-bottom: 22px;
  animation: fadeSlideUp 0.9s ease 0.4s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--roz-deschis);
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.9s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 0.8s both;
}

/* Floating card */
.hero-card {
  position: absolute;
  right: 5%;
  bottom: 12%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 22px 28px;
  z-index: 2;
  animation: fadeSlideLeft 1s ease 1s both;
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 240px;
}
.hero-card-icon {
  width: 48px; height: 48px;
  background: var(--roz);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card-text strong {
  display: block;
  color: var(--alb);
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.hero-card-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* KEYFRAMES */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero-card {
    right: 5%;
    bottom: auto;
    top: auto;
    display: none;
  }
  .hero-content { max-width: 100%; }
}