/* ===== Plan Card ===== */
.plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 28px 28px;
}

.plan-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card__title {
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.plan-card__label {
  font-size: 16px;
  font-weight: 600;
  color: #1FA0CC;
  margin: 0 0 6px 0;
  letter-spacing: 0.3px;
}

.plan-card__price {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1;
}

.plan-card__divider {
  width: 103%;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.plan-card__features li:last-child {
  margin-bottom: 0;
}

.plan-card__check {
  color: #4CAF50;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.unlimited-access-card {width: 30%; padding: 20px;}
.pricing-card {
  display: flex;         /* ADDED */
  flex-direction: column; /* ADDED */
}

.pricing-card a {
  margin-top: auto; /* ADDED: This pushes the button to the absolute bottom */
  width: 180px;      /* Optional: ensures button stays full width */
}

.plan-name { font-size: 26px; margin: 0 0 10px 0; }

.price { display: flex; align-items: baseline; margin-bottom: 0px; }
.currency { font-size: 28px; font-weight: 600; margin-right: 5px; }
.amount { font-size: 50px; font-weight: 600; }
.period { color: #ccc; margin-left: 10px; }

.description-text { color: var(--text-light); line-height: 1.5; margin-bottom: 30px; min-height: 48px; font-size: 16px; }

.features-section {margin-bottom: 30px; flex-grow: 1;}

/* Divider & Features */
.divider {
  position: relative;
  text-align: left;
  margin-bottom: 30px;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px; background-color: #d1e3ff;
  z-index: 1;
}
.divider span {
  position: relative; z-index: 2;
  background: white; padding: 6px 15px;
  color: #3b82f6; font-size: 13px; font-weight: 500;
  border: 1px solid #3b82f6; border-radius: 6px; margin-left: 25px;
}

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  color: #444;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23446db2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
  background-size: contain;
}