/* ════════════════════════════════
   PLANS — 미래 계획
   ════════════════════════════════ */

#plans {
  background: var(--cream);
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px;
}

.plans-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 3px 20px rgba(60,20,40,0.07);
  border: 1px solid rgba(244,160,176,0.14);
  position: relative;
  overflow: hidden;
}

/* 왼쪽 컬러 바 */
.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--rose), var(--gold));
  border-radius: 4px 0 0 4px;
}

/* ── 아이콘 ── */
.plan-icon-wrap {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon-pink   { background: #fde8ed; }
.icon-purple { background: #f0e8ff; }
.icon-blue   { background: #e8f0ff; }
.icon-green  { background: #e8fff0; }
.icon-gold   { background: #fff3e0; }

/* ── 텍스트 ── */
.plan-info { flex: 1; }

.plan-step {
  font-size: 10px;
  color: var(--rose-dk);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.plan-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.plan-year {
  display: inline-block;
  margin-top: 7px;
  background: var(--blush);
  color: var(--rose-dk);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 10px;
}
