body {
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.pricing-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  background: #fff;
}

.pricing-heading {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.discount {
  background: #2c9eff;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
}

.billing-toggle-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 12px;
  width: fit-content;
  border: 2px solid #2c9eff;
  border-radius: 10px;
  overflow: hidden;
  font-family: inherit;
}

.billing-option {
  background: white;
  color: #1E2761;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  width: 150px;
}

.billing-option.active {
  background: #2c9eff;
  color: white;
}

.billing-note {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: 12px;
  margin-bottom: 30px;
  transition: opacity 0.3s ease;
}

.billing-note.monthly {
  color: #c0392b; /* 🔴 Red (monthly warning or prompt) */
}

.billing-note.yearly {
  color: #333; /* ⚫ Neutral (yearly info) */
}

/* Table */
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

thead th {
  padding: 20px 10px;
  text-align: center;
  font-weight: 600;
  background-color: #f9fafc; /* ✅ Softer neutral */
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

/* Left-align feature column */
.feature-col {
  text-align: left !important;
  background-color: #1E2761;
  font-weight: 600;
}

.highlighted-tier {
  border-top: 4px solid #2c9eff;
  background: #f0faff;
}

.tier-price {
  display: flex;
  align-items: flex-end;  /* 👈 this aligns both bottom of € and 'per' text */
  gap: 6px;
  color: white;
}

.price-number {
  font-size: 28px;
  font-weight: bold;
  display: inline-block;
  color: white;
  line-height: 1;
}

/* Show correct price based on toggle */
.price-number .yearly {
  display: none;
}
body.yearly .price-number .monthly {
  display: none;
}
body.yearly .price-number .yearly {
  display: inline;
}

.price-number span {
  transition: opacity 0.3s ease;
}

.price-interval {
  font-size: 13px;
  color: #666;
}

.yearly-info {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

tbody td {
  padding: 16px;
  text-align: center;
  border-top: 1px solid #eee;
}

tbody td:first-child {
  text-align: left;
  background: #fafafa;
  font-weight: 500;
}

.tier-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
}

.tier-name {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: white;
}

.price-separator {
  height: 1px;
  background-color: #ddd;
  width: 60%;
  margin: 6px 0;
}

.tier-price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: white;
}

.euro {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}

.per {
  font-size: 12px;
  color: white;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
}

.billed-annually {
  height: 16px;
  font-size: 12px;
  color: white;
}

.billed-annually {
  opacity: 0;
  visibility: hidden;
}

body.yearly .billed-annually {
  opacity: 1;
  visibility: visible;
}

/* Better table header styling */
thead th {
  background-color: #1E2761;
  border-bottom: 2px solid #e0e0e0;
  padding-top: 24px;
}


/* CTA BUTTON */
.subscribe-btn {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 12px 25px;
    font-size: 18px;
    color: white;
    background-color: #1E2761;  /* Your existing button color */
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.subscribe-btn:hover {
    background-color: #2C9EFF;
    transform: scale(1.05);
    padding: 12px 25px;
}

.disabled-btn {
    background-color: #2C9EFF;
    color: white;
    cursor: not-allowed;
    pointer-events: none;
}
