/* ================================================
   PRICING CARDS SECTION STYLES
   ================================================ */

.pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-card {
  flex: 1;
  max-width: 380px;
  min-width: 320px;
  position: relative;
}

.card-inner {
  position: relative;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 840px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

/* Start Club - Tiszta fehér */
.pricing-card.start .card-inner {
  background: linear-gradient(145deg, var(--card-start-bg), #f8f9fa);
  border: 2px solid rgba(var(--secondary-rgb), 0.15);
  color: #2c3e50;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.start .nfu-logo {
  color: var(--secondary-color);
}

/* Premium Club - Prémium sötét */
.pricing-card.premium .card-inner {
  background: linear-gradient(145deg, var(--card-premium-bg), #34495e);
  border: 2px solid rgba(var(--accent-gold-rgb), 0.3);
  color: white;
  box-shadow: 0 25px 60px rgba(44, 62, 80, 0.4);
}

.pricing-card.premium .nfu-logo {
  color: var(--accent-gold);
}

/* VIP Club - Luxus arany */
.pricing-card.vip .card-inner {
  background: linear-gradient(145deg, var(--card-vip-bg), var(--card-vip-dark));
  border: 2px solid rgba(243, 156, 18, 0.5);
  color: #2c3e50;
  box-shadow: 0 25px 60px rgba(243, 156, 18, 0.4);
}

.pricing-card.vip .nfu-logo {
  color: #2c3e50;
}

/* Card hover effekt eltávolítása */
.pricing-card .card-inner:hover {
  transform: none;
}

/* NFU Logo */
.nfu-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.card-subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.4;
  font-weight: 500;
  min-height: 45px;
}

/* Professzionális feature lista */
.card-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  flex: 1;
}

.card-features li {
  padding: 12px 0;
  font-size: 15px;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Start klub vonalkák */
.pricing-card.start .card-features li {
  border-bottom: 1px solid rgba(44, 82, 130, 0.1);
}

/* Premium klub vonalkák */
.pricing-card.premium .card-features li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* VIP klub vonalkák */
.pricing-card.vip .card-features li {
  border-bottom: 1px solid rgba(44, 62, 80, 0.2);
}

.card-features li:last-child {
  border-bottom: none;
}

.card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Start klub check ikonok */
.pricing-card.start .card-features li::before {
  background: var(--secondary-color);
  color: white;
}

/* Premium klub check ikonok */
.pricing-card.premium .card-features li::before {
  background: var(--accent-gold);
  color: #2c3e50;
}

/* VIP klub check ikonok */
.pricing-card.vip .card-features li::before {
  background: #2c3e50;
  color: white;
}

/* 3D Gombok */
.join-button {
  padding: 16px 35px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  letter-spacing: 0.5px;
  min-width: 250px;
  margin-top: 20px;
}

/* Start Club Button - Aktív (3D kiemelkedő) */
.pricing-card.start .join-button {
  background: linear-gradient(145deg, var(--card-success), #2ecc71);
  color: white;
  box-shadow: 0 8px 15px rgba(39, 174, 96, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

.pricing-card.start .join-button:hover {
  transform: translateY(3px);
  box-shadow: 0 4px 8px rgba(39, 174, 96, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Premium & VIP Club Button - Letiltott (lapos) */
.pricing-card.premium .join-button,
.pricing-card.vip .join-button {
  background: var(--card-disabled);
  color: white;
  cursor: not-allowed;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(3px);
  opacity: 0.8;
}

.pricing-card.premium .join-button:hover,
.pricing-card.vip .join-button:hover {
  transform: translateY(3px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Design - javított breakpoint-okkal */
@media (max-width: 1199px) {
  .pricing-cards {
    gap: 25px;
  }

  .pricing-card {
    max-width: 350px;
    min-width: 300px;
  }

  .card-inner {
    padding: 35px 25px;
    height: auto; /* Auto magasság */
    min-height: 900px;
  }

  .card-title {
    font-size: 28px;
  }

  .nfu-logo {
    font-size: 24px;
  }
}

/* Korábban váltás egy oszlopra - 1000px helyett 1199px */
@media (max-width: 1000px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .pricing-card {
    max-width: 90%;
    min-width: auto;
    width: 100%;
    max-width: 450px; /* Nagyobb max-width */
  }

  .card-inner {
    padding: 35px 30px;
    height: auto;
    min-height: 520px;
  }

  .card-title {
    font-size: 26px;
  }

  .card-subtitle {
    font-size: 15px;
    min-height: auto;
  }

  .card-features li {
    font-size: 15px;
    padding: 12px 0;
    padding-left: 35px;
  }

  .card-features li::before {
    left: 5px;
  }

  .join-button {
    min-width: 250px;
    padding: 14px 30px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    max-width: 95%;
  }

  .card-inner {
    padding: 30px 25px;
    min-height: 500px;
  }
}

@media (max-width: 575px) {
  .pricing-card {
    max-width: 95%;
    margin: 0 2.5%;
  }

  .card-inner {
    padding: 25px 20px;
    min-height: 480px;
  }

  .card-title {
    font-size: 22px;
  }

  .nfu-logo {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .card-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .card-features li {
    font-size: 13px;
    padding: 10px 0;
    padding-left: 30px;
  }

  .card-features li::before {
    left: 3px;
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .join-button {
    min-width: 200px;
    padding: 12px 25px;
    font-size: 13px;
  }
}
