.hero-section {
  background: var(--gradient-hero);
  color: var(--color-surface);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--color-surface) 10%, transparent) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, color-mix(in srgb, var(--color-surface) 8%, transparent) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.hero-content .subtitle {
  font-size: 16px;
  margin-bottom: 12px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-content .description {
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero-content .subtitle {
    font-size: 14px;
  }

  .hero-content .description {
    font-size: 14px;
  }
}

.services-grid-section {
  background: var(--color-bg);
  padding: 80px 0;
}

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

.service-card {
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--color-bg);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 32px;
  text-align: center;
}

.service-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.service-description {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.service-highlights li {
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-bg));
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border-color);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  border-radius: 12px;
  font-weight: 500;
  font-size: inherit;
  font-family: inherit;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-surface);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-image {
    height: 200px;
  }
}