/* ===== Hero Section ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-white);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 20px;
}

.hero__content {
  width: 100%;
}

.hero__title {
  font-size: 65px;
  line-height: 1.22;
  font-weight: var(--fw-bold);
  color: var(--color-black);
  margin: 0 0 0 0;
}

.hero__row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.hero__left {
  flex: 0 0 auto;
}

.hero__accent {
  font-size: 65px;
  line-height: 1.22;
  font-weight: var(--fw-bold);
  color: var(--color-red);
}

.hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 12px;
}

.hero__subtitle {
  font-size: 28px;
  line-height: 1.25;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  margin-bottom: 32px;
  text-align: right;
}

.hero__btn {
  font-size: 18px;
  padding: 16px 36px;
}

/* Hero Team Photo */
.hero__photo {
  width: 100%;
  max-height: 530px;
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -5%;
}

@media (max-width: 1200px) {
  .hero__title {
    font-size: 55px;
  }
  .hero__accent {
    font-size: 72px;
  }
  .hero__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .hero__photo img {
    margin-top: -50px;
  }
  .hero__row {
    flex-direction: column;
    gap: 16px;
  }
  .hero__title {
    font-size: 44px;
  }
  .hero__accent {
    font-size: 58px;
  }
  .hero__subtitle {
    font-size: 22px;
  }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.7) 60%,
      rgba(255, 255, 255, 0.3) 100%
    );
  }
}

@media (max-width: 768px) {
  .hero__photo img {
    margin-top: 0;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__accent {
    font-size: 48px;
  }
  .hero__subtitle {
    font-size: 20px;
  }
  .hero .container {
    padding-top: 80px;
    padding-bottom: 16px;
  }
  .hero__right {
    align-items: flex-start;
  }
  .hero__subtitle {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero .container {
    padding-top: 70px;
    padding-bottom: 12px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__accent {
    font-size: 38px;
  }
  .hero__subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .hero__btn {
    font-size: 16px;
    padding: 14px 28px;
    width: 100%;
  }
}
