*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #4a5568;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #232836;
  margin-bottom: 1.6rem;
}

h1 {
  font-size: 4.8rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3.6rem;
  }
}

h2 {
  font-size: 3.6rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
}

@media (max-width: 768px) {
  h4 {
    font-size: 1.8rem;
  }
}

p {
  margin-bottom: 1.6rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1.6rem;
}

.section-subtitle {
  text-align: center;
  color: #718096;
  font-size: 1.8rem;
  max-width: 80rem;
  margin: 0 auto 4.8rem;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
  }
}

.highlight {
  color: #2b63ff;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn-primary {
  background-color: #2b63ff;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #0041f7;
}

.btn-white {
  background-color: #ffffff;
  color: #232836;
}

.btn-white:hover {
  background-color: #f2f2f2;
}

.cookie-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #2b63ff;
  color: #ffffff;
  padding: 2.4rem;
  border-radius: 8px;
  max-width: 40rem;
  z-index: 1000;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: none;
}

.cookie-popup.active {
  display: block;
}

.cookie-popup h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cookie-popup p {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

@media (max-width: 576px) {
  .cookie-popup {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 8px 8px 0 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 100;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 8rem;
}

.header .logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2b63ff;
}

@media (max-width: 992px) {
  .header .main-nav {
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .main-nav.active {
    height: calc(100vh - 8rem);
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

.header .main-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .header .main-nav .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
  }
}

.header .main-nav .nav-list li {
  margin: 0 1.6rem;
}

@media (max-width: 992px) {
  .header .main-nav .nav-list li {
    margin: 1.6rem 0;
  }
}

.header .main-nav .nav-list .nav-link {
  font-size: 1.6rem;
  font-weight: 500;
  color: #232836;
}

.header .main-nav .nav-list .nav-link:hover {
  color: #2b63ff;
}

.header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 992px) {
  .header .mobile-menu-toggle {
    display: block;
  }
}

.header .mobile-menu-toggle span {
  display: block;
  width: 2.4rem;
  height: 0.3rem;
  background-color: #232836;
  margin: 0.4rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -6px);
          transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
  padding: 8rem 0;
  background-color: #f5f7fa;
}

.hero-section .hero-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .hero-section .hero-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.hero-section .hero-text p {
  font-size: 1.8rem;
  margin-bottom: 3.2rem;
}

.hero-section .hero-image {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-section .hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.features-section {
  padding: 8rem 0;
}

.features-section .features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

@media (max-width: 992px) {
  .features-section .features-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-section .features-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.features-section .feature-card {
  padding: 3.2rem;
  border-radius: 8px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.features-section .feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.features-section .feature-card .feature-icon {
  margin-bottom: 2.4rem;
}

.features-section .feature-card .feature-icon img {
  width: 6.4rem;
  height: 6.4rem;
}

.features-section .feature-card h3 {
  margin-bottom: 1.6rem;
}

.features-section .feature-card p {
  color: #718096;
  margin-bottom: 0;
}

.ai-systems-section {
  padding: 8rem 0;
  background-color: #ffffff;
}

.ai-systems-section .ai-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .ai-systems-section .ai-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.ai-systems-section .ai-text .section-title {
  text-align: left;
}

.ai-systems-section .ai-text p {
  margin-bottom: 3.2rem;
}

.ai-systems-section .feature-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.4rem;
}

.ai-systems-section .feature-list li:last-child {
  margin-bottom: 0;
}

.ai-systems-section .feature-list li .check-icon {
  margin-right: 1.6rem;
  color: #2b63ff;
  font-weight: bold;
}

.ai-systems-section .feature-list li h4 {
  margin-bottom: 0.8rem;
}

.ai-systems-section .feature-list li p {
  margin-bottom: 0;
  color: #718096;
}

.ai-systems-section .ai-image {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ai-systems-section .ai-image img {
  display: block;
  width: 100%;
  height: auto;
}

.integration-section {
  padding: 8rem 0;
  background-color: #f5f7fa;
}

.integration-section .integration-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

@media (max-width: 992px) {
  .integration-section .integration-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .integration-section .integration-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.integration-section .integration-card {
  text-align: center;
  padding: 3.2rem 2.4rem;
}

.integration-section .integration-card .integration-icon {
  margin-bottom: 2.4rem;
}

.integration-section .integration-card .integration-icon img {
  width: 6.4rem;
  height: 6.4rem;
}

.integration-section .integration-card h3 {
  margin-bottom: 1.6rem;
}

.integration-section .integration-card p {
  color: #718096;
  margin-bottom: 0;
}

.automation-matters-section {
  padding: 8rem 0;
  background-color: #2b63ff;
}

.automation-matters-section .section-title,
.automation-matters-section .section-subtitle {
  color: #ffffff;
}

.automation-matters-section .matters-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

@media (max-width: 992px) {
  .automation-matters-section .matters-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .automation-matters-section .matters-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.automation-matters-section .matters-card {
  text-align: center;
  padding: 3.2rem 2.4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.automation-matters-section .matters-card .matters-icon {
  margin-bottom: 2.4rem;
}

.automation-matters-section .matters-card .matters-icon img {
  width: 6.4rem;
  height: 6.4rem;
}

.automation-matters-section .matters-card h3 {
  color: #ffffff;
  margin-bottom: 1.6rem;
}

.automation-matters-section .matters-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.contact-section {
  padding: 8rem 0;
}

.contact-section .contact-form {
  max-width: 64rem;
  margin: 0 auto;
}

.contact-section .contact-form .form-group {
  margin-bottom: 2.4rem;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  outline: none;
  border-color: #2b63ff;
}

.contact-section .contact-form textarea {
  min-height: 16rem;
  resize: vertical;
}

.contact-section .contact-form button {
  width: 100%;
}

.thank-you-section {
  padding: 16rem 0;
  background-color: #f5f7fa;
}

.thank-you-section .thank-you-content {
  text-align: center;
}

.thank-you-section .thank-you-content h2 {
  margin-bottom: 4rem;
}

.footer {
  padding: 3.2rem 0;
  background-color: #232836;
  color: #ffffff;
}

.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 576px) {
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}

.footer .copyright {
  margin-bottom: 0;
}

.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}

.footer .footer-links a {
  color: #ffffff;
}

.footer .footer-links a:hover {
  color: #2b63ff;
}

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

.privacy h1 {
  margin-bottom: 32px;
  font-size: 32px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */