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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
}

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

/* Navbar */
.navbar {
  background: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a202c;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-menu a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #2d3748;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 100px 0;
}

.hero-wrapper {
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #e6fffa;
  color: #047857;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #1a202c;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #1a202c;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #2d3748;
  transform: translateY(-2px);
}

/* Solutions */
.solutions {
  padding: 100px 0;
  background: white;
}

.solutions h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #1a202c;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.solution-box {
  padding: 2.5rem;
  background: #f7fafc;
  border-radius: 12px;
  transition: all 0.3s;
}

.solution-box:hover {
  background: #edf2f7;
  transform: translateY(-5px);
}

.number {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #718096;
  margin-bottom: 1rem;
}

.solution-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a202c;
}

.solution-box p {
  color: #4a5568;
  line-height: 1.8;
}

/* Benefits */
.benefits {
  padding: 100px 0;
  background: #f7fafc;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a202c;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  margin-bottom: 2rem;
}

.benefits-list strong {
  display: block;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.benefits-list p {
  color: #4a5568;
  line-height: 1.8;
}

.benefits-stats {
  display: grid;
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: #4a5568;
  font-weight: 500;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: white;
}

.contact h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #1a202c;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.detail-item p {
  color: #2d3748;
  line-height: 1.8;
}

.detail-item a {
  color: #2d3748;
  text-decoration: none;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Footer */
footer {
  background: #1a202c;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .benefits-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
