* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  background-color: rgba(38, 38, 38, 1);
  color: #fff;
}

.page-container {
  overflow: hidden;
  padding-bottom: 55px;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 735px;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  
  width: 100%;
  padding: 55px 79px 215px;
}

.company-logo {
  border-radius: 56px;
  background-color: rgba(0, 200, 255, 1);
  min-height: 80px;
  padding: 29px 40px;
  overflow: hidden;
  font-family:
    "Open Sans",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: rgba(38, 38, 38, 1);
  font-weight: 800;
  text-transform: uppercase;
  align-self: stretch;
  width: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text-container {
  display: flex;
  margin-top: 152px;
  margin-bottom: -43px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  justify-content: center;
}

.hero-title {
  font-size: 40px;
  font-family:
    "Kanit",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  align-self: center;
}

.hero-description {
  font-size: 12px;
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  margin-top: 40px;
}

.cta-container {
  display: flex;
  margin-top: 40px;
  width: 100%;
  align-items: center;
  gap: 8px;
  font-family:
    "Montserrat",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 22px;
  color: rgba(43, 43, 43, 1);
  font-weight: 500;
  line-height: 1.2;
  justify-content: center;
}

.cta-button {
  border: none;
  cursor: pointer;
  border-radius: 20px;
  background-color: rgba(0, 200, 255, 1);
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 24px 80px;
  font-family:
    "Montserrat",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 22px;
  color: rgba(43, 43, 43, 1);
  font-weight: 500;
  text-decoration: none;
}

/* Insights Section */
.insights-section {
  display: flex;
  margin-top: 27px;
  width: 100%;
  padding: 0 78px;
  flex-direction: column;
  align-items: stretch;
  font-weight: 400;
  text-align: center;
  justify-content: center;
}

.section-title {
  color: rgba(0, 200, 255, 1);
  font-size: 64px;
  font-family:
    "Kanit",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  align-self: start;
}

.insights-grid {
  display: grid;
  margin-top: 40px;
  width: 100%;
  gap: 40px;
  color: rgba(255, 255, 255, 1);
  grid-template-columns: repeat(4, 1fr);
}

.insight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.insight-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 238px;
  max-width: 100%;
  overflow: hidden;
}

.insight-title {
  font-size: 22px;
  font-family:
    "Kanit",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  margin-top: 40px;
}

.insight-description {
  font-size: 12px;
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  align-self: stretch;
  margin-top: 40px;
}

/* Intelligence Section */
.intelligence-section {
  padding: 0 78px;
}

.intelligence-grid {
  display: grid;
  margin-top: 31px;
  gap: 40px;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  text-align: center;
  grid-template-columns: repeat(4, 1fr);
}

.intelligence-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

.intelligence-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 238px;
  align-self: center;
  max-width: 100%;
  overflow: hidden;
}

.intelligence-title {
  font-size: 22px;
  font-family:
    "Kanit",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  text-transform: uppercase;
  margin-top: 40px;
}

.intelligence-description {
  font-size: 12px;
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  margin-top: 40px;
}

/* Learning Section */
.learning-section {
  display: flex;
  margin-top: 103px;
  min-height: 383px;
  align-items: start;
  gap: 40px;
  font-weight: 400;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 78px;
}

.learning-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  max-width: 383px;
  width: 100%;
  min-width: 240px;
  overflow: hidden;
}

