.hro-hero {
  min-height: calc(100vh - 94px);
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hro-heroContent h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
  color: var(--color-text);
}

.hro-heroContent p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hro-heroActions {
  display: flex;
  gap: 16px;
}

.hro-heroImageWrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-high);
  aspect-ratio: 4/3;
  transform: translateZ(0);
}

.hro-heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slides and Transition */
.defaultSlide,
.fullpageSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.activeSlide {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* Carousel Indicators */
.defaultIndicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.sliderIndicators {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicatorDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.activeDot {
  width: 32px;
  border-radius: 10px;
  background: var(--color-primary, #f62440);
}

/* Fullpage Cinematic Hero Template */
.fullpageHero {
  position: relative;
  min-height: calc(100vh - 94px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
}

.fullpageMediaContainer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.fullpageMedia {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullpageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
}

.fullpageContent {
  position: relative;
  z-index: 5;
  color: #ffffff;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fullpageContent h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.fullpageContent p {
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 650px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

@media (max-width: 1024px) {
  .hro-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 64px 0;
  }

  .hro-heroContent p {
    margin: 0 auto 40px;
  }

  .hro-heroActions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hro-heroContent h1 {
    font-size: 40px;
  }

  .fullpageContent h1 {
    font-size: 42px;
  }

  .fullpageContent p {
    font-size: 18px;
  }
}

/* Template 3: Showcase Bento Grid Hero */
.showcaseHero {
  padding: 64px 32px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcaseContent {
  max-width: 850px;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcaseBadge {
  background: rgba(246, 36, 64, 0.1);
  color: var(--color-primary, #f62440);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(246, 36, 64, 0.2);
}

.showcaseContent h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
  color: var(--color-text);
}

.showcaseContent p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 680px;
}

.showcaseGrid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1300px;
  align-items: center;
}

.showcaseCardSide {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-mid);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcaseCardCenter {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-high);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcaseCardSide:hover,
.showcaseCardCenter:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.showcaseMedia {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcaseCardSide:hover .showcaseMedia,
.showcaseCardCenter:hover .showcaseMedia {
  transform: scale(1.05);
}

.showcaseCardLabel,
.showcaseCardLabelMain {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(28, 28, 28, 0.65);
  backdrop-filter: blur(12px);
  color: white;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.showcaseCardLabelMain {
  font-size: 16px;
  padding: 16px 24px;
}

@media (max-width: 1024px) {
  .showcaseGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .showcaseCardSide {
    height: 300px;
  }
  .showcaseCardCenter {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .hro-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 0;
  }
  
  .hro-heroContent h1 {
    font-size: 44px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  
  .hro-heroContent p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .hro-heroActions {
    flex-direction: column;
    width: 100%;
  }
  
  .fullpageContent h1 {
    font-size: 44px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  
  .fullpageContent p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .fullpageActions {
    flex-direction: column;
    width: 100%;
  }

  .showcaseContent h1 {
    font-size: 40px;
  }
  .showcaseContent p {
    font-size: 18px;
  }
}
