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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #f8fafc;
  color: #0f172a;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

ul {
  list-style: none;
}

.container, .hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

h1, h2, h3, h4 {
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d7a52a;
  margin-bottom: 16px;
}

.nav {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}
.nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav .logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav .nav-links {
  display: flex;
  gap: 40px;
}
.nav .nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s;
}
.nav .nav-links a:hover {
  color: #d7a52a;
}
.nav .nav-cta {
  padding: 10px 20px;
  background: #d7a52a;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.2s;
}
.nav .nav-cta:hover {
  background: rgb(194.8992094862, 149.1482213439, 36.6007905138);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(215, 165, 42, 0.3);
}

.hero {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero .hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero .tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(215, 165, 42, 0.15);
  color: #d7a52a;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  background: linear-gradient(to right, #0f172a, rgb(55.2631578947, 84.7368421053, 154.7368421053));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin-bottom: 0;
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero .scroll-arrow {
  width: 24px;
  height: 40px;
  border: 2px solid #d7a52a;
  border-radius: 12px;
  position: relative;
}
.hero .scroll-arrow::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #d7a52a;
  border-radius: 50%;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0.3;
  }
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  z-index: 1;
}
.hero .hero-background {
  display: none;
}

.expertise {
  background: white;
}
.expertise .section-header {
  margin-bottom: 64px;
  max-width: 600px;
}
.expertise .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.expertise .section-header p {
  font-size: 1.125rem;
  color: #64748b;
}
.expertise .card {
  padding: 40px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  color: #0f172a;
}
.expertise .card:hover {
  background: #fafafa;
  border-color: rgba(215, 165, 42, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.expertise .card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(215, 165, 42, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #d7a52a;
  box-shadow: 0 4px 12px rgba(215, 165, 42, 0.15);
  margin-bottom: 24px;
}
.expertise .card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #0f172a;
}
.expertise .card p {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.highlight-section {
  background: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}
.highlight-section .highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.highlight-section .eyebrow {
  color: #d7a52a;
}
.highlight-section h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}
.highlight-section p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 32px;
  max-width: 480px;
}
.highlight-section .check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 500;
}
.highlight-section .check-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d7a52a;
  border-radius: 50%;
  margin-right: 12px;
}
.highlight-section .visual-shape {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(215, 165, 42, 0.05), transparent);
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  position: relative;
}
.highlight-section .visual-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(215, 165, 42, 0.1), transparent);
}

.innovation .center {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 700px;
}
.innovation .center h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.innovation .feature-large {
  padding: 48px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: all 0.3s;
}
.innovation .feature-large h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.innovation .feature-large p {
  color: #64748b;
}
.innovation .feature-large.ai-card {
  background: linear-gradient(135deg, #fff, rgba(215, 165, 42, 0.05));
  border-color: rgba(215, 165, 42, 0.3);
}
.innovation .feature-large:hover {
  border-color: #d7a52a;
  box-shadow: 0 8px 24px rgba(215, 165, 42, 0.1);
}

.contact {
  background: white;
  border-top: 1px solid #e2e8f0;
}
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
.contact .contact-intro p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 48px;
}
.contact .detail-item {
  margin-bottom: 24px;
}
.contact .detail-item .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 4px;
}
.contact .detail-item .value {
  font-size: 1.125rem;
  font-weight: 500;
}
.contact .simple-form {
  padding: 40px;
  background: #f8fafc;
  border-radius: 16px;
}
.contact .simple-form .form-group {
  margin-bottom: 24px;
}
.contact .simple-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact .simple-form .form-group input, .contact .simple-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
}
.contact .simple-form .form-group input:focus, .contact .simple-form .form-group select:focus {
  outline: none;
  border-color: #d7a52a;
  box-shadow: 0 0 0 3px rgba(215, 165, 42, 0.1);
}
.contact .simple-form .btn-submit {
  width: 100%;
  padding: 16px;
  background: #d7a52a;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact .simple-form .btn-submit:hover {
  opacity: 0.9;
}

.site-footer {
  padding: 64px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.site-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-logo {
  font-weight: 700;
  font-size: 1.5rem;
}
.site-footer .footer-links {
  display: flex;
  gap: 32px;
}
.site-footer .footer-links a {
  color: #64748b;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.site-footer .footer-links a:hover {
  color: #d7a52a;
}
.site-footer .copyright {
  font-size: 0.875rem;
  color: #64748b;
}

@media (max-width: 960px) {
  .grid-3, .grid-2, .highlight-section .highlight-grid, .contact .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .nav .nav-links {
    display: none;
  }
  .nav .logo span {
    display: none;
  }
  .hero .hero-container {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .scroll-indicator {
    bottom: 20px;
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
  .footer-row .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  .footer-row .copyright {
    text-align: center;
  }
  .hero {
    height: 100vh !important;
  }
  .hero-overlay {
    height: 100vh !important;
  }
  .hero-video {
    bottom: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */