/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 820px;
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 418px;
  z-index: 1;
}

.hero__gradient-layer {
  position: absolute;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.hero__gradient-layer--bottom {
  bottom: 0;
  height: 212px;
}

.hero__gradient-layer--full {
  bottom: 0;
  height: 418px;
}

.hero__gradient-layer--mid {
  bottom: 0;
  height: 331px;
}

/* ========================================
   HERO CONTENT
   ======================================== */
.hero-content {
  position: absolute;
  top: 520px;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-content .container {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-content__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 68px;
}

.hero-content__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.hero-content__subtitle {
  width: 302px;
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 27px;
  letter-spacing: 0;
  line-height: 32px;
}

.hero-content__title {
  width: 590px;
  font-family: var(--font-bold);
  font-weight: 700;
  color: var(--color-text-light);
  font-size: 50px;
  text-align: right;
  letter-spacing: 0;
  line-height: 57px;
}

.hero-content .btn--cta {
  flex-shrink: 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 60px 0;
  background: var(--color-white);
}

.about .container {
  max-width: 1080px;
}

.about__title {
  font-family: var(--font-semibold);
  font-weight: 400;
  color: var(--color-black);
  font-size: 43px;
  letter-spacing: 0;
  line-height: 52px;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  flex: 1;
}

.about__description {
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--color-text);
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0;
  text-align: left;
}

/* Mobile/Desktop subtitle visibility */
.hero-content__subtitle--mobile {
  display: none;
}

.hero-content__subtitle--desktop {
  display: block;
}

@media (max-width: 480px) {
  .hero-content__subtitle--mobile {
    display: block;
  }
  
  .hero-content__subtitle--desktop {
    display: none;
  }
}
