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

html, body {
  /* height: 120%; */
  min-height: 105vh;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #1c1c1c, #111);
  color: white;
  display: flex;
  flex-direction: column;
}

body {
  flex: 1;
  padding: 0px 0 0 0;
}

header {
  background-color: #404ca7;
  padding: 16px 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
  display: block;
  }

  .header-right {
  display: none;
  flex-direction: column;
  background: #404ca7;
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  z-index: 10;
  }

  .header-right.show {
    display: flex;
  }

  .header-right a {
    margin: 10px auto;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .header-right a:hover {
    border: 2px solid black;
    color: #fff;
  }

  header {
    flex-wrap: wrap;
    position: relative;
  }

  .header-left {
    flex-grow: 1;
  }
}

.header-left {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.header-right a {
  margin-left: 0px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.header-right a:hover {
  color: #e0e0e0;
}


header a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

header a:hover {
  color: #aaaaaa;
}

h1 {
  text-align: center;
  margin: 40px 0;
  font-size: 2rem;
}

.plans-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 100px;
  padding-top: 50px;
  flex-grow: 1;
}

.plan {
  background: #1b1b1b;
  border-radius: 16px;
  padding: 40px 30px;
  width: 350px;
  max-width: 90%;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}


.plan:hover {
  transform: scale(1.03);
}

.plan.highlight {
  background: linear-gradient(to bottom right, #0f1850, #404ca7);
  color: white;
}


.plan h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.price {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.plan ul {
  list-style: none;
  margin-bottom: 24px;
}

.plan ul li {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.plan ul li::before {
  content: "✔";
  color: #4ade80;
  margin-right: 10px;
}

.plan a {
  text-decoration: none;
  display: inline-block;
  padding: 12px 20px;
  background: #3242a8;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.highlight a {
  background: black;
  color: white;
}

footer {
  width: 100vw;
  background: #111;
  padding: 20px 0;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}

footer a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}