.learning-content {
  min-width: 240px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.learning-title {
  color: rgba(0, 200, 255, 1);
  font-size: 40px;
  font-family:
    "Kanit",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}

.learning-description {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  margin-top: 40px;
}

/* Contact Section */
.contact-section {
  display: flex;
  margin-top: 103px;
  min-height: 634px;
  flex-direction: column;
  align-items: stretch;
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  justify-content: start;
  padding: 0 78px;
}

.contact-title {
  width: 100%;
  font-family:
    "Kanit",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 40px;
  color: rgba(0, 200, 255, 1);
  text-align: center;
}

.contact-subtitle {
  font-size: 24px;
  text-align: center;
  margin-top: 60px;
}

.contact-description {
  font-size: 12px;
  text-align: center;
  margin-top: 60px;
}

.contact-form {
  align-self: center;
  margin-top: 60px;
  width: 357px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 700;
}

.form-input {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  color: white;
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.form-input::placeholder {
  color: white;
}

.form-button-container {
  display: flex;
  margin-top: 20px;
  width: 100%;
  align-items: center;
  gap: 8px;
  font-family:
    "Montserrat",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 28px;
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  justify-content: center;
}

.form-submit-button {
  border: none;
  cursor: pointer;
  border-radius: 20px;
  background-color: rgba(0, 200, 255, 1);
  align-self: stretch;
  min-width: 240px;
  width: 100%;
  padding: 24px 7px 24px 6px;
  font-family:
    "Montserrat",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 28px;
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
}

/* Company Address */
.company-address {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-family:
    "Kanit",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  text-align: center;
  align-self: center;
  margin-top: 39px;
  font-style: normal;
  padding: 0 78px;
}

/* Footer */
.footer {
  border-radius: 48px;
  background-color: rgba(0, 200, 255, 1);
  display: flex;
  margin: 39px 78px 0;
  width: calc(100% - 156px);
  padding: 20px 40px;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-size: 12px;
  color: rgba(38, 38, 38, 1);
  text-align: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  width: 100%;
  max-width: 963px;
  align-items: center;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copyright {
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.footer-links {

  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 8px;
  font-family:
    "Montserrat",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  justify-content: start;
}

.footer-links-container {
  border-radius: 20px;
  background-color: rgba(0, 200, 255, 1);
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  color: rgba(38, 38, 38, 1);
  text-decoration: none;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
  }

  .hero-content {
    max-width: 100%;
    padding: 55px 20px 100px;
  }

  .company-logo {
    padding: 29px 20px;
  }

  .hero-text-container {
    max-width: 100%;
    margin-bottom: 10px;
    margin-top: 40px;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .cta-container {
    max-width: 100%;
  }

  .cta-button {
    padding: 24px 20px;
  }

  .insights-section,
  .intelligence-section,
  .learning-section,
  .contact-section,
  .company-address {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .learning-section {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    max-width: 100%;
    font-size: 40px;
  }

  .insights-grid,
  .intelligence-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .learning-section {
    margin-top: 40px;
  }

  .learning-title {
    max-width: 100%;
  }

  .learning-description {
    max-width: 100%;
  }

  .contact-section {
    margin-top: 40px;
  }

  .contact-title {
    max-width: 100%;
  }

  .contact-subtitle,
  .contact-description {
    max-width: 100%;
    margin-top: 40px;
  }

  .contact-form {
    margin-top: 40px;
  }

  .footer {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
    padding: 20px;
  }

  .footer-content {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .insights-grid,
  .intelligence-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .name,
  .phone,
  .email {
    white-space: initial;
  }
}


/* BURGER */
    
.burger {
    display: none;
}

    @media (max-width: 900px) {
            .burger {
                width: 30px;
                height: 17px;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                background: none;
                border: none;
                cursor: pointer;
                z-index: 10;
              }
              
              .burger span {
                display: block;
                height: 3px;
                width: 100%;
                background-color: #fff;
                border-radius: 2px;
                transition: 0.3s;
              }
              
              /* Анімація в активному стані */
              .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
              }
              
              .burger.active span:nth-child(2) {
                opacity: 0;
              }
              
              .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
              }
            }

            .nav-list {
              display: flex;
              gap: 24px;
            }

            @media (max-width: 900px) {
                .main-header {
                    padding: 12px 20px;
                }
                .main-nav {
                  display: none;
                }
                .main-nav.active {
                    display: block;
                    width: 80%;
                    position: absolute;
                    height: 500px;
                    background-color: rgba(0, 0, 0, 1);
                    top: 46px;
                    right: 0;
                    padding: 20px;
                    z-index: 10;
                  }
                  .nav-list {

                    flex-direction: column;
                    align-items: flex-end;
                    width: 100%;
                   
                  }
              }         

              .container {
                width: 100%;
                max-width: 1230px;
                padding: 0 15px;
                margin: 0 auto;
              }  
              
              .page {
                padding: 80px 0;
                
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
                  
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                  
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 24px;
                    text-transform: uppercase;
                   
                   
                  }
                 
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
            
                 margin-top: 0;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 16px;
                  font-weight: 500;
                 
                  text-transform: uppercase;
                  cursor: pointer;
                  width: fit-content;
                }