* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.about-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  text-align: left;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon span {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  width: 20px;
  height: 2px;
  background-color: #4b5563;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  background-color: white;
  border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
  display: flex;
  padding: 8px;
}

.nav-link-mobile {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
  color: #2563eb;
}

.hero {
  position: relative;
  padding: 8rem 1rem 4rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.03));
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape-1 {
  position: absolute;
  top: 5rem;
  right: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-shape-2 {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  width: 12rem;
  height: 12rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 4xl;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
  height: 3rem;
  border-radius: 0.5rem;
}

.section {
  padding: 4rem 1rem;
}

.bg-light {
  background-color: rgba(249, 250, 251, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
}

.hover-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-content {
  padding: 2rem;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0;
}

.card-text {
  color: #6b7280;
  line-height: 1.6;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.icon-indigo {
  background-color: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.icon-amber {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.icon-green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-image {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  padding: 16px;
  object-fit: contain;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-content p {
  color: #6b7280;
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.visual-placeholder {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon.icon-blue {
  background-color: rgba(59, 130, 246, 0.2);
}

.service-card:hover .service-icon.icon-indigo {
  background-color: rgba(99, 102, 241, 0.2);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.service-features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-card:nth-child(1) .service-features li::before {
  background-color: rgba(59, 130, 246, 0.6);
}

.service-card:nth-child(2) .service-features li::before {
  background-color: rgba(13, 148, 136, 0.6);
}

.service-card:nth-child(3) .service-features li::before {
  background-color: rgba(245, 158, 11, 0.6);
}

.feature-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.05);
}

.feature-item:hover .feature-icon.icon-blue {
  background-color: rgba(59, 130, 246, 0.2);
}

.feature-item:hover .feature-icon.icon-indigo {
  background-color: rgba(99, 102, 241, 0.2);
}

.feature-item:hover .feature-icon.icon-amber {
  background-color: rgba(245, 158, 11, 0.2);
}

.feature-item:hover .feature-icon.icon-green {
  background-color: rgba(34, 197, 94, 0.2);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

.about-hero {
  padding: 8rem 1rem 4rem;
}

.about-hero-content {
  text-align: center;
  margin-bottom: 4rem;
}

.about-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

.about-values {
  margin-bottom: 4rem;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.03));
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.contact-grid {
  gap: 3rem;
}

.contact-form-wrapper .card {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: #374151;
  font-weight: 500;
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input {
  height: 3rem;
}

.form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.contact-info-description {
  color: #6b7280;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details-text {
  flex: 1;
}

.contact-label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.business-hours {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.05));
  border-radius: 1rem;
  padding: 1.5rem;
}

.business-hours-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.business-hours-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.business-hours-content p {
  color: #6b7280;
}

.footer {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.footer-main {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: #6b7280;
  margin-bottom: 1rem;
  max-width: 28rem;
  line-height: 1.6;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-links li:not(:has(a)) {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #2563eb;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 6rem 1rem 3rem;
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-main {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-hero {
    padding: 6rem 1rem 3rem;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1.125rem;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 769px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.btn.nav-get-started {
  padding: 0.3rem 1rem;
  margin-left: 1rem;
}

.btn.nav-get-started-mobile {
  padding: 0.3rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
  width: fit-content;
  margin: auto;
}
