:root {
  --c-blue: #1646af;
  --c-black: #0F131F;
  --bg-col: #E5F1FB;
}

.c-blue {
  color: var(--c-blue);
}

.hero__main {
  position: relative;
  overflow: hidden;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 5vmax;
  padding-bottom: 5vmax;

  /* background: linear-gradient(90deg, #E5F1FB 0%, #E5F1FB 35%, rgba(234, 247, 255, 0.75) 43%, rgba(234, 247, 255, 0.15) 50%, rgba(234, 247, 255, 0) 100%), url(https://lkfinance.kz/wp-content/uploads/2026/05/family-scaled.jpg) right center / cover no-repeat; */

  background-size: cover;
  background-image: url(https://lkfinance.kz/wp-content/uploads/2026/05/family-scaled.jpg);
  background-repeat: no-repeat;
  background-position: 122px -174px;
}


@media (max-width: 1520px) {
  .hero__main {
    background-position: 122px -88px;
  }
}

@media (max-width: 768px) {
  .hero__main {
    padding-bottom: 480px;
    background-position: 77% 161%;
    background-size: 1280px 852px;
  }
}

@media (max-width: 600px) {
  .hero__main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 520px) {
  .hero__main {
    background-position: 70% 213%;
    background-size: 1211px 793px;
  }
}

@media (max-width: 425px) {
  .hero__main {
    background-position: 70% 269%;
    background-size: 1211px 793px;
  }
}

.hero__main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* background: linear-gradient(90deg, #E5F1FB 0%, #E5F1FB 35%, rgba(234, 247, 255, 0.75) 43%, rgba(234, 247, 255, 0.15) 50%, rgba(234, 247, 255, 0) 100%) */

  background: linear-gradient(90deg, #E5F1FB 47%, #E5F1FB 47%, rgb(234 247 255) 49%, rgb(234 247 255 / 46%) 56%, rgba(234, 247, 255, 0) 62%);
}

@media (max-width: 768px) {
  .hero__main::before {
    background: linear-gradient(180deg, #E5F1FB 47%, #E5F1FB 47%, rgb(234 247 255) 49%, rgb(234 247 255 / 46%) 56%, rgba(234, 247, 255, 0) 62%);
  }
      
}

.hero__main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* background: linear-gradient(
    0deg,
    #E5F1FB 0%,
    rgba(234, 247, 255, 0.8) 12%,
    rgba(234, 247, 255, 0) 38%
  ); */

  background: linear-gradient(0deg, #E5F1FB 0%, rgba(234, 247, 255, 0.8) 5%, rgba(234, 247, 255, 0) 28%);
}



.hero__wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--header-height);
  z-index: 1;
}

.hero__content h1 {
  font-size: 102px;
  line-height: 110px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 0px;
}

@media (max-width: 768px) {
  .hero__content h1 {
    font-size: 82px;
    line-height: 92px;
  }
}

@media (max-width: 620px) {
  .hero__content h1 {
    font-size: 72px;
    line-height: 82px;
  }
}

@media (max-width: 520px) {
  .hero__content h1 {
    font-size: 62px;
    line-height: 72px;
  }
}

@media (max-width: 425px) {
  .hero__content h1 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 30px;
  }
}

@media (max-width: 350px) {
  .hero__content h1 {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 30px;
  }
}



.hero__content p {
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  max-width: 575px;
  color: var(--c-black);
  margin-bottom: 65px;
}

@media (max-width: 768px) {
  .hero__content p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 30px;
  }
}

@media (max-width: 620px) {
  .hero__content p {
    font-size: 20px;
    line-height: 29px;
  }
}

@media (max-width: 520px) {
  .hero__content p {
    font-size: 18px;
    line-height: 27px;
  }
}

