:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  --border: 0 0% 89.8%;
  --gray-50: rgb(249, 250, 251);
  --gray-100: rgb(243, 244, 246);
  --gray-200: rgb(229, 231, 235);
  --gray-400: rgb(156, 163, 175);
  --gray-500: rgb(107, 114, 128);
  --gray-600: rgb(75, 85, 99);
  --gray-700: rgb(55, 65, 81);
  --gray-800: rgb(31, 41, 55);
  --white: rgb(255, 255, 255);
  --black: rgb(0, 0, 0);
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
}

.min-h-screen {
  min-height: 100vh;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.centered {
  text-align: center;
}

.icon {
  width: 16px;
  height: 16px;
}

.section-title {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-800);
  margin-bottom: 32px;
}

.section-title.centered {
  text-align: center;
  margin-bottom: 48px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 50;
}

.header-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 16px 24px;
}

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

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-image {
  height: 32px;
  width: auto;
  max-width: 200px;
}

.nav-links {
  display: none;
  gap: 24px;
  font-size: 12px;
  color: var(--gray-600);
}

@media (min-width: 768px) {
  .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--gray-600);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--gray-800);
}

.hero {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  max-height: calc(var(--vh, 1vh) * 100);
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-animation: zoom 5s ease-in-out infinite alternate;
          animation: zoom 5s ease-in-out infinite alternate;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.hero-text {
  margin-bottom: 32px;
}

.hero-title {
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 64px;
  }
}

.hero-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 448px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-indicators {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.indicator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.indicator.active {
  background-color: var(--white);
}

.about-section {
  padding: 96px 0;
  background-color: var(--white);
}

.about-grid {
  display: -ms-grid;
  display: grid;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.about-description {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-features {
  background-color: var(--gray-50);
  padding: 32px;
  border-radius: 8px;
}

.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 16px;
  height: 16px;
  color: var(--gray-600);
}

.feature-text {
  font-size: 12px;
  color: var(--gray-700);
}

.services-section {
  padding: 96px 0;
  background-color: var(--gray-50);
}

.services-grid {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.service-description {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}

.solutions-section {
  padding: 96px 0;
  background-color: var(--white);
}

.solutions-grid {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .solutions-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.solution-item {
  padding: 24px;
}

.solution-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.solution-description {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}

.company-section {
  padding: 96px 0;
  background-color: var(--white);
}

.company-table-container {
  max-width: 700px;
  margin: 0 auto;
}

.company-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-800);
}

.company-name {
  font-size: 28px;
  font-weight: 500;
  color: var(--gray-800);
  margin: 0;
}

@media (max-width: 767px) {
  .company-name {
    font-size: 24px;
  }
}

.company-table {
  background-color: transparent;
}

.table-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5fr;
      grid-template-columns: 1fr 5fr;
}

@media (max-width: 767px) {
  .table-row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.table-label {
  padding: 16px 20px 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .table-label {
    padding: 12px 0 0;
    font-size: 13px;
    border-bottom: none;
  }
}

.table-value {
  padding: 16px 0 16px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-400);
}

@media (max-width: 767px) {
  .table-value {
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--gray-400);
    margin-bottom: 16px;
  }
}

.footer {
  padding: 48px 0;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}

.footer-logo-image {
  height: 24px;
  width: auto;
  max-width: 150px;
  opacity: 0.8;
}

.footer-tagline {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--gray-400);
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 11px;
  }
  .about-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .services-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .solutions-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--gray-800);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
/*# sourceMappingURL=styles.css.map */