* {
  background: rgba(255,255,255,0.06);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 24px;
}

.hero p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
}

.primary-btn {
  background: #008cff;
  color: white;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}

.services {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

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

.card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.card span {
  color: #00aaff;
  font-weight: bold;
}

.card h3 {
  margin: 16px 0;
}