/* ════════════════════════════════════════
   EQUIST THEME — CREATIVE HERO SECTIONS
   Stylish alternatives to the main carousel
════════════════════════════════════════ */

/* ── Base Hero Creative ── */
.hero-creative {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 80px;
}

/* ── Hero 1: Gradient Overlay ── */
.hero-creative--gradient {
  background: var(--charcoal);
}

.hero-creative-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-creative-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.hero-creative-label {
  display: block;
  font-size: 10px;
  letter-spacing: .38em;
  color: rgba(245,244,240,0.45);
  text-transform: uppercase;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease .5s, transform .55s var(--ease-expo) .5s;
}

.hero-creative-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  color: var(--white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease .62s, transform .65s var(--ease-expo) .62s;
}

.hero-creative-rule {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 20px auto 20px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .55s var(--ease-expo) .75s;
}

.hero-creative-desc {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,1);
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease .82s, transform .6s var(--ease-expo) .82s;
}

.hero-creative-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 26px;
  border: 1px solid rgba(255,255,255,1);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease 1.02s, transform .55s var(--ease-expo) 1.02s, color .35s ease, border-color .35s ease;
}

.hero-creative-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  clip-path: inset(100% 0 0 0);
  transition: clip-path .45s var(--ease-expo);
  z-index: 0;
}

.hero-creative-cta:hover::before {
  clip-path: inset(0% 0 0 0);
}

.hero-creative-cta:hover {
  color: var(--charcoal);
  border-color: var(--white);
}

.cta-arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width .3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.hero-creative-cta:hover .cta-arrow {
  width: 26px;
}

/* Reveal animations */
.hero-creative-label.is-revealed,
.hero-creative-title.is-revealed,
.hero-creative-desc.is-revealed,
.hero-creative-cta.is-revealed {
  opacity: 1;
  transform: none;
}

.hero-creative-rule.is-revealed {
  transform: scaleX(1);
}

/* ── Hero 2: Split Layout ── */
.hero-creative--split {
  background: var(--white);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 100vh;
}

.hero-split-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px;
  background: var(--white);
}

.hero-split-content {
  max-width: 480px;
}

.hero-split-left .hero-creative-label {
  color: rgba(0,0,0,0.45);
}

.hero-split-left .hero-creative-title {
  color: var(--black);
}

.hero-split-left .hero-creative-rule {
  background: rgba(0,0,0,0.3);
  margin-left: 0;
}

.hero-split-left .hero-creative-desc {
  color: rgba(0,0,0,0.6);
  text-align: left;
}

.hero-split-right {
  background-size: cover;
  background-position: center;
}

.hero-split-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.stat-item {
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-expo), transform .6s var(--ease-expo);
}

.stat-item.is-revealed {
  opacity: 1;
  transform: none;
}

.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}

.stat-name {
  font-size: 11px;
  color: rgba(0,0,0,0.4);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Hero 3: Card Grid ── */
.hero-creative--cards {
  background: var(--white);
  flex-direction: column;
  padding: 120px 80px;
}

.hero-cards-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cards-header .hero-creative-label {
  color: rgba(0,0,0,0.45);
}

.hero-cards-header .hero-creative-title {
  color: var(--black);
}

.hero-cards-header .hero-creative-rule {
  background: rgba(0,0,0,0.3);
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-card {
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  background: var(--white);
  transition: all .4s var(--ease-expo);
  opacity: 0;
  transform: translateY(40px) scale(0.99);
}

.hero-card.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-card:hover {
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-8px);
}

.hero-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--black);
  transition: color .3s ease;
}

.hero-card:hover .hero-card-icon {
  color: rgba(0,0,0,0.7);
}

.hero-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.hero-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
  letter-spacing: -.01em;
}

.hero-card-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(0,0,0,0.6);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-creative--split {
    grid-template-columns: 1fr;
  }

  .hero-split-right {
    min-height: 400px;
  }

  .hero-split-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-creative {
    padding: 80px 32px;
    min-height: auto;
  }

  .hero-creative-title {
    font-size: clamp(24px, 4vw, 40px);
  }

  .hero-split-left {
    padding: 80px 32px;
  }

  .hero-cards-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-cards-header {
    margin-bottom: 48px;
  }

  .hero-split-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
