* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0f1a;
  color: #fff;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOPBAR */
.topbar {
  background: #0f172a;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.top-left span {
  margin-right: 15px;
  color: #94a3b8;
}

.top-right {
  color: #22c55e;
  font-weight: 600;
}

/* HEADER */
.header {
  padding: 20px 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.logo-main {
  font-size: 20px;
  font-weight: 900;
  color: #22c55e;
}

.logo-sub {
  font-size: 12px;
  color: #94a3b8;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  color: #22c55e;
}

/* BUTTON */
.whatsapp-btn {
  background: #22c55e;
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* HERO */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero-left span {
  color: #22c55e;
}

.hero-left p {
  margin: 15px 0;
  color: #94a3b8;
}

.hero-left ul {
  list-style: none;
  margin: 20px 0;
}

.hero-left ul li {
  margin-bottom: 8px;
  color: #cbd5e1;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.green {
  background: #22c55e;
  color: #fff;
}

.btn.black {
  background: #1e293b;
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
}

/* IMAGE */
.hero-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* FEATURES */
.features {
  padding: 60px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #22c55e;
}

/* FAQ */
.faq {
  padding: 60px 0;
}

.faq h2 {
  margin-bottom: 20px;
  color: #38bdf8;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
}

/* CTA */
.cta {
  padding: 60px 0;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
}

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

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #050816;
  font-size: 13px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .cta-flex {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  nav {
    display: none;
  }
}