{% set bg_color = module.styles.background.color.color %}
{% set use_gradient = module.styles.background.use_gradient %}
{% set primary_color = module.styles.text_colors.primary.color %}
{% set subtitle_color = module.styles.text_colors.subtitle.color %}
{% set gradient_start = module.styles.gradient.start.color %}
{% set gradient_end = module.styles.gradient.end.color %}

.hero-bold {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  {% if use_gradient %}
  background: linear-gradient(135deg,  0%, dd 100%);
  {% else %}
  background-color: ;
  {% endif %}
}

.hero-bold__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-bold__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-bold__title {
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 2rem 0;
  color: ;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.hero-bold__title-line {
  display: block;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bold__title-line.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-bold__title-line:nth-child(2) {
  transition-delay: 0.1s;
}

.hero-bold__title-line:nth-child(3) {
  transition-delay: 0.2s;
}

.hero-bold__title-line--highlight {
  background: linear-gradient(135deg,  0%,  100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bold__subtitle {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 500;
  color: ;
  margin: 0 0 3rem 0;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-bold__subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-bold__cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.hero-bold__cta.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-bold__button {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero-bold__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bold__button:hover::before {
  left: 100%;
}

.hero-bold__button--primary {
  background: linear-gradient(135deg,  0%,  100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.hero-bold__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(, 0.4);
}

.hero-bold__button--secondary {
  background: transparent;
  color: ;
  border: 2px solid ;
}

.hero-bold__button--secondary:hover {
  background: ;
  color: ;
  transform: translateY(-2px);
}

.hero-bold__scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeInScroll 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.hero-bold__scroll-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-bold__scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, #666 0%, transparent 100%);
  animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes fadeInScroll {
  to { opacity: 1; }
}

@keyframes scrollLineMove {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .hero-bold__title {
    gap: 0.1em;
  }
  .hero-bold__cta {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-bold__button {
    width: 100%;
    max-width: 300px;
  }
  .hero-bold__scroll-indicator {
    bottom: 2rem;
  }
}

