/* ── PLANES ── */
#planes { padding: 80px 40px; }

.planes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.planes-header .display { font-size: clamp(32px, 4vw, 52px); }
.planes-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  max-width: 240px;
  text-align: right;
  line-height: 1.6;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.plan-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.plan-card:last-child { border-right: none; }
.plan-card:hover { background: var(--surface); }

.plan-card.featured { background: var(--surface); }
.plan-card.featured::after {
  content: 'Popular';
  position: absolute;
  top: 0; right: 24px;
  background: var(--red);
  color: var(--bg);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  transform: translateY(-1px);
}

.plan-tier {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.plan-currency { font-size: 14px; color: var(--text2); font-weight: 400; }
.plan-amount {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-period { font-size: 12px; color: var(--muted); margin-left: 2px; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.plan-features li::before { content: '—'; color: var(--border2); flex-shrink: 0; }
.plan-features li.on { color: var(--text2); }
.plan-features li.on::before { content: '✓'; color: var(--red); font-size: 11px; }

.plan-cta {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px;
  text-decoration: none;
  border: 1px solid var(--border2);
  color: var(--muted);
  transition: all 0.2s;
}
.plan-cta:hover, .plan-cta.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--bg);
}

@media (max-width: 860px) {
  #planes { padding: 60px 20px; }
  .planes-header { flex-direction: column; align-items: flex-start; }
  .planes-note { text-align: left; max-width: 100%; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { border-right: none; border-bottom: 1px solid var(--border); }
  .plan-card:last-child { border-bottom: none; }
}
