
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  padding-top: 80px;
  background: linear-gradient(135deg, #0a1f44, #020617);
  color: white;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background: rgba(10,31,68,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo img {
    width: 40px;
}

.logo-text {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.1;
    color: white;
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #ccc;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto; 
}

.menu li {
  list-style: none;
}

.menu li a {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 14px;
  transition: 0.3s;
}

.menu li a:hover {
  color: #60a5fa;
}

.nav-right {
  margin-left: 20px;
}

.btn-action {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  transition: 0.3s;
}

.btn-action:hover {
  opacity: 0.85;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.pricing-section {
  text-align: center;
  padding: 80px 20px;
}

.pricing-section h1 {
  font-size: 32px;
  margin-bottom: 40px;
}

.pricing {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: white;
  color: #0a1f44;
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

.card h2 {
  margin-bottom: 10px;
}

.price {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0;
}

.card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.card ul li {
  margin: 8px 0;
}

button {
  background: #0a1f44;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #1d4ed8;
}

.popular {
  border: 3px solid #2563eb;
}

@media (max-width: 900px) {

  .menu {
    position: absolute;
    top: 70px;
    right: 10px;
    background: #020617;
    width: 220px;
    flex-direction: column;
    display: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  }

  .menu.show {
    display: flex;
  }

  .menu li {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .btn-action {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }
}