@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');

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

body {
  background-color: #0a0a0a;
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.container {
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 700px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.logo {
  width: 140px;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #fff;
}

.tagline {
  font-size: 1.2rem;
  color: #ff4500;
  margin-top: 0.5rem;
  font-weight: 600;
}

.desc {
  max-width: 600px;
  margin: 1rem auto;
  line-height: 1.6;
  color: #aaa;
}

.actions {
  margin-top: 1rem;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: #ff4500;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta:hover {
  background: #ff6333;
  transform: translateY(-1px);
}

.socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border: 1px solid #333;
  border-radius: 6px;
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}

.social-link:hover {
  border-color: #ff4500;
  color: #fff;
  background: rgba(255, 69, 0, 0.08);
  transform: translateY(-1px);
}

.services {
  margin-top: 2.5rem;
  text-align: left;
}

.services h2 {
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem;
}

.service-card h3 {
  color: #ff4500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

footer {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: #555;
}

@media (max-width: 640px) {
  .container {
    padding: 2rem 1.25rem;
  }

  .logo {
    width: 110px;
  }

  h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .tagline {
    font-size: 1.05rem;
  }

  .desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .socials {
    gap: 0.75rem;
  }

  .social-link,
  .cta {
    width: 100%;
    max-width: 220px;
  }

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