* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

body {
  background: #0e0e0e;
  color: #fff;
  line-height: 1.6;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-list li a:hover {
  color: #ffd700;
}

/* PRICING */

.pricing {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;

  padding: 8rem 2rem 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -4dvh;
}

.pricing-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.price-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.plan-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-content h2 {
  margin-top: 0;
  font-size: 1.4em;
  color: #cfa96b;
}

.plan-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.plan-content ul li {
  margin: 0.5rem 0;
  color: #e6e6e6;
  line-height: 1.4;
}

.tg {
  display: inline-block;
  background-color: #cfa96b;
  border-radius: 50px;
  color: wheat;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
  transition: background 0.3s ease;
}

.tg:hover {
  background-color: #b89355;
}

/* FOOTER */

.footer {
  padding: 20px;
  text-align: center;
  font-size: 42px;
  opacity: 0.5;
}

.footer-bottom {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: #888;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #caa24d;
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  color: #cfa96b;
}

.contact-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.contact-icons a {
  font-size: 50px;
  color: #333;
  transition: 0.3s;
}

.contact-icons a:hover {
  color: #0077ff;
  transform: scale(1.2);
}
/* MOBILE */

@media (max-width: 500px) {

  .logo {
    font-size: 10px;
    font-weight: 200;
    margin-left: -3vh;
  }

  .nav-list {
    gap: 13px;
  }

  .nav-list li a {
    font-size: 10px;
  }

  .pricing-title {
    margin-top: 10%;
  }
}

@media (max-width: 790px) {
  .pricing-title {
    margin-top: 6dvh;
  }
}

@media (max-width: 480px) {

  .footer {
    font-size: 1.2em;
  }
}