
/* GRUNDDESIGN & RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background-color: #0B0E13;
  color: #fff;
}
/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #0B0E13 0%, #1F232B 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}
.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 30px;
  color: #ccc;
}
.hero-cta {
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #ffd700;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-cta:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}
/* BENEFITS SECTION */
.benefits-section {
  background: linear-gradient(160deg, #0B0E13 0%, #1F232B 100%);
  padding: 60px 20px;
  border-radius: 8px;
  text-align: center;
}
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.benefit-item {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 6px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-3px);
}
.benefit-item h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
}
.benefit-item p {
  color: #ccc;
}
/* TIMELINE SECTION */
.timeline-section {
  background: linear-gradient(160deg, #0B0E13 0%, #1F232B 100%);
  padding: 60px 20px;
  text-align: center;
}
.timeline-section ol {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}
.timeline-section li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  text-align: left;
}
.timeline-section li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0;
  background: #ffd700;
  color: #000;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
}
/* CTA SECTION */
.cta-section {
  background: linear-gradient(160deg, #0B0E13 0%, #1F232B 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 8px;
}
.cta-section h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 30px;
}
