@charset "UTF-8";
/* Home CTA — запис на перевірку. */
.home-cta {
  padding: 50px 0;
}
.home-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #c5d4f0;
  border-radius: 24px;
  background-color: #F9FAFF;
}
@media (max-width: 992px) {
  .home-cta__card {
    grid-template-columns: 1fr 0.85fr;
  }
}
@media (max-width: 767px) {
  .home-cta__card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
}
.home-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 64px 44px 64px 50px;
  min-width: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .home-cta__content {
    padding: 36px 28px;
  }
}
@media (max-width: 767px) {
  .home-cta__content {
    padding: 24px 16px;
    gap: 14px;
  }
}
.home-cta__label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(2, 62, 183, 0.5333333333);
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #023FB7;
}
.home-cta__label svg {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .home-cta__label {
    font-size: 10px;
    padding: 7px 12px;
    max-width: 100%;
  }
}
.home-cta__title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
  color: #0F1929;
}
@media (max-width: 992px) {
  .home-cta__title {
    font-size: 31px;
    line-height: 36px;
  }
}
.home-cta__text {
  max-width: 400px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #595959;
}
.home-cta__text p {
  margin: 0 0 10px;
}
.home-cta__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home-cta__text {
    font-size: 15px;
    max-width: none;
  }
}
.home-cta__actions {
  margin: 24px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .home-cta__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 4px;
  }
}
.home-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-cta__btn svg {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.home-cta__btn svg path {
  transition: all 0.3s ease 0s;
}
.home-cta__btn span {
  position: relative;
  z-index: 1;
}
.home-cta__btn--primary {
  color: #fafafa;
  border: none;
  background: linear-gradient(90deg, rgb(1, 28, 81) 0%, rgb(2, 63, 183) 100%);
  transition: color 0.35s ease;
}
.home-cta__btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(2, 63, 183) 0%, rgb(1, 28, 81) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.home-cta__btn--primary:hover::before {
  opacity: 1;
}
.home-cta__btn--secondary {
  background: #fff;
  border: 1px solid #011c51;
  color: #011c51;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.home-cta__btn--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(1, 28, 81) 0%, rgb(2, 63, 183) 100%);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.home-cta__btn--secondary:hover {
  color: #fafafa;
  border-color: #011c51;
}
.home-cta__btn--secondary:hover::before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 767px) {
  .home-cta__btn {
    width: 100%;
    padding: 14px 18px;
  }
}
.home-cta__media {
  position: relative;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
}
.home-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-cta__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, #F9FAFF 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .home-cta__media::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(180deg, #F9FAFF 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 767px) {
  .home-cta__media {
    min-height: 220px;
    aspect-ratio: 16/11;
    order: 2;
  }
}/*# sourceMappingURL=style.css.map */