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

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

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

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

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

.hero-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #3b82f6;
  color: white;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-headline {
  font-size: 72px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-lead {
  font-size: 22px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-primary {
  padding: 16px 40px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  padding: 16px 40px;
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #3b82f6;
  color: white;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: white;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 16px;
}

.stat-icon {
  font-size: 48px;
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-heading {
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
}

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

.service-card {
  padding: 40px 32px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.card-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.card-pink {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.card-green {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.card-icon {
  font-size: 40px;
}

.card-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
}

.card-desc {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 24px;
  line-height: 1.6;
}

.card-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-item {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2d2d2d;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.features-title {
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  color: #1a1a1a;
}

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

.feature {
  text-align: center;
}

.feature-emoji {
  display: block;
  font-size: 56px;
  margin-bottom: 20px;
}

.feature-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

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

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.cta-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-heading {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-action {
  display: inline-block;
  padding: 18px 48px;
  background: white;
  color: #3b82f6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cta-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

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

  .section-heading,
  .features-title,
  .cta-heading {
    font-size: 36px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

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

  .hero-cta {
    flex-direction: column;
  }
}
