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

body {
  font-family: Arial, sans-serif;
  background: #fff7ed;
  color: #3b0764;
  line-height: 1.6;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 40px 10%;

  background:
    linear-gradient(rgba(255,247,237,.82), rgba(255,247,237,.92)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1800&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #7c3aed;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #6b21a8;
}

.nav-button {
  padding: 10px 18px;
  background: #7c3aed;
  color: white !important;
  border-radius: 10px;
}

/* HERO CONTENT */

.hero-content {
  max-width: 700px;
  margin-top: 140px;
}

.eyebrow {
  letter-spacing: 2px;
  color: #7c3aed;
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: bold;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-text {
  font-size: 1.2rem;
  color: #6b21a8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* BUTTONS */

.btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: bold;
}

.primary {
  background: #7c3aed;
  color: white;
}

.secondary {
  border: 2px solid #c4b5fd;
  color: #6b21a8;
}

/* STATS */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  padding: 60px 10%;

  background: #faf5ff;
}

.stat {
  text-align: center;
}

.stat h2 {
  color: #7c3aed;
  margin-bottom: 10px;
}

/* SERVICES */

.services {
  padding: 120px 10%;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading p {
  color: #7c3aed;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-heading h2 {
  font-size: 2.8rem;
}

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

  gap: 30px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 18px;

  box-shadow:
    0 8px 24px rgba(124,58,237,.08);
}

.card h3 {
  margin-bottom: 20px;
  color: #7c3aed;
}

/* ABOUT */

.about {
  padding: 120px 10%;
  background: #faf5ff;
}

.about-content {
  max-width: 800px;
}

.section-tag {
  color: #7c3aed;
  margin-bottom: 20px;
  font-weight: bold;
}

.about h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.about p {
  color: #6b21a8;
}

/* CTA */

.cta {
  padding: 120px 10%;
  text-align: center;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 40px;
  color: #6b21a8;
}

/* FOOTER */

.footer {
  padding: 40px;
  text-align: center;

  background: #7c3aed;
  color: white;
}

/* MOBILE */

@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

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

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

}
