/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0c0f16;
  color: #d4d4d4;
  overflow-x: hidden;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #0a0d12;
  border-bottom: 1px solid #1e293b;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #22c55e;
}
.nav {
  display: flex;
  gap: 20px;
}
.nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.95rem;
}
.nav a:hover {
  color: #22c55e;
}
.actions {
  display: flex;
  gap: 10px;
}
.btn-app, .login {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.login {
  border: 1px solid #22c55e;
  color: #22c55e;
}
.btn-app {
  background: #22c55e;
  color: #0a0d12;
  font-weight: bold;
}
.btn-app:hover {
  background: #16a34a;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0a0d12 30%, #1e3a8a 100%);
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.highlight {
  color: #22c55e;
}
.hero p {
  font-size: 1rem;
  color: #cbd5e1;
}
.qr-section {
  margin-top: 30px;
}
.qr-section img {
  border-radius: 8px;
}
.qr-section p {
  margin-top: 8px;
  font-size: 0.85rem;
}

/* DISCOVER SECTION */
.discover {
  padding: 80px 20px;
  text-align: center;
  background: #0c0f16;
}
.discover h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.discover p {
  max-width: 600px;
  margin: auto;
  color: #a1a1aa;
}
.chart-card {
  background: #111827;
  border-radius: 10px;
  margin: 40px auto;
  padding: 20px;
  width: 300px;
  color: #22c55e;
}
.chart {
  height: 100px;
  background: linear-gradient(to top right, #22c55e, #16a34a);
  border-radius: 5px;
  margin: 10px 0;
}

/* WHY SECTION */
.why {
  text-align: center;
  padding: 60px 20px;
  background: #0f172a;
}
.why h2 {
  color: #22c55e;
}
.why p {
  max-width: 700px;
  margin: 10px auto;
  color: #cbd5e1;
}

/* TRADE SECTION */
.trade {
  background: white;
  color: #111;
  padding: 80px 40px;
}
.trade-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}
.trade .text {
  flex: 1;
  padding-right: 40px;
}
.trade .image-box img {
  width: 200px;
}
.trade h2 {
  color: #22c55e;
}

/* TRUST SECTION */
.trust {
  background: #0c0f16;
  text-align: center;
  padding: 80px 20px;
}
.trust h2 {
  color: #22c55e;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}
.trust-card {
  background: #1e293b;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  color: #e2e8f0;
}
.trust-card img {
  width: 60px;
  margin-bottom: 10px;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(135deg, #0a0d12, #064e3b);
  text-align: center;
  padding: 100px 20px;
}
.cta h2 {
  color: #22c55e;
  font-size: 2rem;
}
.cta p {
  margin-top: 10px;
  color: #cbd5e1;
}

/* FOOTER */
.footer {
  background: #0a0d12;
  color: #94a3b8;
  padding: 40px 20px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.footer-links h4 {
  color: #22c55e;
  margin-bottom: 10px;
}
.footer-links a {
  display: block;
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 3px 0;
}
.footer-links a:hover {
  color: #22c55e;
}
.copyright {
  font-size: 0.8rem;
  margin-top: 20px;
}
