/* Basis */
body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #141414;
  color: #222;
  line-height: 1.6;
}

/* Intro */
.pricing-intro {
  text-align: center;
  padding: 4rem 10% 0.5rem; /* ~64px bovenaan */
  background: #141414;
}

.pricing-intro h2 {
  font-size: 2.2rem;
  color: #1e9c94;
  margin-bottom: 0.5rem;
}
.pricing-intro p {
  color: #cfcfcf;
  margin: 0 auto;
}

/* Grid — vult volledige hoogte en centreert */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: #141414;
  height: calc(100vh - 350px); /* vult alles behalve header/intro */
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0; /* GEEN padding meer die het naar onder duwt */
  box-sizing: border-box;
}


/* Cards */
.price-card {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  width: 320px; /* vaste breedte */
  height: 480px; /* vaste hoogte zodat ze gelijk zijn */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  position: relative;
}
.price-card:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 28px rgba(30, 156, 148, 0.3);
  border-color: rgba(30, 156, 148, 0.7);
}

/* Titels & tekst */
.price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: #ffffff;
}
.price-card .desc {
  color: #cfcfcf;
  margin: 0 0 1rem;
  line-height: 1.6;
  flex-grow: 1;
}
.points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.points li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: #dedede;
  font-size: 0.97rem;
}
.points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e9c94;
}

/* Badge voor middelste kaart */
.highlight {
  border-color: rgba(30, 156, 148, 0.7);
  box-shadow: 0 12px 32px rgba(30, 156, 148, 0.18);
}
.highlight .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1e9c94;
  color: #0d0d0d;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Prijs onderaan */
.price-row {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e9c94;
}

/* Footer */
.footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
.footer span {
  color: #1e9c94;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1100px) {
  .pricing-grid {
    flex-direction: column;
    min-height: auto;
    padding: 4rem 5%;
  }
  .price-card {
    width: 90%;
    max-width: 400px;
  }
}
.cta-button {
  background-color: #1e9c94;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #15736c;
  transform: scale(1.05);
}
.price-row {
    display: flex;
    justify-content: center; /* horizontaal centreren */
    margin-top: 20px;
}