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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0b0f19;
  color: #e6f0ff;
  line-height: 1.6;
}

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

/* NAVBAR */

.navbar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #cfd8ff;
  text-decoration: none;
}

/* BUTTONS */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  min-width: 140px;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg,#3b82f6,#2563eb);
  color: #fff;
}

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

.btn-secondary {
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.btn-secondary:hover {
  background: rgba(59,130,246,0.1);
}

/* HERO */

.hero {
  padding: 100px 0;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text span {
  color: #3b82f6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
  flex-wrap: wrap;
}

.hero-card {
  width: 420px;
  height: 320px;
  background: linear-gradient(145deg,#1a2236,#0f172a);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* STATS */

.stats {
  display: flex;
  justify-content: space-around;
  padding: 60px 0;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* SERVICES */

.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #111827;
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.card h3 {
  margin-bottom: 15px;
}

.card a {
  display: inline-block;
  margin-top: 15px;
  color: #3b82f6;
  text-decoration: none;
}

/* CTA */

.cta {
  background: linear-gradient(90deg,#2563eb,#1e40af);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* FOOTER */

footer {
  background: #0a0f1f;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 30px;
}

footer h4 {
  margin-bottom: 15px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer a {
  color: #cfd8ff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  opacity: 0.6;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-card {
    width: 100%;
    max-width: 400px;
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

}