@media (max-width: 425px) {
  .hero__content p {
    font-size: 16px;
    line-height: 25px;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 26px 47px;

  border-radius: 15px;

  background: var(--c-blue);
  color: #fff;
  text-decoration: none;

  font-size: 22px;
  font-weight: 600;

  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

@media (max-width: 768px) {
  .hero-btn {
    padding: 14px 16px;
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .hero-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.hero-btn:hover {
  background: #1844c0;
  color: #fff !important;
  transform: translateY(-1px);
}

.hero-btn:active {
  transform: translateY(0);
}





.features {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 4vmax;
  padding-bottom: 9vmax;
  background: var(--bg-col);
}

@media (max-width: 1440px) {
  .features {
    padding-top: 7vmax;
    padding-bottom: 12vmax;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 50px 2.5rem;
  }
}

@media (max-width: 600px) {
  .features {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

}


.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  grid-column: span 2;
  height: 353px;
  box-sizing: border-box;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: #fff;
  border-radius: 15px;
  padding: 23px;
}

@media (max-width: 425px) {
  .feature-card {
    height: 290px;
    padding: 19px;
  }
}

.feature-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.feature-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: auto; /* прижимает текст вниз */
  border-radius: 11px;
  background: var(--bg-col);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--c-blue);
  font-size: 22px;
}

@media (max-width: 425px) {
  .feature-card__icon {
    width: 50px;
    height: 50px;
  }

  .feature-card__icon svg {
    width: 35px;
    height: 35px;
  }
}



.feature-card h3 {
  margin: 24px 0 6px;
  color: var(--c-blue);
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

@media (max-width: 425px) {
  .feature-card h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

.feature-card p {
  font-size: 22px;
  line-height: 30px;
  color: #2a2d35;
  margin: 0;
}

@media (max-width: 620px) {
  .feature-card p {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 520px) {
  .feature-card p {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 350px) {
  .feature-card p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 1280px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: auto;
    min-height: 200px;
  }
}










.benefits {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 165px;
  padding-bottom: 165px;
}

@media (max-width: 968px) {
  .benefits {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 600px) {
  .benefits {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.benefits__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits__title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  margin-bottom: 60px;
}

@media (max-width: 600px) {
  .benefits__title {
    font-size: 42px;
    line-height: 52px;
  }
}

@media (max-width: 425px) {
  .benefits__title {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 45px;
  }
}

@media (max-width: 350px) {
  .benefits__title {
    font-size: 30px;
    line-height: 40px;
  }
}

.benefits__title span {
  color: var(--c-blue);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 353px;
  padding: 23px;

  border-radius: 20px;
  background: var(--c-blue);
  color: white;
}

.card__bg {
  position: absolute;

  right: 0px;
  bottom: 0px;

  pointer-events: none;
}

.card h3,
.card p {
  position: relative;
  z-index: 2;
}

.card h3 {
color: #fff;

  margin: 0;
  padding: 0;

  font-size: 28px;
  line-height: 38px;
  font-weight: 600;

  max-width: 268px;
}

@media (max-width: 425px) {
  .card h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 350px) {
  .card h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

.card p {
  margin: 0;

  font-size: 22px;
  line-height: 32px;

  color: #fff;
}

@media (max-width: 425px) {
  .card p {
    font-size: 18px;
    line-height: 26px;
  }
}







.contact {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 165px;
}

.contact__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .contact {
    padding-bottom: 100px;
  }
}

@media (max-width: 600px) {
  .contact {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.contact .benefits__title {
  margin-bottom: 60px;
}

@media (max-width: 520px) {
  .contact .benefits__title {
    margin-bottom: 45px;
  }
}

.contact .contact__p {
  font-size: 28px;
  line-height: 38px;
  max-width: 746px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .contact .contact__p {
    font-size: 24px;
    line-height: 34px;
  }
}

@media (max-width: 600px) {
  .contact .contact__p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 520px) {
  .contact .contact__p {
    font-size: 18px;
    line-height: 28px;
  }
}

.contact__form {
  max-width: 842px;
}

.contact__form .bot__btn {
  margin-bottom: 20px;
  padding-top: 30px;
}

.contact__form .bot__btn button {
  width: auto !important;

  padding: 22px 51px !important;

  border-radius: 15px !important;

  background: var(--c-blue) !important;
  color: #fff !important;
  text-decoration: none;
  text-transform: none !important;

  font-size: 22px !important;
  font-weight: 600 !important;

  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

@media (max-width: 600px) {
  .contact__form .bot__btn button {
    padding: 18px 45px !important;
    font-size: 18px !important;
  }
}

@media (max-width: 425px) {
  .contact__form .bot__btn button {
    padding: 18px 30px !important;
    font-size: 16px !important;
  }
  
}

.contact__form .bot__btn button:hover {
  background: #102c7a !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.contact__form .bot__btn button:active {
  transform: translateY(0) !important;
}

.contact__form .bot__btn .whatsapp-btn {
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 48px;

  text-decoration: none;
}

@media (max-width: 600px) {
  .contact__form .bot__btn .whatsapp-btn {
    width: 57px;
    height: 57px;
    font-size: 35px;
  }
}

.contact__form .bot__btn .whatsapp-btn:hover {
  background: #157237;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.contact__form .bot__btn p {
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 375px) {
  .contact__form .bot__btn p {
    gap: 7px;
  }
}

.contact__form .bot__btn p .wpcf7-spinner {
  position: absolute;
  left: 155px;
}

.contact__form input:not([type="submit"]) {
  background: #E5F1FB !important;
}










.about{
  position:relative;

  background:#eef4fb;

  border-radius:24px;

  overflow:hidden;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media (max-width: 600px) {
  .about{ 
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.about__wrap {
  max-width: 1200px;
  margin: 0px auto;
  padding: 75px 0;
  position: relative;
}

@media (max-width: 968px) {
  .about__wrap { 
    padding: 100px 0;
  }
  
}

.about__content{
  max-width: 680px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1280px) {
  .about__content {
    max-width: 100%;
  }
}

.about__title{
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;

  color:var(--c-blue);

  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .about__title{
    font-size: 45px;
    line-height: 55px;
  }
}

.about__subtitle{
  font-size: 30px;
  line-height: 40px;

  margin-bottom: 90px;

  color:var(--c-black);
}

@media (max-width: 600px) {
  .about__subtitle{
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 50px;
  }
}

@media (max-width: 520px) {
  .about__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}


.about__text{
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 10px;

  color:var(--c-black);
}

@media (max-width: 600px) {
  .about__text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 520px) {
  .about__text {
    font-size: 18px;
    line-height: 28px;
  }
}

.about__text:last-child {
  margin-bottom: 80px;
}

@media (max-width: 600px) {
  .about__text:last-child {
    margin-bottom: 40px;
  }
}

.about__person{
  position: absolute;

  right: -77px;
  top: 64px;
  z-index:1;

  pointer-events:none;
  user-select:none;
}

@media (max-width: 1280px) {
  .about__person{ 
    position: relative;
    right: auto;
    top: 10px;
  }
}




.book-banner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  background: #1f50b8;
  color: #fff;
  border-radius: 15px;
  position: relative;
  flex-wrap: wrap;
  z-index: 1;
}

@media (max-width: 1280px) {
  .book-banner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .book-banner {
    padding: 20px;
  }
}


.book-banner__wrap {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  width: 80%;
}

@media (max-width: 1280px) {
  .book-banner__wrap {
    order: 0;
    width: 100%;
    flex-direction: column;
  }
}

.book-banner__cover {
  width: 157px;
  height: 217px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 1280px) {
  .book-banner__cover {
    order: 2;
  }
}

.book-banner__text {
  max-width: 503px;
}

@media (max-width: 1280px) {
  .book-banner__text {
    max-width: 100%;
  }
}

.book-banner__text p {
  font-size: 22px;
  line-height: 32px;
}

@media (max-width: 600px) {
  .book-banner__text p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 520px) {
  .book-banner__text p {
    font-size: 18px;
    line-height: 28px;
  }
}

.book-banner strong {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  width: 50%;
}


@media (max-width: 1280px) {
  .book-banner strong {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .book-banner strong {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 520px) {
  .book-banner strong {
    font-size: 18px;
    line-height: 28px;
  }
}

.book-banner__divider {
  width: 1px;
  height: 150px;
  background: #ffffff7e;
  flex-shrink: 0;
}

@media (max-width: 1280px) {
  .book-banner__divider {
    width: 100%;
    height: 1px;
  }
}

.book-banner__stats {
  max-width: 390px;
}

@media (max-width: 1280px) {
  .book-banner__stats {
    max-width: 100%;
  }
}

.book-banner__stats p {
  font-size: 22px;
  line-height: 32px;
}

@media (max-width: 600px) {
  .book-banner__stats p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 520px) {
  .book-banner__stats p {
    font-size: 18px;
    line-height: 28px;
  }
}

.book-banner__stats b {
  font-weight: 700;
}

.book-banner__button {
  width: 190px;
  height: 45px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #fff;
  color: #1f50b8;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition: 0.2s ease;

  margin-left: 30px;
}

@media (max-width: 1280px) {
  .book-banner__button {
    margin-left: 0;
  }
}

.book-banner__button:hover {
  background: #bebebe;
}

.book-banner__button i {
  font-size: 22px;
}

.bot-block {
  width: 100%;
  margin-top: -64px;
  margin-left: 189px;
}

@media (max-width: 1280px) {
  .bot-block {
    margin-top: 0;
    margin-left: 0;
    order: 3;
  }
}








.lk-finance-section {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 165px;
  padding-bottom: 165px;
  background-color: #ffffff;
}

@media (max-width: 600px) {
  .lk-finance-section {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.lk-finance-section__wrap {
  max-width: 1200px;
  margin: 0 auto;
}


.lk-title {
  font-size: 60px;
  line-height: 75px;
  font-weight: 400;
  margin-bottom: 90px;
}

@media (max-width: 1200px) {
  .lk-title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 600px) {
  .lk-title {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 420px) {
  .lk-title {
    font-size: 22px;
    line-height: 32px;
  }
}

.lk-title-brand {
  color: var(--c-blue);
  font-weight: 600;
}

.lk-stats-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .lk-stats-container {
    gap: 100px;
  }
}

@media (max-width: 420px) {
  .lk-stats-container {
    gap: 65px;
  }
}

.lk-stat-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 150px;
}

@media (max-width: 1200px) {
  .lk-stat-item {
    flex:none;
    min-width: none;
  }
}

.lk-stat-number {
  font-size: 100px;
  font-weight: 600;
  color: var(--c-blue);
  margin-bottom: 40px;
  letter-spacing: -1px;
}

@media (max-width: 600px) {
  .lk-stat-number {
    font-size: 80px;
  }
}

@media (max-width: 420px) {
  .lk-stat-number {
    font-size: 60px;
    margin-bottom: 30px;
  }
}

.lk-stat-text {
  font-size: 28px;
  line-height: 38px;
  color: #0F131F;
}

@media (max-width: 600px) {
  .lk-stat-text {
    font-size: 19px;
    line-height: 29px;
  }
}







/* Модальное окно */
.cf7-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: .35s ease;
}

/* Активное состояние */
.cf7-modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* Затемнение */
.cf7-modal__overlay {
  position: absolute;
  inset: 0;

  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}

/* Контент */
.cf7-modal__content {
  position: relative;

  width: 90%;
  max-width: 460px;

  background: #fff;

  border-radius: 28px;

  padding: 44px 36px;

  text-align: center;

  box-shadow:
    0 20px 60px rgba(0,0,0,.2);

  transform: translateY(30px) scale(.95);

  transition: .35s ease;
}

/* Анимация */
.cf7-modal.is-active .cf7-modal__content {
  transform: translateY(0) scale(1);
}

/* Иконка */
.cf7-modal__icon {
  width: 90px;
  height: 90px;

  margin: 0 auto 26px;

  border-radius: 50%;

  background: linear-gradient(135deg, #22c55e, #16a34a);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 14px 34px rgba(34,197,94,.35);
}

.cf7-modal__icon i {
  color: #fff;
  font-size: 40px;
}

/* Заголовок */
.cf7-modal h3 {
  margin: 0 0 14px;

  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;

  color: #0f172a;
}

/* Текст */
.cf7-modal p {
  margin: 0 0 34px;

  font-size: 16px;
  line-height: 1.7;

  color: #64748b;
}

/* Кнопка */
.cf7-modal__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: none;
  outline: none;

  background: linear-gradient(135deg, #2563eb, #1d4ed8);

  color: #fff;

  padding: 15px 34px;

  border-radius: 14px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: .25s ease;
}

.cf7-modal__button i {
  font-size: 15px;
}

.cf7-modal__button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 26px rgba(37,99,235,.35);
}

/* Блокировка формы */
.form-disabled {
  opacity: .55;
  pointer-events: none;
  filter: grayscale(.2);

  transition: .3s ease;
}

/* Мобильная адаптация */
@media (max-width: 576px) {

  .cf7-modal__content {
    padding: 36px 24px;
    border-radius: 22px;
  }

  .cf7-modal h3 {
    font-size: 26px;
  }

  .cf7-modal p {
    font-size: 15px;
  }

}