/* EdgeMed EM — pricing page styles. Inherits the topbar / brand from styles.css. */

.pricing-main {
  flex: 1;
  padding: 32px 28px 48px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.pricing-hero { text-align: center; margin-bottom: 32px; }
.pricing-hero h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.pricing-hero .muted { font-size: 14px; }
.currency-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
}
.currency-meta b { color: var(--ink); }
#currency-toggle {
  color: var(--teal);
  text-decoration: underline;
  font-size: 13px;
}
#currency-toggle:hover { color: var(--teal-dark); }

/* Grid layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

/* Card */
.plan-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 22px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.12s, box-shadow 0.12s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 26, 35, 0.10);
}
.plan-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf6 0%, #fff 80%);
}

/* Badge ribbon */
.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.plan-badge.gold { background: var(--gold); color: #fff; }
.plan-badge.teal { background: var(--teal); color: #fff; }

.plan-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.1;
}
.plan-duration {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.plan-savings {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 14px;
}
.plan-description {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.plan-note {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.plan-buy {
  display: inline-block;
  padding: 12px 20px;
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.12s;
}
.plan-buy:hover { background: var(--teal-dark); }
.plan-card.featured .plan-buy { background: var(--gold); color: var(--teal-dark); }
.plan-card.featured .plan-buy:hover { background: #b4912f; color: #fff; }

/* Guarantee strip */
.guarantee-strip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.guarantee-strip h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.guarantee-strip .muted {
  font-size: 14px;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}
