/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.accent { color: #00ff88; }

/* Hero */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #1e1e1e, #111);
}
.hero .logo {
  max-width: 200px;
  margin: 0 auto 30px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(to right, #fff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .tagline {
  font-size: 1.6rem;
  color: #ccc;
  margin-bottom: 20px;
}
.hero .powered {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 10px;
}
.hero .coming-soon {
  font-size: 1.3rem;
  color: #00ff88;
  font-weight: bold;
}

/* Features */
.features {
  padding: 80px 20px;
  background-color: #121212;
}
.features h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}
.feature-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: #1e1e1e;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,255,136,0.2);
  max-width: 300px;
  text-align: center;
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #00ff88;
}
.feature-card p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Vouchers in Action */
.vouchers-action {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #121212, #1e1e1e);
}
.vouchers-action h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.vouchers-action p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc;
  text-align: center;
}
.savings-spotlight {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.spotlight-item {
  background: #1e1e1e;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,255,136,0.2);
  max-width: 300px;
  text-align: center;
}
.spotlight-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #00ff88;
}
.spotlight-item p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Value */
.value {
  padding: 80px 20px;
  text-align: center;
}
.value h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.value p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc;
}
.stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,255,136,0.2);
  min-width: 200px;
  text-align: center;
}
.stat h3 {
  font-size: 2rem;
  color: #00ff88;
  margin-bottom: 5px;
}
.stat p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Conclusion */
.conclusion {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #1e1e1e, #0a0a0a);
  text-align: center;
}
.conclusion h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.conclusion p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero .tagline { font-size: 1.3rem; }
  .features h2 { font-size: 2rem; }
  .feature-card h3 { font-size: 1.2rem; }
  .feature-card p { font-size: 1rem; }
  .vouchers-action h2 { font-size: 2rem; }
  .vouchers-action p { font-size: 1.2rem; }
  .spotlight-item h3 { font-size: 1.2rem; }
  .spotlight-item p { font-size: 1rem; }
  .value h2 { font-size: 2rem; }
  .value p { font-size: 1.2rem; }
  .stat h3 { font-size: 1.8rem; }
  .conclusion h2 { font-size: 2rem; }
  .conclusion p { font-size: 1.2rem; }
}