.site-header {
  height: 442px;
}
@media (max-width: 600px) {
  .site-header {
    height: 392px;
  }
  .hero-subtitle {
    margin-bottom: 20px;
    padding: 0 70px;
  }
}

.hero h1 {
  margin-bottom: 20px;
}
.hero .hero-subtitle.hero-subtitle--br {
    padding: 0 10px;
}


#book-a-call {
  color: #ffffff;
  padding: 90px 0;
}
@media (max-width: 600px) {
  #book-a-call {
    padding: 0 0 80px 0;
  }
}

/* GRID */
#book-a-call .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

/* CARD / FORM */
#book-a-call .card {
  position: relative;
  border-radius: 34px;
  padding: 60px;
  background: url("../images/bg-glass.webp") no-repeat left bottom;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  background: transparent;
  border: 1px solid transparent;
  background: url("../images/bg-glass.webp") no-repeat left bottom,
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(
        325deg,
        #ffffff11 0%,
        #ffffff11 22%,
        #ffffffcb 50%,
        #ffffff11 78%,
        #ffffff11 100%
      )
      border-box;
}
@media (max-width: 600px) {
  #book-a-call .card {
    position: relative;
    border-radius: 34px;
    padding: 30px;
  }
  #book-a-call .card input::placeholder {
    font-size: 11px;
  }
}

#book-a-call .card__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* HEADER */
#book-a-call .host {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  flex-direction: column;
}

#book-a-call .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

#book-a-call .avatar > img {
  width: 40px;
  border-radius: 100px;
}

#book-a-call .host__name {
  font-size: 14px;
  opacity: 0.85;
}

/* TITLE */
#book-a-call .title {
  font-size: 26px;
  margin: 6px 0 26px 0;
}

/* META */
#book-a-call .meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

#book-a-call .meta__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FORM */
#book-a-call form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#book-a-call .field {
  display: flex;
  flex-direction: column;
}

#book-a-call .input {
  width: 100%;
  padding: 18px 18px;
  font-size: 14px;
  border-radius: 5px;
  border: 0;
  background: #ffffff;
  color: #191919;
  font-family: "p2ALaNy060gO", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* HINT */
#book-a-call .hint {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.7;
}

/* ERROR MESSAGE */
#book-a-call .info-box {
  display: none;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
}

#book-a-call .info-box.is-visible {
  display: block;
}

#book-a-call .success-info-box {
  border-color: green;
  color: green;
}

#book-a-call .success-box.is-visible {
  display: block;
}

/* BUTTON */
#book-a-call .btn {
  width: fit-content;
  margin-top: 5px;
}

/* HERO */
#book-a-call .hero {
  border-radius: 34px;
  border: 1px solid #2a2a2a;
  padding: 60px;
  display: flex;
  align-items: flex-end;

  background: url("../images/bg-book-a-call.webp");
}
@media(min-width:769px){
  #book-a-call .hero {
    gap: 120px;
  }
}

@media(max-width:768px){
  #book-a-call .hero {
    padding: 30px;
    flex-direction: column;
  }
}
#book-a-call .hero__inner {
  max-width: 520px;
}

#book-a-call .hero__headline {
  font-size: 32px;
  line-height: 1.1;
  text-align: left;
  font-weight: 600;
}

/* STAT */
#book-a-call .hero__stat {
  margin-top: 24px;
  min-width: 32%;
  text-align: left;
  display: grid;
  gap: 12px;
}

#book-a-call .stars {
  display: inline-flex;
  font-size: 1rem;
  gap: 6px;
  margin-top: 40px;
}
#book-a-call .stars span {
  width: 19px;
  height: 19px;
  background: url('../images/icon-star.svg');
  font-size: 0;
}
#book-a-call .stat__value {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: -5px;
}

#book-a-call .stat__desc {
  font-size: 14px;
}



/* RESPONSIVE */
@media (max-width: 980px) {
  #book-a-call .grid {
    grid-template-columns: 1fr;
  }

  #book-a-call .hero {
    margin-top: 24px;
    padding-top: 260px;
    background-position-x: 74%;
    background-position-y: -50px;
  }
}

@media (max-width: 520px) {
  #book-a-call .title {
    font-size: 22px;
  }

  #book-a-call .hero__headline {
    font-size: 24px;
  }

  #book-a-call .btn {
    width: 100%;
  }
  
  #book-a-call .hero__stat {
    display: grid;
    gap: 12px;
    width: 100%;
  }

}

