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

body {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
  color: #1f1f1f;
  background: #0a0a0a;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 120px 0 100px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(to right, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 22px;
  color: #b0b0b0;
  line-height: 1.6;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 48px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #ffffff;
}

.services-intro {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f1f1f;
}

.section-description {
  font-size: 20px;
  color: #666;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.service-item {
  padding: 32px;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #10b981;
  border-color: #10b981;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
}

.service-item:hover .service-name,
.service-item:hover .service-text {
  color: white;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.service-icon {
  font-size: 32px;
}

.service-name {
  font-size: 22px;
  font-weight: 600;
  color: #1f1f1f;
}

.service-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 100px 0;
  background: #f5f5f5;
}

.process-steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  max-width: 200px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f1f1f;
}

.step-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.step-connector {
  height: 2px;
  background: linear-gradient(to right, #10b981, #d1d5db);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: #0a0a0a;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 24px;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: #10b981;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

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

  .section-title,
  .cta-title {
    font-size: 32px;
  }

  .hero-metrics {
    gap: 40px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-connector {
    display: none;
  }
}
