* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0f0f0f;
  color: #e5e5e5;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 0.2em;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #b0b0b0;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: 0.3s ease;
}

.primary {
  background: #e5e5e5;
  color: #0f0f0f;
}

.primary:hover {
  background: #ffffff;
}

.secondary {
  border: 1px solid #e5e5e5;
  color: #e5e5e5;
}

.secondary:hover {
  background: #e5e5e5;
  color: #0f0f0f;
}

/* SERVICES */
.services {
  padding: 6rem 10%;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* CONTACT */
.contact {
  padding: 5rem 10%;
  text-align: center;
  background: #141414;
}

.contact h2 {
  margin-bottom: 1rem;
}
