*{
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  box-sizing: border-box;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.blockContainer {
  display: block;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .blockContainer {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1024px) {
  .blockContainer {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media (min-width: 1600px) {
  .blockContainer {
    padding-left: 240px;
    padding-right: 240px;
  }
}

.mainSection{
  padding-top: 40px;
  padding-bottom: 300px;
  background: radial-gradient(
      circle at 70% 40%,
      #1346a3 0%,
      #0f2f6d 35%,
      #0e1f3f 60%,
      #0a1a33 100%
    );
}

.headerNavigation {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  gap: 25px
}

@media (min-width: 768px) {
  .headerNavigation {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: 50px;
  }
}
@media (min-width: 1280px) {
  .headerNavigation {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: 130px
  }
}

.logo {
  width: auto;
  height: 23px;
}

.headerMenu{
  gap: 20px;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-left: 0;
  margin: 0;
  justify-self: start;
  display: none;
}

@media (min-width: 768px) {
  .headerMenu{
    gap: 30px;
    display: flex;
  }
}

@media (min-width: 1280px) {
  .headerMenu{
    display: flex;
  }
}

.headerMenu > li {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.72px;
}

.burger {
  width: 30px;
  height: 100%;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  color: white;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  z-index: 10;
  background: radial-gradient(
    circle at 70% 40%,
    #1346a3 0%,
    #0f2f6d 35%,
    #0e1f3f 60%,
    #0a1a33 100%
  );
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.drawer.open {
  transform: translateX(0);
}

.drawer.open + .overlay {
  opacity: 1;
  pointer-events: auto;
}

.close {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 24px;
}

.headerMobileMenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.headerMobileMenu a {
  display: block;
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.headerMobileMenu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.headerButton {
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  gap: 10px;
  color: white;
  text-decoration: none;
  display: inline-flex;
}


.titleContentContainer {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin-top: 50px;
   gap: 50px;
}

.title {
 font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #FFF;
  letter-spacing: -2.56px;
  margin: 0;
}

.titleDescription {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.96px;
  margin: 0;
}



@media (min-width: 768px) {
  .titleContentContainer {
    margin-top: 102px;
  }

  .headerButton{
    font-size: 16px;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 99px;
    border: 1px solid #FFF;
    color: white;
    text-decoration: none;
    display: inline-flex;
  }

  .title{
    font-size: 32px;
  }
  .titleDescription {
    font-size: 18px;
  }

}

@media (min-width: 1280px) {
  .headerButton{
    padding: 20px 30px;
  }

  .title{
    font-size: 64px;
  }
  .titleDescription {
    font-size: 24px;
  }
}


.buttonSection {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.actionButton {
  display: inline-flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 84px;
  border: 1px solid #FFF;
  background: transparent;
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s;
  width: 100%;
  text-decoration: none;
}

.actionButton:hover {
  background: linear-gradient(180deg, #2D5DFF 0%, #577AFF 100%);
  color: white;
  border: 1px solid rgba(10, 26, 51, 0.11);
}

@media (min-width: 720px) {
  .actionButton {
    padding: 20px 40px;
    font-size: 18px;
    width: auto;
  }

  .buttonSection {
    flex-direction: row;
  }
}

@media (min-width: 1280px) {
  .actionButton {
    height: 66px;
    padding: 25px 51px;
    font-size: 20px;
  }
}


.chatPopup {
  display: flex;
  position: absolute;
  width: 100%;
  justify-content: center;
  align-content: center;
  top: 78%;
  left: 0;
  z-index: 10;
}

.chatContainer{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 20px 20px 20px 20px;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  border-radius: 30px;
  border: 1px solid #D6E4FF;
  background: #FFF;
  box-sizing: border-box;
}

@media (min-width: 756px) {
  .chatContainer{
    padding: 32px 32px 32px 32px;
  }
}


@media (min-width: 1280px) {
  .chatContainer{
    padding: 45px 45px 45px 45px;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
  }
}

.chatLeft {
  flex-direction: column;
  gap:33px;
  align-items: flex-start;
  display: flex;
  padding: 30px 20px 30px 20px;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 26px;
  background: #F1F7FF;
  margin: 0;
  list-style: none;
  height: 325px;
  width: 100%;
}

@media (min-width: 756px) {
  .chatLeft {
    padding: 50px 32px 50px 32px;
  }
}

.chatQuestion, .chatAnswer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 11px;
  min-height: 53px;
  width: 100%;
}

.chatQuestion > img{
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 2px solid #0f2f6d;
}

.chatQuestion > p {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 20%;
  padding: 0 15px 0 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 111px;
  background: #FFF;
  align-content: stretch;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 14px;
}


.chatQuestion > p > span , .chatAnswer > p > span {
  color: #000;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.56px;
  opacity: 0.4;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatAnswer > p {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 20%;
  height: 53px;
  padding: 0 15px 0 15px;
  justify-content: center;
  align-items: center;
  border-radius: 111px;
  align-content: stretch;
  flex-wrap: wrap;
  flex-direction: column;
  background: linear-gradient(180deg, #2D5DFF 0%, #577AFF 100%);
  color: white;
  width: 100%;
  font-size: 14px;
}

@media (min-width: 756px) {
  .chatQuestion > p,   .chatAnswer > p  {
    font-size: 16px;
    padding: 0 20px 0 20px;
    grid-template-columns: 1fr 10%;
  }

  .chatQuestion > p > span , .chatAnswer > p > span {
    font-size: 14px;
  }
}

.chatAnswer > div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  height: 53px;
  width: 58px;
  border-radius: 53px;
  background: linear-gradient(180deg, #2D5DFF 0%, #577AFF 100%);
}

.chatRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
}

.topContentWrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 100%;
}


.chatContentContainer {
  border-radius: 26px;
  background: #F1F7FF;
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 27px;
  width: 100%;
}

.chatContentWrapper {
 display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.chatContentWrapper > img {
  width: 42px;
  height: 42px;
}

.chatContent {
  display: flex;
  flex-direction: column;
  gap:10px
}

.chatContent > p {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}

.chatContent > span {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  opacity: 0.4;
}

.chatContentAI {
  color: white;
  display: flex;
  width: 50px;
  height: 28px;
  padding: 11px;
  justify-content: center;
  align-items: center;
  gap: 11px;
  border-radius: 111px;
  background: linear-gradient(180deg, #2D5DFF 0%, #577AFF 100%);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.chatContentContainer > p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 18px;
  font-style: normal;
  font-weight: 400;
}

.cardSection {
  background: #F1F7FF;
  padding-top: 600px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  position: relative;
}

@media (min-width: 1280px) {
  .cardSection {
    padding-top: 310px;
    padding-bottom: 100px;
  }
}

.cardWrapper {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 20px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .cardWrapper {
    grid-template-columns: 1fr 1fr;
  }
}


@media (min-width: 1024px) {
  .cardWrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .cardWrapper {
    grid-template-columns: 300px 300px 300px 300px ;
  }
}
@media (min-width: 1600px) {
  .cardWrapper {
    grid-template-columns: 345px 345px 345px 345px ;
  }
}

.card {
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 12px;
  border: 1px solid #D6E4FF;
  background: #FFF;
  cursor: pointer;
  transition: all 0.5s;
  width: 100%;
}

.cardImg {
  display: flex;
  width: 60px;
  height: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 87/87;
  border-radius: 196px;
  background:  linear-gradient(180deg, #2D5DFF 0%, #577AFF 100%);
}

.cardImg > svg {
  fill: #ffffff;
  width: 37px;
  height: 37px;
}

.cardImg > svg > path {
  fill: #ffffff;
}

@media (min-width: 1200px) {
  .card {
    width: 100%;
    padding:  30px;
    height: auto;
    gap: 80px;
  }
}

@media (min-width: 1600px) {
  .card {
    width: 100%;
    padding:  44px;
    height: 646px;
    gap: 80px;
  }

  .cardImg {
    width: 87px;
    height: 87px;
  }
  .cardImg > svg {
    fill: #ffffff;
    width: 47px;
    height: 47px;
  }
}


.cardContentWrapper {
  display: flex;
  flex-direction: column;
  gap:40px;
}

.cardContentWrapper > h3{
  margin: 0;
  color: #212326;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.76px;
}


.cardContentWrapper > p {
  margin: 0;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.96px;
}

@media (min-width: 768px) {
  .cardContentWrapper > h3 {
    font-size: 36px;
  }
  .cardContentWrapper > p {
    font-size: 20px;
  }

}

@media (min-width: 1280px) {
  .cardContentWrapper > h3 {
    font-size: 38px;
  }
  .cardContentWrapper > p {
    font-size: 24px;
  }
}

@media (min-width: 1600px) {
  .cardContentWrapper > h3 {
    font-size: 44px;
  }
  .cardContentWrapper > p {
    font-size: 24px;
  }
}

.card:hover {
  transition: all 0.5s;
  border: 1px solid #D6E4FF;
  background: linear-gradient(180deg, #2D5DFF 0%, #577AFF 100%);
}

.card:hover > .cardImg {
  background: #ffffff;
}

.card:hover > .cardImg > svg {
  fill: #2D5DFF;
}

.card:hover > .cardImg > svg > path {
  fill: #2D5DFF;
}

.card:hover > .cardContentWrapper > h3 , .card:hover > .cardContentWrapper > p {
  color: white;
}

.actionSection {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column-reverse;

  gap: 40px;
  background: radial-gradient(
    circle at 70% 40%,
    #1346a3 0%,
    #0f2f6d 35%,
    #0e1f3f 60%,
    #0a1a33 100%
  );
}


.actionSectionLeft {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.actionSectionLeft > h3 {
  margin:0;
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.76px;
  text-align: center;
}

.actionSectionButtonWrapper {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.actionSectionButtonWrapper > button {
  cursor: pointer;
  display: inline-flex;
  height: 66px;
  padding: 25px 51px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: black;
  border-radius: 84px;
  border: solid 1px #2D5DFF;
  transition: all 0.5s;
  width: 100%;
}

@media (min-width: 768px) {
  .actionSection {
    padding-top: 60px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .actionSectionLeft > h3 {
    font-size: 36px;
    text-align: left;
  }

  .actionSectionButtonWrapper {
    flex-direction: row;
  }

  .actionSectionButtonWrapper > button {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .actionSection {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}


@media (min-width: 1600px) {
  .actionSection {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }

  .actionSectionLeft > h3 {
    font-size: 44px;
  }
}

.actionSectionButtonWrapper > button:hover {
  color: white;
  background: linear-gradient(180deg, #2D5DFF 0%, #577AFF 100%);
}

.actionSectionRight {
  background-image: url("../img/1.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: relative;
  width: 100%;
  height: 300px;
  background-size: contain;
}

.startTurningSection {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F1F7FF;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .actionSectionRight {
    width: 100%;
    height: 100%;
  }

  .startTurningSection {
    padding-top: 100px;
    padding-bottom: 100px;
  }

}

.startTurningContent {
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border-radius: 30px;
  border: 1px solid #D6E4FF;
  background:
    radial-gradient(
      60% 80% at 85% 30%,
      #9fc2ff 0%,
      #cfe3ff 35%,
      rgba(207, 227, 255, 0.6) 50%,
      rgba(207, 227, 255, 0.0) 70%
    ),
    #f4f8ff;
}

.startTurningContentLeft {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 655px;
}


.startTurningContentLeft > h3 {
  margin: 0;
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -2.56px;
}

.startTurningContentLeft > p {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.startTurningContentRight {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.startTurningContentRight > img{
  display: block;
  position: relative;
  width: 100%;
}

.startTurningContentRight {
  position: relative;
  border-radius: 24px;
}

@media (min-width: 768px) {
  .startTurningContentRight {
    display: flex;
  }
  .startTurningContent {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .startTurningContent {
    padding: 0;
  }
  .startTurningContentRight > img{
    width: 100%;
  }
  .startTurningContentLeft{
    margin-left: 60px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .startTurningContentLeft > h3 {
    font-size: 48px;
    line-height: 52px;
  }
}

@media (min-width: 1280px) {
  .startTurningContentRight > img{
    width: 314px;
    top: 0;
    right: 0;
  }
}

@media (min-width: 1600px) {
  .startTurningContentRight > img{
    display: block;
    position: absolute;
    width: 514px;
    top: -65px;
    right: 15%;
  }
  .startTurningContentLeft{
    padding: 0;
    margin-left: 120px;
    margin-top: 120px;
    margin-bottom: 120px;
  }

  .startTurningContentLeft > h3 {
    font-size: 64px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -2.56px;
  }
}


.startTurningImg {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  z-index: 1111;
}

.startTurningImg > img {
  width: 65%;
}

.startTurningContentButtonWrapper {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap:20px;
}

.startTurningContentButtonWrapper > button, a {
  display: inline-flex;
  height: 66px;
  padding: 25px 51px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #FFF;
  background: #000;
  border-radius: 84px;
  cursor: pointer;
  border: none;
  width: 100%;
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .startTurningContentButtonWrapper{
    flex-direction: row;
  }
  .startTurningContentButtonWrapper > button, a {
    width: auto;
  }
}

.startTurningContentButtonWrapper > button:hover, a:hover {
  color: white;
  background: linear-gradient(180deg, #2D5DFF 0%, #577AFF 100%);
}


.modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 11;
}

.modalOverlay.active {
  display: flex;
}

.modalContent {
  background: #000;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.modalContent video {
  width: 100%;
  height: auto;
  display: block;
}

.modalClose {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: black;
  font-size: 28px;
  cursor: pointer;
  z-index: 20;
}
