* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Tahoma", "Arial", sans-serif;
  background: #f7f8fb;
  color: #1f2937;
  line-height: 1.8;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #2563eb;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.nav-link:hover {
  color: #2563eb;
}

/* Hero */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #eef4ff;
}

.hero-content {
  text-align: center;
  padding: 70px 0;
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #111827;
}

.hero h1 span {
  color: #2563eb;
}

.hero p {
  max-width: 800px;
  margin: auto;
  font-size: 19px;
  color: #4b5563;
}

.buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.btn.primary:hover {
  background: #1d4ed8;
}

.btn.secondary {
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.btn.secondary:hover {
  background: #eff6ff;
}

/* Sections */

.section {
  padding: 80px 0;
  background: #ffffff;
}

.section h2,
.soon h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 45px;
  color: #111827;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
}

.card h3 {
  color: #2563eb;
  margin-bottom: 12px;
  font-size: 20px;
}

.card p {
  color: #4b5563;
  font-size: 16px;
}

/* Soon */

.soon {
  padding: 80px 0;
  background: #eef4ff;
}

.soon-box {
  background: #ffffff;
  padding: 45px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid #dbeafe;
}

.soon-box p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #4b5563;
}

.domain {
  margin-top: 25px !important;
  font-weight: bold;
  color: #2563eb !important;
  font-size: 22px !important;
}

/* Footer */

.footer {
  background: #111827;
  color: #ffffff;
  text-align: center;
  padding: 25px 0;
  font-size: 15px;
}

/* Responsive */

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .nav {
    height: auto;
    padding: 18px 0;
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 17px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .soon-box {
    padding: 30px 20px;
  }
}