* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: white;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f1f1f;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #22c55e;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.logo h1 {
  font-size: 20px;
}

.logo p {
  font-size: 12px;
  color: #777;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

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

.primary-btn,
.secondary-btn {
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.primary-btn {
  background: #22c55e;
  color: black;
  font-weight: 700;
}

.primary-btn:hover {
  background: #1fb454;
}

.secondary-btn {
  border: 1px solid #333;
  color: white;
}

.secondary-btn:hover {
  border-color: #555;
}

/* Hero */

.hero {
  padding: 120px 0;
}

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

.tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero h2 span {
  color: #22c55e;
  display: block;
}

.hero p {
  font-size: 20px;
  color: #9ca3af;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #666;
  font-size: 14px;
}

/* Dashboard */

.dashboard {
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  border-radius: 28px;
  padding: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card,
.graph-card,
.mini-card {
  background: #050505;
  border: 1px solid #1f1f1f;
  border-radius: 22px;
}

.stat-card {
  padding: 24px;
}

.stat-card p {
  color: #777;
  font-size: 14px;
}

.stat-card h3 {
  font-size: 40px;
  margin: 12px 0;
}

.stat-card span {
  color: #22c55e;
}

.graph-card {
  margin-top: 20px;
  padding: 30px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 240px;
}

.bars div {
  flex: 1;
  background: #22c55e;
  border-radius: 12px 12px 0 0;
}

.mini-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  padding: 20px;
}

.mini-card p {
  color: #777;
  font-size: 13px;
}

.mini-card h4 {
  margin-top: 10px;
  font-size: 22px;
}

/* Sections */

.section {
  padding: 120px 0;
}

.dark-section {
  background: #0a0a0a;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h3 {
  font-size: 48px;
  margin-bottom: 18px;
}

.section-title p {
  color: #888;
  font-size: 18px;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  border-radius: 28px;
  padding: 40px;
  transition: 0.3s;
}

.service-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.service-card h4 {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card p {
  color: #888;
  margin-bottom: 30px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  margin-bottom: 14px;
  color: #ddd;
}

/* Process */

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

.process-card {
  text-align: center;
}

.step {
  width: 70px;
  height: 70px;
  background: #22c55e;
  color: black;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 24px;
  font-weight: 800;
  font-size: 24px;
}

/* About */

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

.about-grid h3 {
  font-size: 48px;
  margin-bottom: 24px;
}

.about-grid p {
  color: #888;
  margin-bottom: 20px;
  font-size: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  padding: 40px;
  border-radius: 28px;
}

.about-stats h4 {
  color: #22c55e;
  font-size: 42px;
  margin-bottom: 10px;
}

.about-stats p {
  margin: 0;
}

/* CTA */

.cta-box {
  background: linear-gradient(to bottom right, #0d0d0d, #050505);
  border: 1px solid #1f1f1f;
  padding: 80px;
  border-radius: 36px;
  text-align: center;
}

.cta-box h3 {
  font-size: 54px;
  margin-bottom: 24px;
}

.cta-box p {
  max-width: 800px;
  margin: auto auto 40px;
  color: #888;
  font-size: 20px;
}

/* Footer */

footer {
  border-top: 1px solid #1f1f1f;
  padding: 30px 0;
}

.footer-content {
  text-align: center;
  color: #666;
}

/* Responsive */

@media (max-width: 1024px) {

  .hero-grid,
  .services-grid,
  .process-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 54px;
  }

  nav {
    display: none;
  }

  .cta-box {
    padding: 50px 30px;
  }

  .cta-box h3 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {

  .hero {
    padding: 80px 0;
  }

  .hero h2 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats-grid,
  .mini-cards,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .section-title h3,
  .about-grid h3,
  .cta-box h3 {
    font-size: 36px;
  }
}