.CTABlock {
  padding: 112px 0;
}
.CTABlock--lightBlue {
  background: #eef5ff;
}
.CTABlock--darkBlue {
  background: #3a53a8;
  color: #ffffff;
}

.CTABlock__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.CTABlock__grid {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 80px;
  align-items: start;
}

/* Left */
.CTABlock__top-text {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.CTABlock--darkBlue .CTABlock__top-text {
  color: #ffffff;
}
.CTABlock__title {
  color: #000;
  font-family: "Roboto", sans-serif;
  margin: 0 0 24px 0;
}
.CTABlock--darkBlue .CTABlock__title {
  color: #ffffff;
}
.CTABlock__title--large {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.CTABlock__title--small {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.CTABlock__title-accent {
  color: #1c327c;
}

/* Right */
.CTABlock__text {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.CTABlock--darkBlue .CTABlock__text {
  color: #ffffff;
}
.CTABlock__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 30px 0 16px 0;
}
.CTABlock__badge {
  background: #1c327c;
  color: #ffffff;
  border: 1px solid rgba(28, 50, 124, 0.15);
  padding: 4px 8px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
}

.CTABlock__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  transition: background 0.2s ease, color 0.2s ease, transform 0.06s ease-in-out;
}
.cta-btn__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.cta-btn--primary {
  background: transparent;
  border: 1px solid currentColor;
  color: #000;
}
.CTABlock--darkBlue .cta-btn--primary {
  color: #ffffff;
  border-color: #ffffff;
}
.CTABlock--darkBlue .cta-btn--primary:hover {
  background: rgba(255, 255, 255, 0.2);
}
.cta-btn--primary:hover {
  background: rgba(0, 0, 0, 0.1);
}
.cta-btn--primary:active {
  transform: translateY(1px);
}
.cta-btn--secondary {
  background: #1c327c;
  border: 1px solid #1c327c;
  color: #ffffff;
}
.cta-btn--secondary:hover {
  background: #112050;
  border-color: #112050;
}

@media (max-width: 992px) {
  .CTABlock__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .CTABlock__title--large {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .CTABlock {
    padding: 50px 0;
  }
  .CTABlock__title--large {
    font-size: 32px;
  }
  .CTABlock__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .CTABlock__buttons .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
