*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "TT Lakes Neue";
  src: url("../fonts/TT-Lakes-Neue-Trial-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #fff;
  background: #000 url("../img/bg.jpg") center center / cover no-repeat fixed;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 24px 80px;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo {
  display: block;
  margin-bottom: 28px;
}

.hero__logo img {
  display: block;
  width: 127px;
  height: auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  margin-bottom: 32px;
  border: 1px solid rgba(61, 220, 151, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #3ddc97;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__title {
  font-family: "TT Lakes Neue", sans-serif;
  font-size: 78px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 0;
}

.hero__subtitle {
  font-family: "Caveat", cursive;
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
  color: #3ddc97;
  margin-top: -29px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.hero__description {
  max-width: 520px;
  margin-bottom: 36px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.hero__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.hero__stars {
  display: block;
  width: 122px;
  height: auto;
  margin-bottom: 14px;
}

.hero__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}

.hero__score-dec {
  display: block;
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.hero__score-value {
  font-family: "TT Lakes Neue", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__rating-caption {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  min-width: 340px;
  padding: 0 36px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: #3ddc97;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(61, 220, 151, 0.35);
}

.hero__cta img {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.hero__meta-dot {
  color: #fff;
}

.hero__features {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__feature {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(12, 16, 14, 0.72);
  border: 1px solid rgba(61, 220, 151, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero__feature img {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero__feature span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.hero__feature--left-top {
  top: 50%;
  left: 22%;
}

.hero__feature--left-bottom {
  bottom: 10%;
  left: 25%;
}

.hero__feature--right-top {
  top: 53%;
  right: calc(50% - 470px);
}

.hero__feature--right-bottom {
  bottom: 14%;
  right: calc(50% - 430px);
}

@media (max-width: 1400px) {
  .hero__feature--left-top {
    left: calc(45% - 400px);
  }

  .hero__feature--left-bottom {
    left: calc(45% - 360px);
  }

  .hero__feature--right-top {
    right: calc(45% - 400px);
  }

  .hero__feature--right-bottom {
    right: calc(45% - 360px);
  }
}

@media (max-width: 1200px) {
  .hero__feature--left-top {
    left: calc(40% - 340px);
  }

  .hero__feature--left-bottom {
    left: calc(40% - 300px);
  }

  .hero__feature--right-top {
    right: calc(40% - 340px);
  }

  .hero__feature--right-bottom {
    right: calc(40% - 300px);
  }
}

@media (max-width: 1100px) {
  .hero__features {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    background: url("../img/bg-mob.jpg") center bottom / cover no-repeat fixed;
  }

  .hero {
    align-items: flex-start;
    padding: 32px 20px 0; 
  }

  .hero__content{
    height: auto;
  }

  .hero__logo {
    margin-bottom: 24px;
  }

  .hero__badge {
    max-width: 320px;
    margin-bottom: 24px;
    padding: 9px 16px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .hero__title {
    font-size: 40px;
    margin-bottom: 0;
  }

  .hero__subtitle {
    font-size: 40px;
    margin-top: -13px;
    margin-bottom: 20px;
  }

  .hero__description {
    max-width: 340px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__rating {
    margin-bottom: 28px;
  }

  .hero__stars {
    width: 108px;
    margin-bottom: 12px;
  }

  .hero__score {
    gap: 12px;
    margin-bottom: 8px;
  }

  .hero__score-dec {
    width: 28px;
  }

  .hero__score-value {
    font-size: 36px;
  }

  .hero__rating-caption {
    font-size: 14px;
    color: #fff;
  }

  .hero__cta {
    width: 100%;
    max-width: 360px;
    min-height: 58px;
    padding: 0 24px;
    font-size: 13px;
    border-radius: 16px;
  }

  .hero__meta {
    font-size: 13px;
    padding-bottom: 25px;
  }
}

@media (max-width: 380px) {
  .hero__badge {
    font-size: 9px;
  }

  .hero__cta span {
    font-size: 12px;
  }
}
