:root {
  --primary: #5b2cff;
  --dark: #1e1e2f;
  --light: #f5f6fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary), #3a1ccf);
  color: white;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.hero span {
  color: #ffd86b;
}

.hero p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #ffd86b;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.dark {
  background: var(--dark);
  color: #fff;
}

/* SECTION */
.section {
  padding: 60px 20px;
}

.section.light {
  background: var(--light);
}

h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

/* LIST */
.list {
  list-style: none;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* CTA */
.cta {
  background: var(--primary);
  color: white;
  padding: 70px 20px;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}
