/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Mobile background photo */
.hero-bg-mobile {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.3) saturate(0.7);
}

.hero-bg-mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 11, 22, 0.3) 0%,
    rgba(14, 11, 22, 0.55) 40%,
    rgba(14, 11, 22, 0.88) 70%,
    #0E0B16 100%
  );
}

/* Inner layout */
.hero-inner {
  position: relative;
  z-index: var(--z-content);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 120px var(--container-padding) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Text block */
.hero-text {
  text-align: center;
  max-width: 600px;
}

/* Label line */
.hero-label-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-5);
}

.hero-gold-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.7;
}

.hero-label-text {
  font: 500 11px/1 var(--font-body);
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Heading */
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.02em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
}

/* Divider with sparkle */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-5);
}

.hero-divider span {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-divider svg {
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Tagline */
.hero-tagline {
  font: 400 14px/1.4 var(--font-body);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

/* Subtitle */
.hero-subtitle {
  font: 300 16px/1.75 var(--font-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-7);
  letter-spacing: 0.01em;
}

/* Hero WhatsApp icon */
.hero-cta .btn-primary {
  gap: 10px;
}

.hero-wa-icon {
  flex-shrink: 0;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

/* Trust pills */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--border-default);
  background: rgba(30, 22, 48, 0.4);
  font: 400 12px/1 var(--font-body);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-pill svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.8;
}

/* Photo (hidden on mobile) */
.hero-photo {
  display: none;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-card),
              0 0 60px rgba(201, 169, 110, 0.08),
              0 0 120px rgba(142, 107, 199, 0.04);
  transition: box-shadow 0.6s ease;
}

.hero-photo-frame:hover {
  box-shadow: var(--shadow-card),
              0 0 80px rgba(201, 169, 110, 0.12),
              0 0 160px rgba(142, 107, 199, 0.06);
}

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

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(14, 11, 22, 0.4) 100%
  );
  pointer-events: none;
}

.hero-photo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(142, 107, 199, 0.12) 0%,
    rgba(201, 169, 110, 0.06) 40%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

/* Micro copy under CTA */
.hero-micro-copy {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 400 13px/1 var(--font-body);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Online dot (reusable) */
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
  animation: dotPulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(74, 222, 128, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 4px rgba(74, 222, 128, 0.3); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-content);
  animation: scrollBounce 2s infinite ease-in-out;
  color: var(--text-muted);
  opacity: 0.5;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Tablet (768px+) ─── */
@media (min-width: 768px) {
  .hero-bg-mobile {
    display: none;
  }

  .hero {
    background: var(--bg-primary);
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    padding: 140px var(--container-padding-md) 80px;
  }

  .hero-text {
    text-align: left;
    flex: 1 1 55%;
    max-width: 560px;
  }

  .hero-label-line {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-divider {
    justify-content: flex-start;
  }

  .hero-divider span {
    width: 56px;
  }

  .hero-tagline {
    font-size: 15px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .hero-micro-copy {
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  /* Show photo on tablet+ */
  .hero-photo {
    display: block;
    position: relative;
    flex: 0 0 40%;
    max-width: 380px;
  }

  .hero-photo-frame {
    aspect-ratio: 3 / 4;
  }
}

/* ─── Desktop (1024px+) ─── */
@media (min-width: 1024px) {
  .hero-inner {
    gap: var(--space-9);
    padding: 140px var(--container-padding-md) 100px;
  }

  .hero h1 {
    font-size: 88px;
  }

  .hero-tagline {
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-photo {
    max-width: 420px;
  }

  .hero-divider span {
    width: 64px;
  }
}
