/*body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f6f6f6;
    color: #111;
}*/
#pricing-h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 5em;
  font-weight: 600;
  color: #333;
}

.pricing-page {
  width: 100%;
  /* margin: 80px auto; */
  /* padding: 20px; */
  text-align: center;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* ===== PILL TOGGLE ===== */
.billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pill-toggle {
  display: inline-flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.pill-toggle button {
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: #444;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.pill-toggle button span {
  color: #fda500;
  font-weight: 700;
}

.pill-toggle button.active {
  background: #111;
  color: #fff;
}

/* ===== CARDS ===== */
.pricing-grid {
    display: flex;
    flex-direction: row;
    justify-content: center; /* vízszintesen középre */
    flex-wrap: wrap;         /* sorba törik, ha kevés a hely */
    gap: 24px;               /* távolság a kártyák között */
    margin: 0 auto;          /* opcionális, ha a szülő szélessége kisebb */
}

.plan {
  background: #fff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  width: 180px;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.plan h2 {
  font-size: 20px;
  margin: 0;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #fda500;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 14px;
  color: #444;
}

.plan ul li {
  margin-bottom: 6px;
}

/* ===== BUTTON ===== */
.plan button {
  margin-top: auto;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.plan button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ===== POPULAR ===== */
.popular {
  border: 2px solid #fda500;
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: #fda500;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
